summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfig.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/today/todayconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todayconfig.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp
index 097965b..d15e2ab 100644
--- a/core/pim/today/todayconfig.cpp
+++ b/core/pim/today/todayconfig.cpp
@@ -31,4 +31,5 @@
#include <qtoolbutton.h>
#include <qtooltip.h>
+#include <qwhatsthis.h>
class ToolButton : public QToolButton {
@@ -51,6 +52,6 @@ public:
*
*/
-TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags fl )
- : QDialog( parent, name, modal, fl ) {
+TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
+ : QDialog( parent, name, modal, WStyle_ContextHelp ) {
setCaption( tr( "Today config" ) );
@@ -81,15 +82,20 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags
TextLabel2 = new QLabel( hbox_auto, "AutoStart" );
TextLabel2->setText( tr( "autostart on \nresume?\n (Opie only)" ) );
+ QWhatsThis::add( TextLabel2 , tr( "Check this if today should be autostarted on resume." ) );
CheckBoxAuto = new QCheckBox( hbox_auto, "CheckBoxAuto" );
+ QWhatsThis::add( CheckBoxAuto, tr( "Check this if today should be autostarted on resume." ) );
QHBox *hbox_inactive = new QHBox( tab_3 );
TimeLabel = new QLabel( hbox_inactive, "TimeLabel" );
TimeLabel->setText( tr( "minutes inactive" ) );
+ QWhatsThis::add( TimeLabel , tr( "How many minutes has the PDA been suspended before the autostart feature kicks in on resume" ) );
SpinBoxTime = new QSpinBox( hbox_inactive, "TimeSpinner" );
+ QWhatsThis::add( SpinBoxTime , tr( "How many minutes has the PDA been suspended before the autostart feature kicks in on resume" ) );
QHBox *hbox_iconSize = new QHBox( tab_3 );
QLabel *iconSizeLabel = new QLabel( hbox_iconSize, "iconSizeLabel" );
iconSizeLabel->setText( tr( "Icon size" ) );
- // iconSizeLabel->setToolTip( tr( "Set the icon size in pixel" ) );
+ QWhatsThis::add( iconSizeLabel, tr( "Set the icon size in pixel" ) );
SpinBoxIconSize = new QSpinBox( hbox_iconSize, "TimeSpinner" );
SpinBoxIconSize->setMaxValue( 32 );
+ QWhatsThis::add( SpinBoxIconSize, tr( "Set the icon size in pixel" ) );
tab3Layout->addWidget( hbox_auto );