summaryrefslogtreecommitdiff
path: root/core/pim
authorharlekin <harlekin>2002-10-10 18:12:54 (UTC)
committer harlekin <harlekin>2002-10-10 18:12:54 (UTC)
commit3f838aec8ec65ff0820c92095b9948413ad895aa (patch) (unidiff)
tree1439e0f0368d86c7b6ddb364365fb58ec981d860 /core/pim
parentb0de7d18fc207a9926ba913d5863d2320d7122b2 (diff)
downloadopie-3f838aec8ec65ff0820c92095b9948413ad895aa.zip
opie-3f838aec8ec65ff0820c92095b9948413ad895aa.tar.gz
opie-3f838aec8ec65ff0820c92095b9948413ad895aa.tar.bz2
tooltip experiments
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todaybase.cpp2
-rw-r--r--core/pim/today/todayconfig.cpp12
-rw-r--r--core/pim/today/todayconfig.h2
3 files changed, 11 insertions, 5 deletions
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
@@ -67,3 +67,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
67 TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin ); 67 TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin );
68 TodayLabel->setText( "<font color=#FFFFFF>" + tr("Today²") +"</font>" ); 68 TodayLabel->setText( "<font color=#FFFFFF>" + tr("Today") +"</font>" );
69 69
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
@@ -32,2 +32,3 @@
32#include <qtooltip.h> 32#include <qtooltip.h>
33#include <qwhatsthis.h>
33 34
@@ -52,4 +53,4 @@ public:
52 */ 53 */
53TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags fl ) 54TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
54 : QDialog( parent, name, modal, fl ) { 55 : QDialog( parent, name, modal, WStyle_ContextHelp ) {
55 56
@@ -82,3 +83,5 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags
82 TextLabel2->setText( tr( "autostart on \nresume?\n (Opie only)" ) ); 83 TextLabel2->setText( tr( "autostart on \nresume?\n (Opie only)" ) );
84 QWhatsThis::add( TextLabel2 , tr( "Check this if today should be autostarted on resume." ) );
83 CheckBoxAuto = new QCheckBox( hbox_auto, "CheckBoxAuto" ); 85 CheckBoxAuto = new QCheckBox( hbox_auto, "CheckBoxAuto" );
86 QWhatsThis::add( CheckBoxAuto, tr( "Check this if today should be autostarted on resume." ) );
84 QHBox *hbox_inactive = new QHBox( tab_3 ); 87 QHBox *hbox_inactive = new QHBox( tab_3 );
@@ -86,3 +89,5 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags
86 TimeLabel->setText( tr( "minutes inactive" ) ); 89 TimeLabel->setText( tr( "minutes inactive" ) );
90 QWhatsThis::add( TimeLabel , tr( "How many minutes has the PDA been suspended before the autostart feature kicks in on resume" ) );
87 SpinBoxTime = new QSpinBox( hbox_inactive, "TimeSpinner" ); 91 SpinBoxTime = new QSpinBox( hbox_inactive, "TimeSpinner" );
92 QWhatsThis::add( SpinBoxTime , tr( "How many minutes has the PDA been suspended before the autostart feature kicks in on resume" ) );
88 QHBox *hbox_iconSize = new QHBox( tab_3 ); 93 QHBox *hbox_iconSize = new QHBox( tab_3 );
@@ -90,5 +95,6 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal, WFlags
90 iconSizeLabel->setText( tr( "Icon size" ) ); 95 iconSizeLabel->setText( tr( "Icon size" ) );
91 // iconSizeLabel->setToolTip( tr( "Set the icon size in pixel" ) ); 96 QWhatsThis::add( iconSizeLabel, tr( "Set the icon size in pixel" ) );
92 SpinBoxIconSize = new QSpinBox( hbox_iconSize, "TimeSpinner" ); 97 SpinBoxIconSize = new QSpinBox( hbox_iconSize, "TimeSpinner" );
93 SpinBoxIconSize->setMaxValue( 32 ); 98 SpinBoxIconSize->setMaxValue( 32 );
99 QWhatsThis::add( SpinBoxIconSize, tr( "Set the icon size in pixel" ) );
94 100
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
@@ -34,3 +34,3 @@ class TodayConfig : public QDialog {
34public: 34public:
35 TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 35 TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE );
36 ~TodayConfig(); 36 ~TodayConfig();