(→Configuring templates) |
(→Files organization) |
||
| Line 89: | Line 89: | ||
includes=cpp/function | includes=cpp/function | ||
</code> | </code> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
=== Configuring generators === | === Configuring generators === | ||
| Under Construction |
|---|
| This page is under construction. This page is actively being developed and updated with new information, and may be incomplete. You can help by editing this page |
KDevelop Code Generation plugin uses Grantlee template engine to generate code (like classes, functions, code documentation etc.).
The goal of KDevelop's Grantlee implementation is to provide a very flexible template system. The architecture is based on 3 main concepts which results as resources for the plugin:
Contents |
The template define the body of the generated code.
Templates syntax is the same as the Grantlee templates syntax. All features provided by its engine are available.
The user interface is what the end-user uses to configure the template. You should use Qt UIs files created with Qt Designer to define your own context.
Code Generation plugin uses form fields to generate data. Typically, binary valued fields (checkboxs) will result as booleans, single valued fields (text fields, text areas, single selection lists, radio buttons) as strings and multi valued fields (multiple selection lists) as lists of strings.
For convenience, all variables defined in a context are included in a namespace. It enables the use of several contexts into a single template without variables names conflict.
Many global contexts are always available in any template. They give data which does not need to be configurable by the end-user.
Currently available global contexts are :
The generator contains the templates and contexts used to generate a coherent object (a class, a function, the documentation for an item in the code etc.).
The generator also define outputs. Each template is associated to one output where generated code will be put.
The Code Generation plugin files are located into the KDE user data directory of KDevelop.
Each resource has its own directory :
Each resource directory can contain directories to organize files in categories (typically, a directory by language).
Then the files can be placed in a category directory or in directly in a resource directory, if the template/context/generator does not concern a specific language.
For each template, 2 files should be created:
The file hierarchy may look like this:
The template configuration file is handled as a KConfig file :
[Template]
contexts=cpp/class
includes=cpp/function
The KDevelop4/Manual/Plugins:_Code_Generation page on Userbase.