![]() | In short |
| Prev | Next |
This is a short resume on how to work with KDevelop and QtDesigner.
In the KDevelop menu File->New, select a Widget (.ui) file and give it a name (kprojectdlg for that example), check add to Project. Click OK.
Qt Designer starts. Work on your form in Qt Designer then save your file and close designer. The designer file appears then in KDevelop under User Interface (kprojectdlg.ui).
Create a new class (KProject as name for example) (Project menu then New class...) that inherits from your dialog file (kprojectdlg) and is a QWidget-childclass.
Add your slots and others signals or member functions in the inherited class KProject.
| Prev | Home | Next |
| Implementing the slot | Up | Make the translations for a simple kde project |