From 3f838aec8ec65ff0820c92095b9948413ad895aa Mon Sep 17 00:00:00 2001 From: harlekin Date: Thu, 10 Oct 2002 18:12:54 +0000 Subject: tooltip experiments --- (limited to 'core/pim/today') diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index 1424b95..352c9c1 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp @@ -65,7 +65,7 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) TodayLabel_font.setPointSize( 40 ); TodayLabel->setFont( TodayLabel_font ); TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin ); - TodayLabel->setText( "" + tr("Today²") +"" ); + TodayLabel->setText( "" + tr("Today") +"" ); // date DateLabel = new QLabel( Frame, "TextLabel1" ); 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 @@ -30,6 +30,7 @@ #include #include #include +#include class ToolButton : public QToolButton { @@ -50,8 +51,8 @@ public: * By that way it would be real easy to have it as seperate app in settings tab * */ -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" ) ); @@ -80,17 +81,22 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags QHBox *hbox_auto = new QHBox( tab_3 ); 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 ); tab3Layout->addWidget( hbox_inactive ); diff --git a/core/pim/today/todayconfig.h b/core/pim/today/todayconfig.h index aa227dd..827e106 100644 --- a/core/pim/today/todayconfig.h +++ b/core/pim/today/todayconfig.h @@ -32,7 +32,7 @@ class TodayConfig : public QDialog { Q_OBJECT public: - TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); + TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE ); ~TodayConfig(); OTabWidget* TabWidget3; -- cgit v0.9.0.2