]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/README
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / README
1 This file contains some do's and dont's for the Qt2 frontend.
2
3 General rules
4 -------------
5
6 Every editable field that affects the state of the dialog contents
7 from LyX's point of view should connect its xxxChanged() signal to
8 a the dialog's changed_adaptor() slot, which in turn should call
9 form_->changed(). If you are using a more complicated thing anyway,
10 then remember to call form_->changed() at the end (if it has changed !)
11  
12 Every non-trivial widget should have a tooltip. If you don't know
13 what to write, write "FIXME", and it can fixed later. Don't be afraid
14 to use QWhatsThis too, but this must be done in the derived class's
15 constructor, and use _("..."). Non-trivial means that things like "OK"
16 /must not/ have a tooltip.
17  
18 If necessary, you should override Qt2Base::isValid() for determining the validity
19 of the current dialog's contents.
20  
21 OK/Apply/Restore/Close should be connected in the derived class's constructor
22 to call form_->slotOK() etc. Refer to close/cancel as close in the source.
23  
24 Override update_contents() to update the dialog, not update(), and build_dialog(),
25 not build(). Only these functions may change dialog widgets that may emit changed()
26 during initialisation, to prevent the button controller from changing its state.
27
28 Never call buttoncontroller functions directly from dialogs. In general, you
29 should use Qt2Base::changed() in all circumstances. However, if you must call
30 the buttoncontroller, make sure to respect Qt2Base::updating_
31
32 Don't #undef emit - #include "QtLyXView.h" instead
33  
34 Naming conventions
35 ------------------
36
37 QFoo.[Ch]              The file that interacts with the controller
38 QFooDialog.[Ch]        The implementation of the dialog, derived from the generated files
39 ui/QFooDialog.ui       The designer file
40 ui/QFooDialogBase.[Ch] Generated files from QFooDialog.ui
41  
42 slots should be named e.g. slotFooClicked(), slotFooSelected(), where foo is the name
43 of the widget.
44  
45 Widgets should be named like "fooXX", where XX is one of the following
46 widget types :
47
48 CB - check box 
49 CO - combo box
50 ED - line edit
51 LA - label
52 ML -
53 PB - push button
54 (FIXME: complete this)
55
56  
57 Stuff to be aware of
58 --------------------
59
60 The connect statement in Qt is a macro and its arguments does not follow
61 the C++ standard as it should. Using the construct "Type const &" as
62 argument will lead to runtime-errors, use "const Type &" instead.
63
64 ex.
65
66 --right--
67
68         connect(list, SIGNAL(selected(const QString &)),
69                 this, SLOT(complete_selected(const QString &)));
70
71 --wrong--
72
73         connect(list, SIGNAL(selected(QString const &)),
74                 this, SLOT(complete_selected(QString const &)));
75
76 Qt, Unicode, and LyX
77 --------------------
78
79 LyX isn't unicoded yet. But you should follow these simple rules :
80
81 o Use qt_() not _() in code
82 o Use fromqstr and toqstr NOT .latin1() / .c_str()
83
84 Using these functions (in qt_helpers.h) will make sure we use
85 the right locale for converting to Qt's QString, which is unicode.