From 7f271d89922254226280f039ae53c5fee63ef94d Mon Sep 17 00:00:00 2001 From: llornkcor Date: Wed, 05 Nov 2003 10:50:43 +0000 Subject: fix compile. probably wont work. who knows. --- (limited to 'core/pim/today/plugins/todolist/todopluginconfig.cpp') diff --git a/core/pim/today/plugins/todolist/todopluginconfig.cpp b/core/pim/today/plugins/todolist/todopluginconfig.cpp index c83f83b..4821776 100644 --- a/core/pim/today/plugins/todolist/todopluginconfig.cpp +++ b/core/pim/today/plugins/todolist/todopluginconfig.cpp @@ -19,39 +19,17 @@ #include #include -#include -#include #include - TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name) : TodayConfigWidget(parent, name ) { QVBoxLayout * layout = new QVBoxLayout( this ); - layout->setMargin( 20 ); - - QHBox *box1 = new QHBox( this ); - - QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" ); - TextLabel6->setText( tr( "tasks shown " ) ); - - SpinBox2 = new QSpinBox( box1, "SpinBox2" ); - SpinBox2->setMaxValue( 40 ); - QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of task that should be shown" ) ); - - - - QHBox *box2 = new QHBox( this ); - QLabel* clipLabel = new QLabel( box2, "" ); - clipLabel->setText( tr( "Clip line after X chars" ) ); + m_gui = new TodoPluginConfigBase( this ); - SpinBoxClip = new QSpinBox( box2, "SpinClip" ); - SpinBoxClip->setMaxValue( 200 ); - QWhatsThis::add( SpinBoxClip , tr( "After how many chars should be the info about the task be cut off" ) ); - layout->addWidget( box1 ); - layout->addWidget( box2 ); + layout->addWidget( m_gui ); readConfig(); } @@ -60,18 +38,18 @@ void TodolistPluginConfig::readConfig() { Config cfg( "todaytodoplugin" ); cfg.setGroup( "config" ); m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 ); - SpinBox2->setValue( m_max_lines_task ); + m_gui->SpinBox2->setValue( m_max_lines_task ); m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 ); - SpinBoxClip->setValue( m_maxCharClip ); + m_gui->SpinBoxClip->setValue( m_maxCharClip ); } void TodolistPluginConfig::writeConfig() { Config cfg( "todaytodoplugin" ); cfg.setGroup( "config" ); - m_max_lines_task = SpinBox2->value(); + m_max_lines_task = m_gui->SpinBox2->value(); cfg.writeEntry( "maxlinestask", m_max_lines_task ); - m_maxCharClip = SpinBoxClip->value(); + m_maxCharClip = m_gui->SpinBoxClip->value(); cfg.writeEntry( "maxcharclip", m_maxCharClip ); cfg.write(); } -- cgit v0.9.0.2