summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/TODO2
-rw-r--r--core/pim/today/plugins/datebook/datebookpluginconfig.cpp5
-rw-r--r--core/pim/today/plugins/todolist/todopluginconfig.cpp11
-rw-r--r--core/pim/today/today.cpp2
-rw-r--r--core/pim/today/todaybase.cpp7
-rw-r--r--core/pim/today/todaybase.h2
-rw-r--r--core/pim/today/todayconfig.cpp1
7 files changed, 21 insertions, 9 deletions
diff --git a/core/pim/today/TODO b/core/pim/today/TODO
index 49503bd..4dc22aa 100644
--- a/core/pim/today/TODO
+++ b/core/pim/today/TODO
@@ -2,4 +2,2 @@ TODO for today:
2 2
3- all icons clickable
4
5- retail rom mail plugin (z) 3- retail rom mail plugin (z)
diff --git a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp
index 606916b..e93c82c 100644
--- a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp
+++ b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp
@@ -10,2 +10,3 @@
10#include <qhbox.h> 10#include <qhbox.h>
11#include <qwhatsthis.h>
11#include <qvbox.h> 12#include <qvbox.h>
@@ -22,2 +23,3 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
22 CheckBox1 = new QCheckBox( box1, "CheckBox1" ); 23 CheckBox1 = new QCheckBox( box1, "CheckBox1" );
24 QWhatsThis::add( CheckBox1 , tr( "Check this if the location of an appointment should be shown for each one" ) );
23 25
@@ -27,2 +29,3 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
27 CheckBox2 = new QCheckBox( box2, "CheckBox2" ); 29 CheckBox2 = new QCheckBox( box2, "CheckBox2" );
30 QWhatsThis::add( CheckBox2 , tr( "Check this if the note attached to an appointment should be shown for each one" ) );
28 31
@@ -32,2 +35,3 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
32 CheckBox3 = new QCheckBox ( box3, "CheckBox3" ); 35 CheckBox3 = new QCheckBox ( box3, "CheckBox3" );
36 QWhatsThis::add( CheckBox3 , tr( "Check this if only appointments later then current time should be shown" ) );
33 37
@@ -38,2 +42,3 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
38 SpinBox1 = new QSpinBox( box4, "SpinBox1" ); 42 SpinBox1 = new QSpinBox( box4, "SpinBox1" );
43 QWhatsThis::add( SpinBox1 , tr( "How many appointments should be shown maximal. In chronical order" ) );
39 SpinBox1->setMaxValue( 10 ); 44 SpinBox1->setMaxValue( 10 );
diff --git a/core/pim/today/plugins/todolist/todopluginconfig.cpp b/core/pim/today/plugins/todolist/todopluginconfig.cpp
index 110b2e0..56b7aa2 100644
--- a/core/pim/today/plugins/todolist/todopluginconfig.cpp
+++ b/core/pim/today/plugins/todolist/todopluginconfig.cpp
@@ -24,2 +24,3 @@
24#include <qlabel.h> 24#include <qlabel.h>
25#include <qwhatsthis.h>
25 26
@@ -36,4 +37,3 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
36 QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" ); 37 QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
37 TextLabel6->setText( tr( "How many\n tasks should \n" 38 TextLabel6->setText( tr( "tasks shown " ) );
38 "be shown?" ) );
39 39
@@ -41,2 +41,5 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
41 SpinBox2->setMaxValue( 40 ); 41 SpinBox2->setMaxValue( 40 );
42 QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of task that should be shown" ) );
43
44
42 45
@@ -45,3 +48,3 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
45 QLabel* clipLabel = new QLabel( box2, "" ); 48 QLabel* clipLabel = new QLabel( box2, "" );
46 clipLabel->setText( tr( "Clip line after\n X chars" ) ); 49 clipLabel->setText( tr( "Clip line after X chars" ) );
47 50
@@ -49,3 +52,3 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
49 SpinBoxClip->setMaxValue( 200 ); 52 SpinBoxClip->setMaxValue( 200 );
50 53 QWhatsThis::add( SpinBoxClip , tr( "After how many chars should be the info about the task be cut off" ) );
51 layout->addWidget( box1 ); 54 layout->addWidget( box1 );
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 34ec3cb..dd98824 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -37,2 +37,3 @@
37#include <qdialog.h> 37#include <qdialog.h>
38#include <qwhatsthis.h>
38 39
@@ -169,2 +170,3 @@ void Today::loadPlugins() {
169 plugIcon->setPixmap( plugPix ); 170 plugIcon->setPixmap( plugPix );
171 QWhatsThis::add( plugIcon, tr("Click here to launch the associated app") );
170 plugIcon->setName( plugin.guiPart->appName() ); 172 plugIcon->setName( plugin.guiPart->appName() );
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp
index 352c9c1..12e8411 100644
--- a/core/pim/today/todaybase.cpp
+++ b/core/pim/today/todaybase.cpp
@@ -23,2 +23,3 @@
23#include <qapplication.h> 23#include <qapplication.h>
24#include <qwhatsthis.h>
24 25
@@ -27,4 +28,4 @@
27 28
28TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) 29TodayBase::TodayBase( QWidget* parent, const char* name, WFlags )
29 : QWidget( parent, name, fl ) { 30 : QWidget( parent, name, WStyle_ContextHelp ) {
30 31
@@ -82,2 +83,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
82 Opiezilla->setGeometry( QApplication::desktop()->width()-50 ,1, 45, 47 ); 83 Opiezilla->setGeometry( QApplication::desktop()->width()-50 ,1, 45, 47 );
84 QWhatsThis::add( Opiezilla , tr( "Today by Maximilian Reiß" ) );
83 Opiezilla->setBackgroundOrigin( QLabel::ParentOrigin ); 85 Opiezilla->setBackgroundOrigin( QLabel::ParentOrigin );
@@ -94,2 +96,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
94 ConfigButton->setPixmap( config ); 96 ConfigButton->setPixmap( config );
97 QWhatsThis::add( ConfigButton, tr( "Click here to get to the config dialog" ) );
95 ConfigButton->setBackgroundOrigin( QLabel::ParentOrigin ); 98 ConfigButton->setBackgroundOrigin( QLabel::ParentOrigin );
diff --git a/core/pim/today/todaybase.h b/core/pim/today/todaybase.h
index 7c50f32..340c7a6 100644
--- a/core/pim/today/todaybase.h
+++ b/core/pim/today/todaybase.h
@@ -35,3 +35,3 @@ class TodayBase : public QWidget
35public: 35public:
36 TodayBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 36 TodayBase( QWidget* parent = 0, const char* name = 0, WFlags = 0 );
37 ~TodayBase(); 37 ~TodayBase();
diff --git a/core/pim/today/todayconfig.cpp b/core/pim/today/todayconfig.cpp
index d15e2ab..f9dd8f7 100644
--- a/core/pim/today/todayconfig.cpp
+++ b/core/pim/today/todayconfig.cpp
@@ -71,2 +71,3 @@ TodayConfig::TodayConfig( QWidget* parent, const char* name, bool modal )
71 m_appletListView->setSorting( -1 ); 71 m_appletListView->setSorting( -1 );
72 QWhatsThis::add( m_appletListView, tr( "Check a checkbox to activate/deactivate a plugin ore use the arrow buttons on the right to change the appearance order" ) );
72 QVBox *vbox1 = new QVBox( hbox1 ); 73 QVBox *vbox1 = new QVBox( hbox1 );