Development/Tutorials/KDE3/Qt Designer and KDevelop 3.0 for Beginners: Difference between revisions

    From KDE TechBase
    m (→‎Creating the Application: - Signals and Slots, Generating the Source, Implementing the Slot)
    (Marked this version for translation)
     
    (26 intermediate revisions by 9 users not shown)
    Line 1: Line 1:
    <languages />
    <translate>
    <!--T:1-->
    {{improve}}
    {{improve}}
    {{KDE3}}


    ==Introduction==
    ==Introduction== <!--T:2-->
     
    <!--T:3-->
    To get us started doing something useful with [http://www.trolltech.com/products/qt/features/designer Qt Designer], we are going to build a simple program that will show you the power of Qt Designer and [http://www.kdevelop.org/ KDevelop]. I hope that this will help you to create your first "real" KDE application.
    To get us started doing something useful with [http://www.trolltech.com/products/qt/features/designer Qt Designer], we are going to build a simple program that will show you the power of Qt Designer and [http://www.kdevelop.org/ KDevelop]. I hope that this will help you to create your first "real" KDE application.


    [http://www.trolltech.com/products/qt/features/designer KDevelop] will help you to build a complete KDE application. The KDE project uses the autoconf and automake tools for KDE 3.x, and [http://www.kdevelop.org/ KDevelop] will provide you with all the necessary files (admin directory, Makefile.cvs, Makefile.am,...).
    <!--T:4-->
    [http://www.kdevelop.org/ KDevelop] will help you to build a complete KDE application. The KDE project uses the autoconf and automake tools for KDE 3.x, and [http://www.kdevelop.org/ KDevelop] will provide you with all the necessary files (admin directory, Makefile.cvs, Makefile.am,...).
     
    ==Requirements== <!--T:5-->
     
    ===How to Get Qt Designer=== <!--T:6-->


    ==Requirements==
    ====From your Distribution==== <!--T:7-->


    ===How to Get Qt Designer===
    <!--T:8-->
    ====From your Distribution====
    Qt Designer is part of the qt-3.2.x package and above. If you have an older Qt on your system, you should get at least this version. At the time of writing, Qt latest version is 3.3.2.
    Qt Designer is part of the qt-3.2.x package and above. If you have an older Qt on your system, you should get at least this version. At the time of writing, Qt latest version is 3.3.2.


    <!--T:9-->
    Please remember to check if you have all the qt-related packages installed. You need the qt headers in order to compile this tutorial application. These headers usually come in the ''devel'' package. You also need to be sure you have designer. In some distributions, it comes in a separate package.
    Please remember to check if you have all the qt-related packages installed. You need the qt headers in order to compile this tutorial application. These headers usually come in the ''devel'' package. You also need to be sure you have designer. In some distributions, it comes in a separate package.


    <!--T:10-->
    To check if you have everything, do a:
    To check if you have everything, do a:
    <code>locate qstring.h</code>
    <code>locate qstring.h</code>


    <!--T:11-->
    If you get something like ''/usr/lib/qt3/include/qstring.h'' then you can set your ''QTDIR'' variable to ''/usr/lib/qt3/''. In bash environment, this is done by typing:
    If you get something like ''/usr/lib/qt3/include/qstring.h'' then you can set your ''QTDIR'' variable to ''/usr/lib/qt3/''. In bash environment, this is done by typing:


    <!--T:12-->
    <code>export QTDIR= /usr/lib/qt3</code>
    <code>export QTDIR= /usr/lib/qt3</code>


    ====Tarball or Anonymous Subversion====
    ====Tarball or Anonymous Subversion==== <!--T:13-->
     
    <!--T:14-->
    You can download the tarball from the [http://www.trolltech.com/download/qt/x11.html Trolltech website], or get the ''qt-copy'' module from SVN. Please note that Qt for [http://www.kernel.org/ Linux] is [http://www.gnu.org/copyleft/gpl.html GPL].
    You can download the tarball from the [http://www.trolltech.com/download/qt/x11.html Trolltech website], or get the ''qt-copy'' module from SVN. Please note that Qt for [http://www.kernel.org/ Linux] is [http://www.gnu.org/copyleft/gpl.html GPL].


    For an explanation for how to use anonymous SVN, get the ''qt-copy'' and ''kde'' modules and compile them, please see a great documentation at [[Development/Tutorials/Using Subversion with KDE|Using Subversion with KDE]].
    <!--T:15-->
     
    For an explanation for how to use anonymous SVN, get the ''qt-copy'' and ''kde'' modules and compile them, please see a great documentation at [[Special:myLanguage/Getting_Started/Sources/Using Subversion with KDE|Using Subversion with KDE]].
    You must then set the ''QTDIR'' environment variable. This should point to the directory into which you installed Qt. In bash, for example, you would type:
     
    <code>export QTDIR= /usr/local/qt</code>


    <!--T:16-->
    You must then set the ''QTDIR'' environment variable. This should point to the directory into which you installed Qt. In bash, for example, you would type <code>export QTDIR= /usr/local/qt</code>
    provided that ''/usr/local/qt'' is the directory into which you installed Qt. Please read the INSTALL file for more details.
    provided that ''/usr/local/qt'' is the directory into which you installed Qt. Please read the INSTALL file for more details.


    You then compile by issuing the following commands, here is the recommended compile line:
    <!--T:17-->
    You then compile by issuing the following commands, here is the recommended compile line:</translate>


    <code>./configure -system-zlib -qt-gif -system-libpng -system-libjpeg \
    <syntaxhighlight lang="text">./configure -system-zlib -qt-gif -system-libpng -system-libjpeg \
    -plugin-imgfmt-mng -thread -no-exceptions -debug -fast
    -plugin-imgfmt-mng -thread -no-exceptions -debug -fast
    make</code>
    make</syntaxhighlight>


    <translate>
    <!--T:18-->
    The command ''make install'' is not needed.
    The command ''make install'' is not needed.


    <!--T:19-->
    Qt Designer is located in the ''bin'' directory of your Qt installation directory. You can run it by typing:
    Qt Designer is located in the ''bin'' directory of your Qt installation directory. You can run it by typing:
    <code>/usr/local/qt/bin/designer</code>
    <code>/usr/local/qt/bin/designer</code>
    in a console.
    in a console.


    <!--T:20-->
    To compile Qt from source, please see [http://www.trolltech.com/ Trolltech]'s [http://www.trolltech.com/developer/downloads/qt/x11 Qt/X11 Open Source Edition] page.
    To compile Qt from source, please see [http://www.trolltech.com/ Trolltech]'s [http://www.trolltech.com/developer/downloads/qt/x11 Qt/X11 Open Source Edition] page.


    ===How to get KDevelop 3===
    ===How to get KDevelop 3=== <!--T:21-->
    ====From your Distribution====
     
    ====From your Distribution==== <!--T:22-->
     
    <!--T:23-->
    KDevelop 3 should be part of your distribution. Pre 3 versions of KDevelop were nicknamed Gideon, but they are obsolete now.
    KDevelop 3 should be part of your distribution. Pre 3 versions of KDevelop were nicknamed Gideon, but they are obsolete now.


    ====From Tarball====
    ====From Tarball==== <!--T:24-->
     
    <!--T:25-->
    KDevelop can be downloaded from the [http://www.kdevelop.org KDevelop website], under the '''Quick download''' heading.
    KDevelop can be downloaded from the [http://www.kdevelop.org KDevelop website], under the '''Quick download''' heading.


    <!--T:26-->
    To compile KDevelop 3, you need qt-3.1.0 or higher and kdelibs-3.1.0 or higher. The environment variables ''QTDIR'' and ''KDEDIR'' should point to those directories.
    To compile KDevelop 3, you need qt-3.1.0 or higher and kdelibs-3.1.0 or higher. The environment variables ''QTDIR'' and ''KDEDIR'' should point to those directories.


    Don't forget to set up the KDE and Qt paths. The most common errors while using KDevelop come from the environment variables not set up properly. Check in a console by issuing the command '''set''' to see all your environment variables. You should set your ''PATH'' variable as follow as well as your ''LD_LIBRARY_PATH'':
    <!--T:27-->
     
    Don't forget to set up the KDE and Qt paths. The most common errors while using KDevelop come from the environment variables not set up properly. Check in a console by issuing the command <code>set</code> to see all your environment variables. You should set your ''PATH'' variable as follow as well as your ''LD_LIBRARY_PATH'':
    <code>export PATH=$QTDIR/bin:$KDEDIR/bin:$PATH
    {{Input|1=export PATH=$QTDIR/bin:$KDEDIR/bin:$PATH
    export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH</code>
    export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH}}


    <!--T:28-->
    If you have any problem getting KDevelop running, please refer to the [http://www.kdevelop.org/phorum5/ KDevelop Forum] to find the answer to your problem.
    If you have any problem getting KDevelop running, please refer to the [http://www.kdevelop.org/phorum5/ KDevelop Forum] to find the answer to your problem.


    <!--T:29-->
    If you never used KDevelop before, try to create a new project and to compile it to get used to the interface and the icons.  
    If you never used KDevelop before, try to create a new project and to compile it to get used to the interface and the icons.  


    ====SVN HEAD====
    ====KDevelop 3.4==== <!--T:30-->
    Please refer to [http://www.kdevelop.org/index.html?filename=HEAD/download.html KDevelop - HEAD Download] and [http://www.kdevelop.org/index.html?filename=HEAD/branches_compiling.html HEAD Branches SVN Compiling].


    ===Lexicon===
    <!--T:31-->
    Please refer to [http://www.kdevelop.org/index.html?filename=3.4/download.html Downloading KDevelop 3.4] and [http://www.kdevelop.org/index.html?filename=3.4/branches_compiling.html Compiling KDevelop 3.4].
     
    ===Lexicon=== <!--T:32-->
     
    <!--T:33-->
    * '''Widget''': a widget is an element of an graphical interface such as a container window, a button or a field for entering text.
    * '''Widget''': a widget is an element of an graphical interface such as a container window, a button or a field for entering text.
    <!--T:34-->
    * '''Layout management''': this term describes the way in which widgets are arranged in a window. In its simplest form, an element may be placed at a specific position and given a specific height and width. But when the user resizes the window, the widgets should stay in their position and change their size accordingly. Linux allows to do that by using layouts to place the widgets in.
    * '''Layout management''': this term describes the way in which widgets are arranged in a window. In its simplest form, an element may be placed at a specific position and given a specific height and width. But when the user resizes the window, the widgets should stay in their position and change their size accordingly. Linux allows to do that by using layouts to place the widgets in.
    <!--T:35-->
    * '''Signal and Slots''': Signals and slots are used for communication between objects. The signal/slot mechanism is a central feature of Qt. Signals are emitted by objects when they change their state in a way that may be interesting to the outside world. Slots can be used for receiving signals, but they are normal member functions. You can connect as many signals as you want to a single slot, and a signal can be connected to as many slots as you desire. Please see the [http://doc.trolltech.com/3.3/signalsandslots.html TrollTech documentation on signals and slots] for more details. In the excellent online documentation that comes with Qt, you'll find the signals and the public slots that go with each class. You can then implement your own slots.  
    * '''Signal and Slots''': Signals and slots are used for communication between objects. The signal/slot mechanism is a central feature of Qt. Signals are emitted by objects when they change their state in a way that may be interesting to the outside world. Slots can be used for receiving signals, but they are normal member functions. You can connect as many signals as you want to a single slot, and a signal can be connected to as many slots as you desire. Please see the [http://doc.trolltech.com/3.3/signalsandslots.html TrollTech documentation on signals and slots] for more details. In the excellent online documentation that comes with Qt, you'll find the signals and the public slots that go with each class. You can then implement your own slots.  


    ==Creating the Application==
    ==Creating the Application== <!--T:36-->
    ===Starting the project===
     
    ====Creating the framework with KDevelop====
    ===Starting the project=== <!--T:37-->
     
    ====Creating the framework with KDevelop==== <!--T:38-->


    The framework in which our program will sit in (i.e. the main window) can be done easily and quickly by using KDevelop. Start KDevelop and select ''New Project'' in the Project menu. The Application Wizard appears then. Choose a ''C++ -> KDE -> Simple KDE Application''. Fill in the blank lines with the project name '''SigCreate''', your name as author, and your email.  Refer to [[:Image:KDevelop3-CreateNewProject.png|this screen shot]] as a reference.
    <!--T:39-->
    The framework in which our program will sit in (i.e. the main window) can be done easily and quickly by using KDevelop. Start KDevelop and select <menuchoice>New Project</menuchoice> in the Project menu. The Application Wizard appears then. Choose a <menuchoice>C++ -> KDE -> Simple KDE Application</menuchoice>. Fill in the blank lines with the project name ''SigCreate'', your name as author, and your email.  Refer to the following screenshot as a reference:


    Click on ''Next''. Have a look to the CVS option and the header templates. Then click on ''Finish'' on the last screen. KDevelop creates all the files that you need to compile your project. You can use the file selector to view the code of the 3 files which are main.cpp, sigcreate.cpp and sigcreate.h, as shown [[:Image:KDevelop3-FileSelector.png|here]].
    <!--T:40-->
    [[Image:KDevelop3-CreateNewProject.png|center|thumb|350px]]


    Once the ''Application Wizard'' has created your application, compile it to ensure that everything is fine. To do that, select '''Build -> Run automake & friends''' then '''Build -> Run configure'''. The ''Messages output window'' should say
    <!--T:41-->
    Click on ''Next''. Have a look to the CVS option and the header templates. Then click on ''Finish'' on the last screen. KDevelop creates all the files that you need to compile your project. You can use the file selector to view the code of the 3 files, which are main.cpp, sigcreate.cpp and sigcreate.h, as shown here:


    <code>" Good - your configure finished. Start make now
    <!--T:42-->
    [[Image:KDevelop3-FileSelector.png|center|thumb|350px]].
     
    <!--T:43-->
    Once the ''Application Wizard'' has created your application, compile it to ensure that everything is fine. To do that, select <menuchoice>Build -> Run automake & friends</menuchoice> then <menuchoice>Build -> Run configure</menuchoice>. The ''Messages output window'' should say
     
    <!--T:44-->
    {{Output|1= Good - your configure finished. Start make now
    *
    *
    * *** Success ***</code>
    * *** Success ***
    }}
     
    <!--T:45-->
    so you can run <menuchoice>make with Build -> Build Project</menuchoice> (or using the F8 shortcut). Then <menuchoice>Build -> Install</menuchoice>. Then <menuchoice>Build -> Execute program</menuchoice> (or F9). The result is shown here: [[Image:KDevelop-SigCreate.png|center|thumb|350px]].
     
    <!--T:46-->
    {{Note|1=If KDevelop does not recognize your ''QTDIR'' and ''KDEDIR'' variables, you can set them in <menuchoice>Configure Optiona... -> Project -> Project Options...</menuchoice>, as shown:


    so you can run ''make'' with '''Build -> Build Project''' (or using the F8 shortcut). Then '''Build -> Install'''. Then '''Build -> Execute program''' (or F9). The result is shown [[:Image:KDevelop-SigCreate.png|here]].
    <!--T:47-->
    [[Image:KDevelop3-ConfigureOptions.png|center|thumb|350px]].


    *'''NOTE''' - If KDevelop does not recognize your ''QTDIR'' and ''KDEDIR'' variables, you can set them in '''Project -> Project Options...''' in ''Configure Options'', as [[:Image:KDevelop3-ConfigureOptions.png|shown]].
    ====Using Qt Designer==== <!--T:48-->


    ====Using Qt Designer====
    <!--T:49-->
    Qt Designer is a tool for designing and implementing user interfaces. It helps you arranging your widgets on a form and adding a proper layout so your interface can be resized properly. I recommend that you read the [http://doc.trolltech.com/3.3/designer-manual.html Qt Designer manual] to know everything about Qt Designer. Qt Designer includes a code editor but we'll use KDevelop to edit and modify all code.
    Qt Designer is a tool for designing and implementing user interfaces. It helps you arranging your widgets on a form and adding a proper layout so your interface can be resized properly. I recommend that you read the [http://doc.trolltech.com/3.3/designer-manual.html Qt Designer manual] to know everything about Qt Designer. Qt Designer includes a code editor but we'll use KDevelop to edit and modify all code.


    <!--T:50-->
    We will now create the interface of our application using Qt Designer. A form from Qt Designer is saved with a .ui extension because it is then processed by the uic program to generate a .h and .cpp files. KDevelop takes care of that, the only thing we need to do is to create the form.
    We will now create the interface of our application using Qt Designer. A form from Qt Designer is saved with a .ui extension because it is then processed by the uic program to generate a .h and .cpp files. KDevelop takes care of that, the only thing we need to do is to create the form.


    * '''Note''' - Each time you add or remove a file (now we will add a .ui file) in your KDevelop project, the Makefile.am will be changed. KDevelop does that itself but you will need to ''Run automake & friends'' after such changes.
    <!--T:51-->
    {{Note|1= Each time you add or remove a file (now we will add a .ui file) in your KDevelop project, the Makefile.am will be changed. KDevelop does that itself but you will need to ''Run automake & friends'' after such changes.}}
     
    <!--T:52-->
    In KDevelop, click on <menuchoice>File -> New</menuchoice> and fill the dialog window that appears. First write the file name: ''sigcreatedlg'' and select what new file you want in the combobox: here we want a <menuchoice>Widget (.ui)</menuchoice>. Please be sure that <menuchoice>Add to project</menuchoice> is checked, as this ensures that the Makefile.am is updated. Refer to this screen shot:
     
    <!--T:53-->
    [[Image:KDevelop3-NewFile-Widget.png|center|thumb|350px]]
     
    <!--T:54-->
    Click the <menuchoice>OK</menuchoice> button. The Automake manager dialog then pops up.
     
    <!--T:55-->
    [[Image:KDevelop3-AutomakeManagerDialog.png|center|thumb|350px]]
     
    <!--T:56-->
    Click the <menuchoice>OK</menuchoice> button for this dialog as well.
     
    <!--T:57-->
    If the new file ''sigcreatedlg.ui'' is not open in Qt Designer, open the <menuchoice>Automake Manager</menuchoice>, right-click on the file and select <menuchoice>Open With -> Qt Designer</menuchoice>. Qt Designer will open.
     
    <!--T:58-->
    {{Tip|1=About the names: it is a good idea to finish a dialog name or a form name by ''dlg'' to ensure a nice visibility for people who want to have a look at the code. ''sigcreatedlg'' says that it is a dialog, i.e an interface class, only.}}
     
    <!--T:59-->
    The Qt Designer interface]] is essentially split into three areas.
     
    <!--T:60-->
    [[Image:QtDesigner3-Interface.png|center|thumb|350px]]
     
    <!--T:61-->
    On the left is the ''toolbox'', where you can select your widgets. On the right, several dialogs can be selected. I'll keep only the ''Property Editor'' dialog (I close the 2 others). Your widgets can be fine tuned to behave how you want them to. You can choose the size of the widget, its background color (palette), and so on. Between those 2 windows is the ''Form'', your program window, within which you will design your user interface.


    In KDevelop, click on '''File -> New''' and fill the dialog window that appears. First write the file name: ''sigcreatedlg'' and select what new file you want in the combobox: here we want a ''Widget (.ui)''. Please be sure that '''Add to project''' is checked, this ensures that the Makefile.am is updated. Refer to [[:Image:KDevelop3-NewFile-Widget.png|this screen shot]].
    <!--T:62-->
    {{Note|1=After adding the ''sigcreatedlg.ui'' file, you will have to run <menuchoice>Automake & friends</menuchoice> and <menuchoice>Run configure</menuchoice> before building the program. This ensures that the updated ''Makefile.am'' is now read. }}


    Click the ''OK'' button. The [[:Image:KDevelop3-AutomakeManagerDialog.png|Automake manager dialog]] then pops up.  Click the ''OK'' button for this dialog as well.
    ===Designing the Program=== <!--T:63-->


    If the new file ''sigcreatedlg.ui'' is not open in Qt Designer, open the ''Automake Manager'', right-click on the file and select ''Open With'', then ''Qt Designer''. Qt Designer will open.
    <!--T:64-->
    Each time you want to use Qt Designer, you should have a precise visual idea of the design of your interface. You can see in the following picture what the program will be like.  


    * '''Note''' - About the names: it is a good idea to finish a dialog name or a form name by ''dlg'' to ensure a nice visibility for people who want to have a look at the code. ''sigcreatedlg'' says that it is a dialog, i.e an interface class, only.
    <!--T:65-->
    [[Image:KDevelop3-SigCreateDialog.png|center|thumb|350px]]


    The [[:Image:QtDesigner3-Interface.png|Qt Designer interface]] is essentially split into three areas. On the left is the '''toolbox''', where you can select your widgets. On the right, several dialogs can be selected. I'll keep only the '''Property Editor''' dialog (I close the 2 others). Your widgets can be fine tuned to behave how you want them to. You can choose the size of the widget, its background color (palette), and so on. Between those 2 windows is the '''Form''', your program window, within which you will design your user interface.
    <!--T:66-->
    It is a window with a number of different items (or widgets) on it, designed so that the user puts the right information in the right boxes. You should always design your program from the user's point of view, as it must be easy to use.


    * '''Note''' - After adding the ''sigcreatedlg.ui'' file, you will have to run ''Automake & friends'' and ''Run configure'' before building the program. This ensures that the updated ''Makefile.am'' is now read.  
    <!--T:67-->
    This application creates an email signature, which is then displayed on the screen. The user should enter her/his name, email address, and then select one of three comments. When you click the <menuchoice>Create!</menuchoice> button, the generated signature is shown in a ''MultiLineEdit''. When you click <menuchoice>Cancel</menuchoice>, the program quits.


    ===Designing the Program===
    <!--T:68-->
    {{Note|1=Note that this project is meant as a tutorial, so this is somewhat far away from practical use.}}


    Each time you want to use Qt Designer, you should have a precise visual idea of the design of your interface. You can see in [[:Image:KDevelop3-SigCreateDialog.png|this picture]] what the program will be like. It is a window with a number of different items (or widgets) on it, designed so that the user puts the right information in the right boxes. You should always design your program from the user's point of view, as it must be easy to use.
    <!--T:69-->
    Go back to the Qt Designer window with the new dialog open. You will see that the property editor has been filled with details about the form you have created. The first line in the ''Property Editor'' shows the name of the form which is Form1.  


    This application creates an email signature, which is then displayed on the screen. The user should enter her/his name, email address, and then select one of three comments. When you click the '''Create!''' button, the generated signature is shown in a ''MultiLineEdit''. When you click '''Cancel''', the program quits.
    <!--T:70-->
    [[Image:QtDesigner3-PropertyEditor.png|center|thumb|350px]]


    * '''Note''' - Note that this project is meant as a tutorial, so this is somewhat far away from practical use.
    <!--T:71-->
    Click on the field with this name to change it and type SigCreateDlg. This will form the class name of the dialog so you should name it something useful.


    Go back to the Qt Designer window with the new dialog open. You will see that the property editor has been filled with details about the form you have created. The first line in the '''Property Editor''' [[:Image:QtDesigner3-PropertyEditor.png|shows]] the name of the form which is Form1. Click on the field with this name to change it and type SigCreateDlg. This will form the class name of the dialog so you should name it something useful.
    <!--T:72-->
    To change properties, select the property you wish to change, then alter its setting on the right. Change the ''Caption'' property to "SigCreateDlg v.01".  We will now begin to add widgets on our dialog.


    To change properties, select the property you wish to change, then alter its setting on the right. Change the '''Caption''' property to "SigCreateDlg v.01".  We will now begin to add widgets on our dialog.
    ===Adding Widgets=== <!--T:73-->


    ===Adding Widgets===
    <!--T:74-->
    To start, we will insert the text at the top of the program window, which can be seen here:
    [[Image:KDevelop3-NewFile-Widget.png|center|thumb|350px]]


    To start, we will insert the text at the top of the program window, which can be seen [[:Image:KDevelop3-NewFile-Widget.png|here]]. This text tells the user how to operate the program. This type of widget is called a ''Label'' and you can put one on your program like this:
    <!--T:75-->
    This text tells the user how to operate the program. This type of widget is called a ''Label'' and you can put one on your program like this:


    # Select the dialog in ToolBox called '''Common Widgets->TextLabel''', or from the menubar '''Tools->Display->TextLabel'''
    <!--T:76-->
    # The cursor will become a crosshair over the form. Draw a box for the label, just as you would in a paint program, and you will see that the label is created with some dummy text in it.
    # Select the dialog in ToolBox called <menuchoice>Common Widgets -> TextLabel</menuchoice>, or from the menubar <menuchoice>Tools -> Display -> TextLabel</menuchoice></translate>
    # To change this text, double click on the label and type in the text, instead of ''TextLabel1''. The text you should type is ''This program will create an email signature for you. Just fill in the boxes and hit the Create! button.'' Select '''Align Center'' to have the text positioned nicely.  Refer to this [[:Image:QtDesigner3-TextEditDialog.png|screenshot]].
    <translate>
    # Finally, resize the widget using the handles so it is the correct size and at the top of the box. Try to center the label by moving it with the mouse. This is just a temporary measure. Later on we will look at a more elegant layout management technique. You may refer to [[:Image:QtDesigner3-ResizingBox.png|this screenshot]].
    <!--T:77-->
    # The cursor will become a crosshair over the form. Draw a box for the label, just as you would in a paint program, and you will see that the label is created with some dummy text in it.</translate>
    <translate>
    <!--T:78-->
    # To change this text, double click on the label and type in the text, instead of ''TextLabel1''. The text you should type is {{Input|1=This program will create an email signature for you. Just fill in the boxes and hit the Create! button.}} Select <menuchoice>Align Center</menuchoice> to have the text positioned nicely.  Refer to this screenshot: [[Image:QtDesigner3-TextEditDialog.png|center|thumb|350px]].
    # Finally, resize the widget using the handles so it is the correct size and at the top of the box. Try to center the label by moving it with the mouse. This is just a temporary measure. Later on we will look at a more elegant layout management technique. You may refer to this screenshot:
    [[Image:QtDesigner3-ResizingBox.png|center|thumb|350px]].


    <!--T:79-->
    You follow pretty much the same procedure for embedding any type of widget that is supported by Qt Designer; select it, drag it, and finally, change its properties and size.
    You follow pretty much the same procedure for embedding any type of widget that is supported by Qt Designer; select it, drag it, and finally, change its properties and size.


    An interesting concept in Qt Designer is that widgets can act as containers for other widgets. This will be demonstrated in our next task, which is to create the input fields inside the frame. You can see that in Picture 8 we have a bunch of labels and text boxes inside a frame. This frame is called a Group Box and acts as a container for the labels and text boxes inside it. Let's first create the frame by selecting the GroupBox in the '''Toolbox dialog->Containers''' or '''Tools->Containers->GroupBox''' from the menubar. You can drag the mouse to create the box just below the Label you put before. In the ''Property Editor'' you can change the title property to alter the text in the frame. Put ''Details'' in the title text field. You may notice a + symbol in this entry in the ''Property Editor''. This indicates that the property has subproperties that can also be changed.
    <!--T:80-->
    An interesting concept in Qt Designer is that widgets can act as containers for other widgets. This will be demonstrated in our next task, which is to create the input fields inside the frame. You can see that in Picture 8 we have a bunch of labels and text boxes inside a frame. This frame is called a Group Box and acts as a container for the labels and text boxes inside it. Let's first create the frame by selecting the GroupBox in the <menuchoice>Toolbox dialog -> Containers</menuchoice> or <menuchoice>Tools -> Containers -> GroupBox</menuchoice> from the menubar. You can drag the mouse to create the box just below the Label you created before. In the ''Property Editor'' you can change the title property to alter the text in the frame. Put <code>Details</code> in the title text field. You may notice a + symbol in this entry in the ''Property Editor''. This indicates that the property has subproperties that can also be changed.


    Once you have created the frame (i.e the GroupBox), create three more labels as before but when you draw them, draw them inside the GroupBox frame. You can then see in the Object Explorer box ('''Windows menu -> Views -> Object Explorer''') to the right that the labels have become children of the GroupBox frame. See [[:Image:QtDesigner3-EditingTheDialog.png|this image]].
    <!--T:81-->
    Once you have created the frame (i.e the GroupBox), create three more labels as before but when you draw them, draw them inside the GroupBox frame. You can then see in the Object Explorer box (<menuchoice>Windows menu -> Views -> Object Explorer</menuchoice>) to the right that the labels have become children of the GroupBox frame. See this image:
    [[Image:QtDesigner3-EditingTheDialog.png|center|thumb|350px]].


    <!--T:82-->
    Change the text of labels by double-clicking on it.
    Change the text of labels by double-clicking on it.


    Once you have done this you can then create the text boxes. They will allow the user to type in text like his(her) name and email address. We use the simplest type of text boxes: a widget called QLineEdit which allows the user to enter one line of text only. You have to create two QLineEdit widgets for the name and the email address. You choose the menu Tools then the entry Input then LineEdit and you draw it beside the 'Your Name' Label. Do the same below for the address.
    <!--T:83-->
    Once you have done this you can then create the text boxes. They will allow the user to type in text like his(her) name and email address. We use the simplest type of text boxes: a widget called QLineEdit which allows the user to enter one line of text only. You have to create two QLineEdit widgets for the name and the email address. You choose the menu <menuchoice>Tools -> Input -> LineEdit</menuchoice> and you draw it beside the 'Your Name' Label. Do the same below for the address.


    The witty comment will be selected by the user. We use a ComboBox which will present the user with three comments. Click on the ComboBox icon or select it via the Tools-> Input-> ComboBox menu. Draw it beside the Witty Comment label. Then double-click on it. You will be presented with a box into which you can add the contents of the combo box. Click on the 'New Item' button and type in your comment in the text box at the right. Then click again on 'New Item' for the second and third comments. Click on OK when you have finished.
    <!--T:84-->
    The witty comment will be selected by the user. We use a ComboBox which will present the user with three comments. Click on the ComboBox icon or select it via the <menuchoice>Tools -> Input-> ComboBox</menuchoice> menu. Draw it beside the Witty Comment label. Then double-click on it. You will be presented with a box into which you can add the contents of the combo box. Click on the <menuchoice>New Item</menuchoice> button and type in your comment in the text box at the right. Then click again on <menuchoice>New Item</menuchoice> for the second and third comments. Click on <menuchoice>OK</menuchoice> when you have finished.


    <!--T:85-->
    Adjust the size of the different widgets so they are nicely placed.
    Adjust the size of the different widgets so they are nicely placed.


    Up to now, we have not named any of the widgets that are being placed in our program. It is useful to set an internal name for widgets so we can call them after in the program. Labels don't perform any action so they don't need to be named but other widgets do. It is the case now for our text boxes. We'll need to manipulate the data from the three input widgets (i.e. read the text) so we should give them a name. Names should be easily recognized later and they should make sense. The names are assigned via the name property on the top of the Property Editor. We name the top LineEdit nameBox and the second one mailBox. We name the ComboBox commBox. This will allow us to access the comments. So click on each LineEdit and then besides Name in the Property Editor write nameBox and mailBox. Then click on the ComboBox and name it commBox.
    <!--T:86-->
    [[Image:QtDesigner3-BeforeLayoutManagement.png|thumb|350px]] Up to now, we have not named any of the widgets that are being placed in our program. It is useful to set an internal name for widgets so we can call them after in the program. Labels don't perform any action so they don't need to be named but other widgets do. It is the case now for our text boxes. We'll need to manipulate the data from the three input widgets (i.e. read the text) so we should give them a name. Names should be easily recognized later and they should make sense. The names are assigned via the name property on the top of the Property Editor. We name the top LineEdit ''nameBox'' and the second one ''mailBox''. We name the ComboBox ''commBox''. This will allow us to access the comments. So click on each <menuchoice>LineEdit</menuchoice> and then besides <menuchoice>Name</menuchoice> in the Property Editor write <code>nameBox</code> and <code>mailBox</code>. Then click on the <menuchoice>ComboBox</menuchoice> and name it <code>commBox</code>.


    We finish the graphical design by adding a label with 'Generated Signature' as text. Below it, we put a TextEdit ('''Tools->Input->TextEdit'''') where the generated signature will be displayed. We name it 'sigBox'. And then we add two PushButtons at the bottom ('Create!' and 'Cancel'). They don't need names but you can give them some if you want.
    <!--T:87-->
    We finish the graphical design by adding a label with ''Generated Signature'' as text. Below it, we put a TextEdit (<menuchoice>Tools -> Input -> TextEdit</menuchoice>) where the generated signature will be displayed. We name it <code>sigBox</code>. And then we add two PushButtons at the bottom ('Create!' and 'Cancel'). They don't need names but you can give them some if you want.


    Save your form. You can now have a quick preview by selecting the menu '''Preview-> Preview Form'''[[:Image:QtDesigner3-BeforeLayoutManagement.png|This]] is the form ''before'' layout management.
    <!--T:88-->
    Save your form. You can now have a quick preview by selecting the menu <menuchoice>Preview -> Preview Form</menuchoice>.  This is the form ''before'' layout management.


    ===Getting Spaced Out===
    ===Getting Spaced Out=== <!--T:89-->
    This section describes the layout management. If you resize the preview window you will then notice that the widgets do not adjust appropriately. They are not resized. To improve things, we need to use a feature in Qt called spacers. Spacers are like virtual springs that push the widgets on each side apart.
    * '''Note''' - Having a good layout is essential for your application, as when the strings are translated, they might be longer than the English ones and they need to fit on your widgets. The geometry of the widgets has to be nice if the user can resize your window application. Layouts are done by trial and error so use '''Preview->Preview Form''' to see the result of your layout management and to achieve the best layout.


    <!--T:90-->
    This section describes the layout management. If you resize the preview window you will then notice that the widgets do not adjust appropriately. They are not resized. To improve things, we need to use a feature in Qt called ''spacers''. Spacers are like virtual springs that push the widgets on each side apart.
    {{Note|1= Having a good layout is essential for your application, as when the strings are translated, they might be longer than the English ones and they need to fit on your widgets. The geometry of the widgets has to be nice if the user can resize your window application. Layouts are done by trial and error so use <menuchoice>Preview -> Preview Form</menuchoice> to see the result of your layout management and to achieve the best layout.
    <!--T:91-->
    The use of spacers and layout management is a skill that is developed through trial and error. The main thing to remember when dealing with spacers is that you work horizontally first and then vertically.
    The use of spacers and layout management is a skill that is developed through trial and error. The main thing to remember when dealing with spacers is that you work horizontally first and then vertically.


    We will first use spacers to center the text in the top box. Resize your label so that it only get the size of the text. Then we add two spacers, one at each side. Choose the 'spring' icon or menu '''Layout-> Add Spacer'''. You adjust each of the spacers horizontally. Click the space to the left of the text and the blue spacer will appear . Repeat the same procedure for the right. Then add a spacer on the right of the 'Generated Signature' label, and a last one on the left of the the 'Create!' pushbutton. Please use [[:Image:QtDesigner3-AddingTheSpacers.png|this image]] as a reference.
    <!--T:92-->
    [[Image:QtDesigner3-AddingTheSpacers.png|left|thumb|350px]]
    We will first use spacers to center the text in the top box. Resize your label so that it is only the size of the text. Then we add two spacers, one at each side. Choose the <menuchoice>spring</menuchoice> icon or menu <menuchoice>Layout -> Add Spacer</menuchoice>. You adjust each of the spacers horizontally. Click the space to the left of the text and the blue spacer will appear . Repeat the same procedure for the right. Then add a spacer on the right of the "Generated Signature" label, and a last one on the left of the the "Create!" pushbutton. Please use this image as a reference.
     
    <!--T:93-->
    Now that we have spacers to fill blank space, we need a proper layout management. This will allow the widgets to be nicely resized whenever the main window is resized. It is really compulsory to have good layout management. Again, try to resize several times to see if everything is in place. We can use Vertical or horizontal layout or grid management. The top row of widget is horizontal (spacer + label + spacer) so we need Horizontal management. We need to select the three widgets alltogether: click on the first spring, then click on the label while holding down <keycap>Shift</keycap>, then on the second spring while holding down Shift. Then click on the <menuchoice>Horizontal Layout icon</menuchoice> or menu <menuchoice>Layout -> Lay Out Horizontally</menuchoice>. You will then see a resizable red line around the three objects to indicate that their layout is being managed. Resize the red box if it needs it.
     
    <!--T:94-->
    We can now repeat this procedure for the three labels inside the GroupBox, this time using vertical layout management. The same vertical management is used for the two LineEdit and the ComboBox. It is better to use vertical management to keep the objects aligned. If we use horizontal management for each label + text box then they will not stay aligned and equally sized. Horizontal management is needed for the label with the spacer and another one for the two pushbuttons and the spacer.
     
    <!--T:95-->
    To finish the layout, we need to let the form look after the laid-out boxes. We put everything in a grid. This is done by right clicking the form and selecting <menuchoice>Lay Out in a Grid</menuchoice> from the menu. The final design with layout lines should resemble something similar to this image:
    [[Image:QtDesigner3-CompleteLayoutManagement.png|center|thumb|350px]]
     
    ===Signals and Slots=== <!--T:96-->
     
    <!--T:97-->
    [http://doc.trolltech.com/3.0/signalsandslots.html Signals and Slots] are used for communication between Qt objects. The signal/slot mechanism is a central feature of Qt and probably the part that differs most from other toolkits which often use callbacks. In Qt, a signal is emitted by a widget when a particular event occurs, very often triggered by the user like for example pressing a button or writing something in a LineEdit. A slot is simply a function that is called in reponse to a particular signal.
     
    <!--T:98-->
    Now the widgets are implemented and the layout is arranged the final thing we need to do in the design stage of the form is to create the signal/slot connections. To do this manually requires a ''connect()'' function but Qt Designer provides a simple yet effective solution. To create the signal/slot connections we need to use the connecting tool. To do this either select the icon (it looks like a red arrow going into a green square) or select <menuchoice>Tools -> Connect Signals/Slots</menuchoice> from the menu (or use the <keycap>F3</keycap> shortcut key). To create a connection, click on the form on the widget that is going to be dealing with the slot, drag the line off the form and release the mouse button.
     
    <!--T:99-->
    [[Image:QtDesigner3-CreateSlot.png|right|thumb|350px]].
    Let's deal first with the Create! button. Click first on the <menuchoice>Connect Signal/Slot</menuchoice> icon or select it from the <menuchoice>Tools</menuchoice> menu or use the <keycap>F3</keycap> key. Then click on the Create! button with the crosshair and drag the line off the form completely. When you have released the mouse button you will see the connections tool shown in the image.
     
    <!--T:100-->
    What we want to do is to create a slot that will create our signature when the user clicks on the Create! button. The signal will be clicked() (you may choose among five signals for a QPushButton) and we need to create the slot then make the connection.
     
    <!--T:101-->
    [[Image:QtDesigner3-CreateSlot.png|right|thumb|350px]] To create the slot we need to click on the <menuchoice>Edit Slots</menuchoice> button. The slot creation box then appears. Now click on the <menuchoice>New Function</menuchoice> button and a slot will appear in the box. Instead of ''new_slot()'' rename it to <code>slotCreateSig()</code> and leave the access specifier as ''public''. When you click on <menuchoice>OK</menuchoice> you will be returned to the connections box and you will see your new slot in the Slots section of the box.
     
    <!--T:102-->
    To make a connection you simply select the appropriate signal (which is <menuchoice>clicked()</menuchoice> in our case) and then select the slot (which is our new slot <menuchoice>slotCreateSig()</menuchoice>). When you have selected both signal and slot you will see the connection made at the bottom of the screen. After you are finished click <menuchoice>OK</menuchoice>.
     
    <!--T:103-->
    Repeat the procedure for the Cancel button by using the clicked() signal and the close() slot. You are now done with the signals and slots.
    [[Image:QtDesigner3-ViewandEditConnections.png|center|thumb|350px
    ]]
    {{Warning|Don't forget to save your form!}}
     
    ===Generating the Source=== <!--T:104-->
     
    <!--T:105-->
    In this tutorial, we use KDevelop subclassing tool in ''Automake Manager''. If you have KDevelop version which has not that capability, then please go to Chapter 7 where I explain this step without the subclass tool.
     
    <!--T:106-->
    Here we start with the KDE simple project named ''SigCreate'' and the sigcreatedlg.ui that we have added in our project. In the <menuchoice>Automake Manager</menuchoice>, in the section <menuchoice>sigcreate (Program in bin)</menuchoice> you must have three files: sigcreatedlg.ui, sigcreate.cpp and main.cpp. The project must compile and give the main window as in picture 3 (creating.html).
     
    <!--T:107-->
    As the sigcreate class is no use for us, we will remove it and use it for subclassing the sigcreatedlg.ui file. In the <menuchoice>Automake Manager</menuchoice>, right click on sigcreate.cpp and select <menuchoice>Remove</menuchoice> and a dialog pops up. Please check <menuchoice>Also Remove it from disk</menuchoice>. Then do the same with sigcreate.h. This is the way to remove obsolete files from your project and the Makefile.am will be updated. Remember to run <menuchoice>Automake & friends</menuchoice> and configure before compiling your project again. We will not do it right now because we will make other changes. We will now use the class name SigCreate for the subclass.
     
    <!--T:108-->
    In the <menuchoice>Automake Manager -> sigcreate (program in bin)</menuchoice>, right click on sigcreatedlg.ui and choose <menuchoice>Subclass Widget...</menuchoice> from the context menu that appears. Then fill in the subclass name which is <code>SigCreate</code>. Check the box: <menuchoice>Reformat source</menuchoice> and click on <menuchoice>OK</menuchoice>. Say <menuchoice>No</menuchoice> then about adding these files in cvs as we did not enable this in our project.
     
    <!--T:109-->
    {{Note|1=You can see that the slot we created in designer is listed here and checked, the method will be implemented in the generated files. If you uncheck it, the code will not be generated in your class.}}
     
    <!--T:110-->
    (The subclass dialog Image)
     
    <!--T:111-->
    We have to suppress some lines in main.cpp as the KDE simple project template refers to a KMainWindow which is usually the base class used. But here, SigCreate is based on QWidget. You have to remove all the lines between KApplication app; and return app.exec(); except the ones I keep here:</translate>
     
    <syntaxhighlight lang="text">SigCreate *mainWin = 0;
     
    mainWin = new SigCreate();
    app.setMainWidget( mainWin );
    mainWin->show();
    </syntaxhighlight>
     
    <translate>
    ===Implementing the Slot=== <!--T:112-->
     
    <!--T:113-->
    Then open the sigcreate.cpp source file and then you implement the slot by adding the following lines in the parenthesis of:</translate>
     
    <syntaxhighlight lang="text">
    void SigCreate::slotCreateSig()
    {}</syntaxhighlight>
     
    <translate><!--T:114-->
    to implement the slot:</translate>
     
    <syntaxhighlight lang="text">
    sigBox->append("\n--");
    sigBox->append(nameBox->text());
    sigBox->append(mailBox->text());
    sigBox->append(commBox->currentText());
    </syntaxhighlight></
     
    <translate><!--T:115-->
    Also, the corresponding headers of course:</translate>
     
    <syntaxhighlight lang="text">
    #include <qlineedit.h>
    #include <qcombobox.h>
    #include <qmultilineedit.h>
    </syntaxhighlight>
     
    <translate><!--T:116-->
    Run <menuchoice>Build -> Run automake & friends</menuchoice>, <menuchoice>Build-> Run Configure</menuchoice>, <menuchoice>Build -> Build Project</menuchoice>, <menuchoice>Build -> Install</menuchoice> (or <menuchoice>Build->Install as root user</menuchoice>), <menuchoice>Build -> Execute Program</menuchoice>. That's it! The program is working!
     
    <!--T:117-->
    (Picture 20)
     
    <!--T:118-->
    A few more words about signals and slots. The signals and slots mechanism is type safe: the signature of a signal must match the signature of the receiving slot (for example, you will connect valueChanged(int) with a slot having an int as argument). And another thing to keep in mind is that all classes that inherit from QObject or one of its subclasses (e.g. QWidget) can contain signals and slots.
     
    <!--T:119-->
    All the strings used in KDE program must be wrapped in the i18n() function (klocale.h as header) because all KDE projects are translated. Please see the KDE Translation HowTo to learn more about i18n to make translations for an application.
     
    ==In Short== <!--T:120-->
     
    <!--T:121-->
    This is a short resume on how to work with KDevelop and QtDesigner.
     
    <!--T:122-->
    * 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.
     
    <!--T:123-->
    * 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).
     
    <!--T:124-->
    * 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.
     
    <!--T:125-->
    * Add your slots and others signals or member functions in the inherited class KProject.
     
    == Make the Translations for a Simple KDE Project== <!--T:126-->
     
    <!--T:127-->
    When your own project is finished, you may like to have one or several translations for the GUI. Here is how you can do that.
     
    === Install gettext Patched for KDE === <!--T:128-->
     
    <!--T:129-->
    Install a patched gettext that you can find on developer.kde.org and install it in your home directory. The patched gettext can be found there : http://public.kde.planetmirror.com/pub/kde/devel/gettext-kde/ </translate>
     
    <syntaxhighlight lang="text">
      $ tar xvzf gettext-0.10.35-kde.tar.gz
    $ cd gettext-0.10.35-kde
    $ ./configure
    $ make
    $ mkdir -p ~/bin
    $ cp src/gettext src/xgettext ~/bin # copy gettext and xgettext into your HOME/bin directory
    $ export PATH=~/bin:$PATH
    </syntaxhighlight>
     
    <translate>
    === Prepare the Translations === <!--T:130-->
     
    <!--T:131-->
    Then, go into your project directory :
     
    <!--T:132-->
    <code>$ cd /path/to/myproject</code>
     
    <!--T:133-->
    Set KDEDIR to match your kde installation - on my Mandrake it is /usr This path can also be found by doing <code>kde-config --prefix</code>
     
    <!--T:134-->
    <code> $ export KDEDIR=`kde-config --prefix` # or export KDEDIR=/usr </code>
     
    <!--T:135-->
    Then create the translations files :
     
    <!--T:136-->
    <code>  $ make -f admin/Makefile.common package-messages </code>
     
    === Make the Translations === <!--T:137-->
     
    <!--T:138-->
    Translate the .po files using kbabel These files are in the po directory of your project.
    {{Warning|1=Do not touch the .pot file!}}
     
    === Compile and Install the Translations Files === <!--T:139--> </translate>
     
    <syntaxhighlight lang="text">
    $ make package-messages
    $ sudo make install
    </syntaxhighlight>
     
    <translate>
    ==General Tips== <!--T:140-->
     
    ===General Hints=== <!--T:141-->
     
    ==== Your Application Name ==== <!--T:142-->
     
    <!--T:143-->
    KDE application names generally start with the letter K followed by a name suggesting what the program does. For example, KMail is very simple and tells the user that this is indeed a KDE application and about email. A good practice is to choose an english name for the name that follows the K. Of course, this is just an indication and you are free to do what you want. But a good name can help to get your program known quicker.
     
    <!--T:144-->
    {{Note|1=Run a search in Google (in Konqueror, write gg:your_app_name) to see if the name you want to use is not the name of a copyrighted program. If this is the case or if in doubt, change it.}}
     
    ==== Coding Practice ==== <!--T:145-->
     
    <!--T:146-->
    Comments should be in English as it is really easier if someone else has a look at your code.
     
    <!--T:147-->
    Class names usually are also in English and the names must indicate what the class does. Good examples: TopLevel, CursorInterface, TaskManager. Note the upper case letters and remember that C++ is case-sensitive.
     
    <!--T:148-->
    Function names usually begin with a lower case letter and here are examples of good names:</translate>
     
    <syntaxhighlight lang="text">
    void activateRaiseOrIconify();
    void toDesktop(int);
    void windowAdded(WId);
    </syntaxhighlight>
     
    <translate><!--T:149-->
    Code indentation can be whatever you like as long as the code is visible for other developers. Always keep in mind that other people will have a look in your code and try to make it easy to read.
     
    === Importing your project in KDE CVS === <!--T:150-->
     
    <!--T:151-->
    Your program interests people, you feel you have time to really work on it, you need more feedback and help for improving it. You also agree to release it under the GPL license or equivalent. You can ask for a cvs account to import it in kdenonbeta. The kdenonbeta module is quite big and is not distributed with the official KDE. It is not packaged nor translated and feature freeze does not apply to kdenonbeta. Its purpose is to allow other developers to work on your application and to test it. Of course, you will need qt-copy, arts and kdelibs from cvs HEAD at least. Please see a tutorial here on how to get started for compiling KDE from cvs HEAD.
     
    <!--T:152-->
    {{Note|1=When your application has the most important features, when it's totally KDE compatible (i18n, xml GUI, ect.), you will be able to ask for moving it in a KDE official package.}}
     
    <!--T:153-->
    In order to get a cvs account, please follow theses instructions. Send a mail to sysadmin (at) office (dot) kde (dot) org to justify why you need cvs access. Tell that you want to import your application (app_name) in the kdenonbeta module. Make sure to specify your full name and e-mail address, if the From field in your mails doesn't specify them. You can also choose a nickname for your user login. You can currently choose between the standard non-encrypted CVS protocol (pserver) and the encrypted CVS-over-ssh. If you choose pserver, send also an encrypted password (for instance using useradd dummy ; passwd dummy ; grep dummy /etc/passwd /etc/shadow). If you choose CVS-over-ssh, send a public ssh key (e.g. ~/.ssh/id_dsa.pub).
     
    <!--T:154-->
    Wait for the answer from a KDE sysadmin.
     
    <!--T:155-->
    Once you have compiled at least qt-copy, arts and kdelibs, you need to check out kdenonbeta files. Log in the cvs server with your login user and password. </translate>
     
    <syntaxhighlight lang="text">
        $ cvs co -l kdenonbeta
        $ cd kdenonbeta
        $ cvs co admin  (or ln -s ../kde-common/admin .admin)
    </syntaxhighlight>
     
    <translate><!--T:156-->
    You copy your project main dir with everything in kdenonbeta and then, in your project main dir, you issue <code> $ make disclean </code>
     
    <!--T:157-->
    All the .o files must be gone. You can also remove by hand all Makefile, Makefile.in (not Makefile.am) and all kdevelop related files. Remove the admin, autom4te.cache, debug, doc, po and templates folders. You must just keep some files and the src subdir. Then, you cd .. to go back in kdenonbeta and you type: </translate>
     
    <syntaxhighlight lang="text">
        $ make -f Makefile.cvs
        $ ./configure --prefix=$KDEDIR
        $ cd your_project_name
        $ make
        $ su -c 'make install'
    </syntaxhighlight>
     
    <translate><!--T:158-->
    All these steps must go well. If there are errors, you should be able to correct them by carefully reading the error message. If you are really stuck, please go to IRC and ask on #kde or #kde-devel, someone will help you.
     
    <!--T:159-->
    then, in kdenonbeta dir: </translate>
     
    <syntaxhighlight lang="text">
        $ cvs add your_project_name
        $ cvs add your_project_name/*
        $ cvs add your_project_name/src
        $ cvs add your_project_name/src/*
        $ cvs commit
    </syntaxhighlight>
     
    <translate><!--T:160-->
    You get the window (vi editor as default) where you can log your message. It's a good practice to note what your commit is about. In your case, you will say (type i first if you are in vi to get in edit mode):
     
    <!--T:161-->
    First import of your_app_name which does this and that.


    Now that we have spacers to fill blank space, we need a proper layout management. This will allow the widgets to be nicely resized whenever the main window is resized. It is really compulsory to have good layout management. Again, try to resize several times to see if everything is in place. We can use Vertical or horizontal layout or grid management. The top row of widget is horizontal (spacer + label + spacer) so we need Horizontal management. We need to select the three widgets alltogether: click on the first spring, then click on the label while holding down ''Shift'', then on the second spring while holding down ''Shift''. Then click on the Horizontal Layout icon or menu '''Layout-> Lay Out Horizontally'''. You will then see a resizable red line around the three objects to indicate that their layout is being managed. Resize the red box if it needs to.
    <!--T:162-->
    Check if all the files are added correctly. If not, cvs add filename and cvs commit.


    We can now repeat this procedure for the three labels inside the GroupBox, this time using vertical layout management. The same vertical management for the two LineEdit and the ComboBox. It is better to use vertical management to keep the object aligned. If we use horizontal management for each label + text box then they will not stay aligned and equally sized. Horizontal management is needed for the label with the spacer and another one for the two pushbuttons and the spacer.
    <!--T:163-->
    Each time you want to work on your project, don't forget to log in the kde server with your user login and password and, to be sure you have the latest version, do a: </translate>


    To finish the layout, we need to let the form look after the laid-out boxes. We put everything in a grid. This is done by right clicking the form and selecting "Lay Out in a Grid" from the menu. The final design with layout lines should resemble something similar to [[:Image:QtDesigner3-CompleteLayoutManagement.png|this image]].
    <syntaxhighlight lang="text">
        $ cvs up
    </syntaxhighlight>


    ===Signals and Slots===
    <translate>
    ===Generating the Source===
    <!--T:164-->
    ===Implementing the Slot===
    Finished!</translate>


    ==In Short==
    [[Category|Development]]
    ==Make the translations for a simple kde project==
    ==A few general tips==
    ==Generating the source (alternate)==
    ==Credits and License==

    Latest revision as of 14:39, 24 January 2012

    Other languages:
    Warning
    This section needs improvements: Please help us to

    cleanup confusing sections and fix sections which contain a todo


    Tip
    Note: This page deals with content related to KDE 3. If you are developing for KDE 4, this information might not be valid anymore.


    Introduction

    To get us started doing something useful with Qt Designer, we are going to build a simple program that will show you the power of Qt Designer and KDevelop. I hope that this will help you to create your first "real" KDE application.

    KDevelop will help you to build a complete KDE application. The KDE project uses the autoconf and automake tools for KDE 3.x, and KDevelop will provide you with all the necessary files (admin directory, Makefile.cvs, Makefile.am,...).

    Requirements

    How to Get Qt Designer

    From your Distribution

    Qt Designer is part of the qt-3.2.x package and above. If you have an older Qt on your system, you should get at least this version. At the time of writing, Qt latest version is 3.3.2.

    Please remember to check if you have all the qt-related packages installed. You need the qt headers in order to compile this tutorial application. These headers usually come in the devel package. You also need to be sure you have designer. In some distributions, it comes in a separate package.

    To check if you have everything, do a: locate qstring.h

    If you get something like /usr/lib/qt3/include/qstring.h then you can set your QTDIR variable to /usr/lib/qt3/. In bash environment, this is done by typing:

    export QTDIR= /usr/lib/qt3

    Tarball or Anonymous Subversion

    You can download the tarball from the Trolltech website, or get the qt-copy module from SVN. Please note that Qt for Linux is GPL.

    For an explanation for how to use anonymous SVN, get the qt-copy and kde modules and compile them, please see a great documentation at Using Subversion with KDE.

    You must then set the QTDIR environment variable. This should point to the directory into which you installed Qt. In bash, for example, you would type export QTDIR= /usr/local/qt provided that /usr/local/qt is the directory into which you installed Qt. Please read the INSTALL file for more details.

    You then compile by issuing the following commands, here is the recommended compile line:

    ./configure -system-zlib -qt-gif -system-libpng -system-libjpeg \
    -plugin-imgfmt-mng -thread -no-exceptions -debug -fast
    make
    

    The command make install is not needed.

    Qt Designer is located in the bin directory of your Qt installation directory. You can run it by typing: /usr/local/qt/bin/designer in a console.

    To compile Qt from source, please see Trolltech's Qt/X11 Open Source Edition page.

    How to get KDevelop 3

    From your Distribution

    KDevelop 3 should be part of your distribution. Pre 3 versions of KDevelop were nicknamed Gideon, but they are obsolete now.

    From Tarball

    KDevelop can be downloaded from the KDevelop website, under the Quick download heading.

    To compile KDevelop 3, you need qt-3.1.0 or higher and kdelibs-3.1.0 or higher. The environment variables QTDIR and KDEDIR should point to those directories.

    Don't forget to set up the KDE and Qt paths. The most common errors while using KDevelop come from the environment variables not set up properly. Check in a console by issuing the command set to see all your environment variables. You should set your PATH variable as follow as well as your LD_LIBRARY_PATH:

    export PATH=$QTDIR/bin:$KDEDIR/bin:$PATH
    export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

    If you have any problem getting KDevelop running, please refer to the KDevelop Forum to find the answer to your problem.

    If you never used KDevelop before, try to create a new project and to compile it to get used to the interface and the icons.

    KDevelop 3.4

    Please refer to Downloading KDevelop 3.4 and Compiling KDevelop 3.4.

    Lexicon

    • Widget: a widget is an element of an graphical interface such as a container window, a button or a field for entering text.
    • Layout management: this term describes the way in which widgets are arranged in a window. In its simplest form, an element may be placed at a specific position and given a specific height and width. But when the user resizes the window, the widgets should stay in their position and change their size accordingly. Linux allows to do that by using layouts to place the widgets in.
    • Signal and Slots: Signals and slots are used for communication between objects. The signal/slot mechanism is a central feature of Qt. Signals are emitted by objects when they change their state in a way that may be interesting to the outside world. Slots can be used for receiving signals, but they are normal member functions. You can connect as many signals as you want to a single slot, and a signal can be connected to as many slots as you desire. Please see the TrollTech documentation on signals and slots for more details. In the excellent online documentation that comes with Qt, you'll find the signals and the public slots that go with each class. You can then implement your own slots.

    Creating the Application

    Starting the project

    Creating the framework with KDevelop

    The framework in which our program will sit in (i.e. the main window) can be done easily and quickly by using KDevelop. Start KDevelop and select New Project in the Project menu. The Application Wizard appears then. Choose a C++ -> KDE -> Simple KDE Application. Fill in the blank lines with the project name SigCreate, your name as author, and your email. Refer to the following screenshot as a reference:

    Click on Next. Have a look to the CVS option and the header templates. Then click on Finish on the last screen. KDevelop creates all the files that you need to compile your project. You can use the file selector to view the code of the 3 files, which are main.cpp, sigcreate.cpp and sigcreate.h, as shown here:

    .

    Once the Application Wizard has created your application, compile it to ensure that everything is fine. To do that, select Build -> Run automake & friends then Build -> Run configure. The Messages output window should say

    Good - your configure finished. Start make now
    *
    * *** Success ***

    so you can run make with Build -> Build Project (or using the F8 shortcut). Then Build -> Install. Then Build -> Execute program (or F9). The result is shown here:

    .

    {{Note|1=If KDevelop does not recognize your QTDIR and KDEDIR variables, you can set them in Configure Optiona... -> Project -> Project Options..., as shown:

    .

    Using Qt Designer

    Qt Designer is a tool for designing and implementing user interfaces. It helps you arranging your widgets on a form and adding a proper layout so your interface can be resized properly. I recommend that you read the Qt Designer manual to know everything about Qt Designer. Qt Designer includes a code editor but we'll use KDevelop to edit and modify all code.

    We will now create the interface of our application using Qt Designer. A form from Qt Designer is saved with a .ui extension because it is then processed by the uic program to generate a .h and .cpp files. KDevelop takes care of that, the only thing we need to do is to create the form.

    Note
    Each time you add or remove a file (now we will add a .ui file) in your KDevelop project, the Makefile.am will be changed. KDevelop does that itself but you will need to Run automake & friends after such changes.


    In KDevelop, click on File -> New and fill the dialog window that appears. First write the file name: sigcreatedlg and select what new file you want in the combobox: here we want a Widget (.ui). Please be sure that Add to project is checked, as this ensures that the Makefile.am is updated. Refer to this screen shot:

    Click the OK button. The Automake manager dialog then pops up.

    Click the OK button for this dialog as well.

    If the new file sigcreatedlg.ui is not open in Qt Designer, open the Automake Manager, right-click on the file and select Open With -> Qt Designer. Qt Designer will open.

    Tip
    About the names: it is a good idea to finish a dialog name or a form name by dlg to ensure a nice visibility for people who want to have a look at the code. sigcreatedlg says that it is a dialog, i.e an interface class, only.


    The Qt Designer interface]] is essentially split into three areas.

    On the left is the toolbox, where you can select your widgets. On the right, several dialogs can be selected. I'll keep only the Property Editor dialog (I close the 2 others). Your widgets can be fine tuned to behave how you want them to. You can choose the size of the widget, its background color (palette), and so on. Between those 2 windows is the Form, your program window, within which you will design your user interface.

    Note
    After adding the sigcreatedlg.ui file, you will have to run Automake & friends and Run configure before building the program. This ensures that the updated Makefile.am is now read.


    Designing the Program

    Each time you want to use Qt Designer, you should have a precise visual idea of the design of your interface. You can see in the following picture what the program will be like.

    It is a window with a number of different items (or widgets) on it, designed so that the user puts the right information in the right boxes. You should always design your program from the user's point of view, as it must be easy to use.

    This application creates an email signature, which is then displayed on the screen. The user should enter her/his name, email address, and then select one of three comments. When you click the Create! button, the generated signature is shown in a MultiLineEdit. When you click Cancel, the program quits.

    Note
    Note that this project is meant as a tutorial, so this is somewhat far away from practical use.


    Go back to the Qt Designer window with the new dialog open. You will see that the property editor has been filled with details about the form you have created. The first line in the Property Editor shows the name of the form which is Form1.

    Click on the field with this name to change it and type SigCreateDlg. This will form the class name of the dialog so you should name it something useful.

    To change properties, select the property you wish to change, then alter its setting on the right. Change the Caption property to "SigCreateDlg v.01". We will now begin to add widgets on our dialog.

    Adding Widgets

    To start, we will insert the text at the top of the program window, which can be seen here:

    This text tells the user how to operate the program. This type of widget is called a Label and you can put one on your program like this:

    1. Select the dialog in ToolBox called Common Widgets -> TextLabel, or from the menubar Tools -> Display -> TextLabel
    2. The cursor will become a crosshair over the form. Draw a box for the label, just as you would in a paint program, and you will see that the label is created with some dummy text in it.
    3. To change this text, double click on the label and type in the text, instead of TextLabel1. The text you should type is
      This program will create an email signature for you. Just fill in the boxes and hit the Create! button.
      Select Align Center to have the text positioned nicely. Refer to this screenshot:
      .
    4. Finally, resize the widget using the handles so it is the correct size and at the top of the box. Try to center the label by moving it with the mouse. This is just a temporary measure. Later on we will look at a more elegant layout management technique. You may refer to this screenshot:

    .

    You follow pretty much the same procedure for embedding any type of widget that is supported by Qt Designer; select it, drag it, and finally, change its properties and size.

    An interesting concept in Qt Designer is that widgets can act as containers for other widgets. This will be demonstrated in our next task, which is to create the input fields inside the frame. You can see that in Picture 8 we have a bunch of labels and text boxes inside a frame. This frame is called a Group Box and acts as a container for the labels and text boxes inside it. Let's first create the frame by selecting the GroupBox in the Toolbox dialog -> Containers or Tools -> Containers -> GroupBox from the menubar. You can drag the mouse to create the box just below the Label you created before. In the Property Editor you can change the title property to alter the text in the frame. Put Details in the title text field. You may notice a + symbol in this entry in the Property Editor. This indicates that the property has subproperties that can also be changed.

    Once you have created the frame (i.e the GroupBox), create three more labels as before but when you draw them, draw them inside the GroupBox frame. You can then see in the Object Explorer box (Windows menu -> Views -> Object Explorer) to the right that the labels have become children of the GroupBox frame. See this image:

    .

    Change the text of labels by double-clicking on it.

    Once you have done this you can then create the text boxes. They will allow the user to type in text like his(her) name and email address. We use the simplest type of text boxes: a widget called QLineEdit which allows the user to enter one line of text only. You have to create two QLineEdit widgets for the name and the email address. You choose the menu Tools -> Input -> LineEdit and you draw it beside the 'Your Name' Label. Do the same below for the address.

    The witty comment will be selected by the user. We use a ComboBox which will present the user with three comments. Click on the ComboBox icon or select it via the Tools -> Input-> ComboBox menu. Draw it beside the Witty Comment label. Then double-click on it. You will be presented with a box into which you can add the contents of the combo box. Click on the New Item button and type in your comment in the text box at the right. Then click again on New Item for the second and third comments. Click on OK when you have finished.

    Adjust the size of the different widgets so they are nicely placed.

    Up to now, we have not named any of the widgets that are being placed in our program. It is useful to set an internal name for widgets so we can call them after in the program. Labels don't perform any action so they don't need to be named but other widgets do. It is the case now for our text boxes. We'll need to manipulate the data from the three input widgets (i.e. read the text) so we should give them a name. Names should be easily recognized later and they should make sense. The names are assigned via the name property on the top of the Property Editor. We name the top LineEdit nameBox and the second one mailBox. We name the ComboBox commBox. This will allow us to access the comments. So click on each LineEdit and then besides Name in the Property Editor write nameBox and mailBox. Then click on the ComboBox and name it commBox.

    We finish the graphical design by adding a label with Generated Signature as text. Below it, we put a TextEdit (Tools -> Input -> TextEdit) where the generated signature will be displayed. We name it sigBox. And then we add two PushButtons at the bottom ('Create!' and 'Cancel'). They don't need names but you can give them some if you want.

    Save your form. You can now have a quick preview by selecting the menu Preview -> Preview Form. This is the form before layout management.

    Getting Spaced Out

    This section describes the layout management. If you resize the preview window you will then notice that the widgets do not adjust appropriately. They are not resized. To improve things, we need to use a feature in Qt called spacers. Spacers are like virtual springs that push the widgets on each side apart. {{Note|1= Having a good layout is essential for your application, as when the strings are translated, they might be longer than the English ones and they need to fit on your widgets. The geometry of the widgets has to be nice if the user can resize your window application. Layouts are done by trial and error so use Preview -> Preview Form to see the result of your layout management and to achieve the best layout.

    The use of spacers and layout management is a skill that is developed through trial and error. The main thing to remember when dealing with spacers is that you work horizontally first and then vertically.

    We will first use spacers to center the text in the top box. Resize your label so that it is only the size of the text. Then we add two spacers, one at each side. Choose the spring icon or menu Layout -> Add Spacer. You adjust each of the spacers horizontally. Click the space to the left of the text and the blue spacer will appear . Repeat the same procedure for the right. Then add a spacer on the right of the "Generated Signature" label, and a last one on the left of the the "Create!" pushbutton. Please use this image as a reference.

    Now that we have spacers to fill blank space, we need a proper layout management. This will allow the widgets to be nicely resized whenever the main window is resized. It is really compulsory to have good layout management. Again, try to resize several times to see if everything is in place. We can use Vertical or horizontal layout or grid management. The top row of widget is horizontal (spacer + label + spacer) so we need Horizontal management. We need to select the three widgets alltogether: click on the first spring, then click on the label while holding down Shift, then on the second spring while holding down Shift. Then click on the Horizontal Layout icon or menu Layout -> Lay Out Horizontally. You will then see a resizable red line around the three objects to indicate that their layout is being managed. Resize the red box if it needs it.

    We can now repeat this procedure for the three labels inside the GroupBox, this time using vertical layout management. The same vertical management is used for the two LineEdit and the ComboBox. It is better to use vertical management to keep the objects aligned. If we use horizontal management for each label + text box then they will not stay aligned and equally sized. Horizontal management is needed for the label with the spacer and another one for the two pushbuttons and the spacer.

    To finish the layout, we need to let the form look after the laid-out boxes. We put everything in a grid. This is done by right clicking the form and selecting Lay Out in a Grid from the menu. The final design with layout lines should resemble something similar to this image:

    Signals and Slots

    Signals and Slots are used for communication between Qt objects. The signal/slot mechanism is a central feature of Qt and probably the part that differs most from other toolkits which often use callbacks. In Qt, a signal is emitted by a widget when a particular event occurs, very often triggered by the user like for example pressing a button or writing something in a LineEdit. A slot is simply a function that is called in reponse to a particular signal.

    Now the widgets are implemented and the layout is arranged the final thing we need to do in the design stage of the form is to create the signal/slot connections. To do this manually requires a connect() function but Qt Designer provides a simple yet effective solution. To create the signal/slot connections we need to use the connecting tool. To do this either select the icon (it looks like a red arrow going into a green square) or select Tools -> Connect Signals/Slots from the menu (or use the F3 shortcut key). To create a connection, click on the form on the widget that is going to be dealing with the slot, drag the line off the form and release the mouse button.

    .

    Let's deal first with the Create! button. Click first on the Connect Signal/Slot icon or select it from the Tools menu or use the F3 key. Then click on the Create! button with the crosshair and drag the line off the form completely. When you have released the mouse button you will see the connections tool shown in the image.

    What we want to do is to create a slot that will create our signature when the user clicks on the Create! button. The signal will be clicked() (you may choose among five signals for a QPushButton) and we need to create the slot then make the connection.

    To create the slot we need to click on the Edit Slots button. The slot creation box then appears. Now click on the New Function button and a slot will appear in the box. Instead of new_slot() rename it to slotCreateSig() and leave the access specifier as public. When you click on OK you will be returned to the connections box and you will see your new slot in the Slots section of the box.

    To make a connection you simply select the appropriate signal (which is clicked() in our case) and then select the slot (which is our new slot slotCreateSig()). When you have selected both signal and slot you will see the connection made at the bottom of the screen. After you are finished click OK.

    Repeat the procedure for the Cancel button by using the clicked() signal and the close() slot. You are now done with the signals and slots.

    Warning
    Don't forget to save your form!


    Generating the Source

    In this tutorial, we use KDevelop subclassing tool in Automake Manager. If you have KDevelop version which has not that capability, then please go to Chapter 7 where I explain this step without the subclass tool.

    Here we start with the KDE simple project named SigCreate and the sigcreatedlg.ui that we have added in our project. In the Automake Manager, in the section sigcreate (Program in bin) you must have three files: sigcreatedlg.ui, sigcreate.cpp and main.cpp. The project must compile and give the main window as in picture 3 (creating.html).

    As the sigcreate class is no use for us, we will remove it and use it for subclassing the sigcreatedlg.ui file. In the Automake Manager, right click on sigcreate.cpp and select Remove and a dialog pops up. Please check Also Remove it from disk. Then do the same with sigcreate.h. This is the way to remove obsolete files from your project and the Makefile.am will be updated. Remember to run Automake & friends and configure before compiling your project again. We will not do it right now because we will make other changes. We will now use the class name SigCreate for the subclass.

    In the Automake Manager -> sigcreate (program in bin), right click on sigcreatedlg.ui and choose Subclass Widget... from the context menu that appears. Then fill in the subclass name which is SigCreate. Check the box: Reformat source and click on OK. Say No then about adding these files in cvs as we did not enable this in our project.

    Note
    You can see that the slot we created in designer is listed here and checked, the method will be implemented in the generated files. If you uncheck it, the code will not be generated in your class.


    (The subclass dialog Image)

    We have to suppress some lines in main.cpp as the KDE simple project template refers to a KMainWindow which is usually the base class used. But here, SigCreate is based on QWidget. You have to remove all the lines between KApplication app; and return app.exec(); except the ones I keep here:

    SigCreate *mainWin = 0;
    
    mainWin = new SigCreate();
    app.setMainWidget( mainWin );
    mainWin->show();
    

    Implementing the Slot

    Then open the sigcreate.cpp source file and then you implement the slot by adding the following lines in the parenthesis of:

    void SigCreate::slotCreateSig()
    {}
    

    to implement the slot:

    	sigBox->append("\n--");
     	sigBox->append(nameBox->text());
     	sigBox->append(mailBox->text());
     	sigBox->append(commBox->currentText());
    

    </

    Also, the corresponding headers of course:

     #include <qlineedit.h>
     #include <qcombobox.h>
     #include <qmultilineedit.h>
    

    Run Build -> Run automake & friends, Build-> Run Configure, Build -> Build Project, Build -> Install (or Build->Install as root user), Build -> Execute Program. That's it! The program is working!

    (Picture 20)

    A few more words about signals and slots. The signals and slots mechanism is type safe: the signature of a signal must match the signature of the receiving slot (for example, you will connect valueChanged(int) with a slot having an int as argument). And another thing to keep in mind is that all classes that inherit from QObject or one of its subclasses (e.g. QWidget) can contain signals and slots.

    All the strings used in KDE program must be wrapped in the i18n() function (klocale.h as header) because all KDE projects are translated. Please see the KDE Translation HowTo to learn more about i18n to make translations for an application.

    In Short

    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.

    Make the Translations for a Simple KDE Project

    When your own project is finished, you may like to have one or several translations for the GUI. Here is how you can do that.

    Install gettext Patched for KDE

    Install a patched gettext that you can find on developer.kde.org and install it in your home directory. The patched gettext can be found there : http://public.kde.planetmirror.com/pub/kde/devel/gettext-kde/

       $ tar xvzf gettext-0.10.35-kde.tar.gz
     $ cd gettext-0.10.35-kde
     $ ./configure
     $ make
     $ mkdir -p ~/bin
     $ cp src/gettext src/xgettext ~/bin # copy gettext and xgettext into your HOME/bin directory
     $ export PATH=~/bin:$PATH
    

    Prepare the Translations

    Then, go into your project directory :

    $ cd /path/to/myproject

    Set KDEDIR to match your kde installation - on my Mandrake it is /usr This path can also be found by doing kde-config --prefix

    $ export KDEDIR=`kde-config --prefix` # or export KDEDIR=/usr

    Then create the translations files :

    $ make -f admin/Makefile.common package-messages

    Make the Translations

    Translate the .po files using kbabel These files are in the po directory of your project.

    Warning
    Do not touch the .pot file!


    Compile and Install the Translations Files

     $ make package-messages
     $ sudo make install
    

    General Tips

    General Hints

    Your Application Name

    KDE application names generally start with the letter K followed by a name suggesting what the program does. For example, KMail is very simple and tells the user that this is indeed a KDE application and about email. A good practice is to choose an english name for the name that follows the K. Of course, this is just an indication and you are free to do what you want. But a good name can help to get your program known quicker.

    Note
    Run a search in Google (in Konqueror, write gg:your_app_name) to see if the name you want to use is not the name of a copyrighted program. If this is the case or if in doubt, change it.


    Coding Practice

    Comments should be in English as it is really easier if someone else has a look at your code.

    Class names usually are also in English and the names must indicate what the class does. Good examples: TopLevel, CursorInterface, TaskManager. Note the upper case letters and remember that C++ is case-sensitive.

    Function names usually begin with a lower case letter and here are examples of good names:

    void activateRaiseOrIconify();
    void toDesktop(int);
    void windowAdded(WId);
    

    Code indentation can be whatever you like as long as the code is visible for other developers. Always keep in mind that other people will have a look in your code and try to make it easy to read.

    Importing your project in KDE CVS

    Your program interests people, you feel you have time to really work on it, you need more feedback and help for improving it. You also agree to release it under the GPL license or equivalent. You can ask for a cvs account to import it in kdenonbeta. The kdenonbeta module is quite big and is not distributed with the official KDE. It is not packaged nor translated and feature freeze does not apply to kdenonbeta. Its purpose is to allow other developers to work on your application and to test it. Of course, you will need qt-copy, arts and kdelibs from cvs HEAD at least. Please see a tutorial here on how to get started for compiling KDE from cvs HEAD.

    Note
    When your application has the most important features, when it's totally KDE compatible (i18n, xml GUI, ect.), you will be able to ask for moving it in a KDE official package.


    In order to get a cvs account, please follow theses instructions. Send a mail to sysadmin (at) office (dot) kde (dot) org to justify why you need cvs access. Tell that you want to import your application (app_name) in the kdenonbeta module. Make sure to specify your full name and e-mail address, if the From field in your mails doesn't specify them. You can also choose a nickname for your user login. You can currently choose between the standard non-encrypted CVS protocol (pserver) and the encrypted CVS-over-ssh. If you choose pserver, send also an encrypted password (for instance using useradd dummy ; passwd dummy ; grep dummy /etc/passwd /etc/shadow). If you choose CVS-over-ssh, send a public ssh key (e.g. ~/.ssh/id_dsa.pub).

    Wait for the answer from a KDE sysadmin.

    Once you have compiled at least qt-copy, arts and kdelibs, you need to check out kdenonbeta files. Log in the cvs server with your login user and password.

        $ cvs co -l kdenonbeta
        $ cd kdenonbeta
        $ cvs co admin  (or ln -s ../kde-common/admin .admin)
    

    You copy your project main dir with everything in kdenonbeta and then, in your project main dir, you issue $ make disclean

    All the .o files must be gone. You can also remove by hand all Makefile, Makefile.in (not Makefile.am) and all kdevelop related files. Remove the admin, autom4te.cache, debug, doc, po and templates folders. You must just keep some files and the src subdir. Then, you cd .. to go back in kdenonbeta and you type:

        $ make -f Makefile.cvs
        $ ./configure --prefix=$KDEDIR
        $ cd your_project_name
        $ make
        $ su -c 'make install'
    

    All these steps must go well. If there are errors, you should be able to correct them by carefully reading the error message. If you are really stuck, please go to IRC and ask on #kde or #kde-devel, someone will help you.

    then, in kdenonbeta dir:

        $ cvs add your_project_name
        $ cvs add your_project_name/*
        $ cvs add your_project_name/src
        $ cvs add your_project_name/src/*
        $ cvs commit
    

    You get the window (vi editor as default) where you can log your message. It's a good practice to note what your commit is about. In your case, you will say (type i first if you are in vi to get in edit mode):

    First import of your_app_name which does this and that.

    Check if all the files are added correctly. If not, cvs add filename and cvs commit.

    Each time you want to work on your project, don't forget to log in the kde server with your user login and password and, to be sure you have the latest version, do a:

        $ cvs up
    

    Finished!

    Development