summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-09-19 21:03:45 (UTC)
committer harlekin <harlekin>2002-09-19 21:03:45 (UTC)
commit9204c61f669fb265f6c5f14bfd6ca363a2929e40 (patch) (side-by-side diff)
tree68beed370a41f3b3686dc346727885f7dbd6f7b2
parentc03cc47ea4ecba39c89283f9bfc3ee55f572793f (diff)
downloadopie-9204c61f669fb265f6c5f14bfd6ca363a2929e40.zip
opie-9204c61f669fb265f6c5f14bfd6ca363a2929e40.tar.gz
opie-9204c61f669fb265f6c5f14bfd6ca363a2929e40.tar.bz2
config widget a bit nicer
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookpluginconfig.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp
index 51be40e..0f60c28 100644
--- a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp
+++ b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp
@@ -1,81 +1,81 @@
#include "datebookpluginconfig.h"
#include <qpe/config.h>
#include <qlayout.h>
#include <qtoolbutton.h>
#include <qlabel.h>
#include <qhbox.h>
#include <qvbox.h>
-DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
+DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
: ConfigWidget( parent, name ) {
QVBoxLayout * layout = new QVBoxLayout( this );
+ layout->setMargin( 20 );
QHBox *box1 = new QHBox( this );
QLabel* TextLabel4 = new QLabel( box1, "TextLabel4" );
TextLabel4->setText( tr( "Show location" ) );
CheckBox1 = new QCheckBox( box1, "CheckBox1" );
QHBox *box2 = new QHBox( this );
QLabel* TextLabel5 = new QLabel( box2 , "TextLabel5" );
TextLabel5->setText( tr( "Show notes" ) );
CheckBox2 = new QCheckBox( box2, "CheckBox2" );
QHBox *box3 = new QHBox( this );
QLabel* TextLabel6 = new QLabel( box3, "All Day");
- TextLabel6->setText( tr( "Show only later\n"
- "appointments") );
+ TextLabel6->setText( tr( "Show only later\n appointments") );
CheckBox3 = new QCheckBox ( box3, "CheckBox3" );
QHBox *box4 = new QHBox( this );
QLabel *TextLabel3 = new QLabel( box4, "TextLabel3" );
TextLabel3->setText( tr( "How many \nappointment\n"
"should be \nshown?" ) );
SpinBox1 = new QSpinBox( box4, "SpinBox1" );
SpinBox1->setMaxValue( 10 );
SpinBox1->setValue( 5 );
layout->addWidget( box1 );
layout->addWidget( box2 );
layout->addWidget( box3 );
layout->addWidget( box4 );
readConfig();
}
void DatebookPluginConfig::readConfig() {
Config cfg( "todaydatebookplugin" );
cfg.setGroup( "config" );
m_max_lines_meet = cfg.readNumEntry( "maxlinesmeet", 5 );
SpinBox1->setValue( m_max_lines_meet );
m_show_location = cfg.readNumEntry( "showlocation", 1 );
CheckBox1->setChecked( m_show_location );
m_show_notes = cfg.readNumEntry( "shownotes", 0 );
CheckBox2->setChecked( m_show_notes );
m_only_later = cfg.readNumEntry( "onlylater", 1 );
CheckBox3->setChecked( m_only_later );
}
void DatebookPluginConfig::writeConfig() {
Config cfg( "todaydatebookplugin" );
cfg.setGroup( "config" );
m_max_lines_meet = SpinBox1->value();
cfg.writeEntry( "maxlinesmeet", m_max_lines_meet);
m_show_location = CheckBox1->isChecked();
cfg.writeEntry( "showlocation", m_show_location);
m_show_notes = CheckBox2->isChecked();
cfg.writeEntry( "shownotes", m_show_notes );
m_only_later = CheckBox3->isChecked();
cfg.writeEntry( "onlylater", m_only_later );
cfg.write();
}
DatebookPluginConfig::~DatebookPluginConfig() {
}