2006-12-08 08:57:57 +00:00
|
|
|
This file contains some do's and dont's for the Qt4 frontend.
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
General rules
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Every editable field that affects the state of the dialog contents
|
|
|
|
from LyX's point of view should connect its xxxChanged() signal to
|
|
|
|
a the dialog's changed_adaptor() slot, which in turn should call
|
|
|
|
form_->changed(). If you are using a more complicated thing anyway,
|
|
|
|
then remember to call form_->changed() at the end (if it has changed !)
|
|
|
|
|
|
|
|
Every non-trivial widget should have a tooltip. If you don't know
|
|
|
|
what to write, write "FIXME", and it can fixed later. Don't be afraid
|
|
|
|
to use QWhatsThis too, but this must be done in the derived class's
|
|
|
|
constructor, and use _("..."). Non-trivial means that things like "OK"
|
|
|
|
/must not/ have a tooltip.
|
|
|
|
|
|
|
|
moc is incredibly stupid and sometimes you need a fully qualified
|
|
|
|
"std::string" for .connect() statements to work. Be very, very careful.
|
|
|
|
|
|
|
|
Remember to check tab order on a dialog (third icon, with blue bars in designer).
|
|
|
|
|
|
|
|
Remember to check sensible resizing behaviour on a dialog.
|
|
|
|
|
|
|
|
Remember to use Edit->Check Accelerators
|
|
|
|
|
|
|
|
If necessary, you should override Qt2Base::isValid() for determining the validity
|
|
|
|
of the current dialog's contents.
|
|
|
|
|
|
|
|
OK/Apply/Restore/Close should be connected in the derived class's constructor
|
|
|
|
to call form_->slotOK() etc. Refer to close/cancel as close in the source.
|
|
|
|
|
|
|
|
Override update_contents() to update the dialog, not update(), and build_dialog(),
|
|
|
|
not build(). Only these functions may change dialog widgets that may emit changed()
|
|
|
|
during initialisation, to prevent the button controller from changing its state.
|
|
|
|
|
|
|
|
Never call buttoncontroller functions directly from dialogs. In general, you
|
|
|
|
should use Qt2Base::changed() in all circumstances. However, if you must call
|
|
|
|
the buttoncontroller, make sure to respect Qt2Base::updating_
|
|
|
|
|
|
|
|
Naming conventions
|
|
|
|
------------------
|
|
|
|
|
|
|
|
QFoo.[Ch] The file that interacts with the controller
|
|
|
|
QFooDialog.[Ch] The implementation of the dialog, derived from the generated files
|
|
|
|
ui/QFooDialog.ui The designer file
|
|
|
|
ui/QFooDialogBase.[Ch] Generated files from QFooDialog.ui
|
|
|
|
|
|
|
|
slots should be named e.g. slotFooClicked(), slotFooSelected(), where foo is the name
|
|
|
|
of the widget.
|
|
|
|
|
|
|
|
Widgets should be named like "fooXX", where XX is one of the following
|
|
|
|
widget types :
|
|
|
|
|
|
|
|
CB - check box
|
|
|
|
CO - combo box
|
|
|
|
ED - line edit
|
2007-03-30 04:06:16 +00:00
|
|
|
GB - group box
|
2006-03-05 17:24:44 +00:00
|
|
|
LA - label
|
2007-03-30 04:06:16 +00:00
|
|
|
LC - LengthCombo
|
|
|
|
LV - QListView
|
|
|
|
ML - QTextBrowser
|
2006-03-05 17:24:44 +00:00
|
|
|
PB - push button
|
2007-03-30 04:06:16 +00:00
|
|
|
RB - radio button
|
|
|
|
SB - spin box
|
|
|
|
SL - slider
|
|
|
|
TE - text edit
|
|
|
|
TW - tree widget (FIXME: also TV in some files)
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
Stuff to be aware of
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
The connect statement in Qt is a macro and its arguments does not follow
|
|
|
|
the C++ standard as it should. Using the construct "Type const &" as
|
|
|
|
argument will lead to runtime-errors, use "const Type &" instead.
|
|
|
|
|
|
|
|
ex.
|
|
|
|
|
|
|
|
--right--
|
|
|
|
|
|
|
|
connect(list, SIGNAL(selected(const QString &)),
|
|
|
|
this, SLOT(complete_selected(const QString &)));
|
|
|
|
|
|
|
|
--wrong--
|
|
|
|
|
|
|
|
connect(list, SIGNAL(selected(QString const &)),
|
|
|
|
this, SLOT(complete_selected(QString const &)));
|
|
|
|
|
|
|
|
Qt, Unicode, and LyX
|
|
|
|
--------------------
|
|
|
|
|
2006-12-08 08:57:57 +00:00
|
|
|
LyX uses a different encoding (UCS4) than Qt (UTF16), therefore there are a
|
|
|
|
number of conversion functions in qt_helpers.[Ch]. Read the doxygen
|
|
|
|
documentation for details when to use which function.
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-12-08 08:57:57 +00:00
|
|
|
Additionally, you should follow these simple rules :
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-12-08 08:57:57 +00:00
|
|
|
o Use qt_() not _() in code
|
|
|
|
o Use the conversion functions of qt_helpers.h, NOT .latin1() / .c_str() etc.
|