summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist/todopluginconfig.cpp
authorharlekin <harlekin>2002-09-19 21:01:00 (UTC)
committer harlekin <harlekin>2002-09-19 21:01:00 (UTC)
commitc03cc47ea4ecba39c89283f9bfc3ee55f572793f (patch) (unidiff)
tree7cab842df67039350234bbb6700773928c2b35ab /core/pim/today/plugins/todolist/todopluginconfig.cpp
parent65ba4e3610c94ba1de71a41dd6bf69662555e206 (diff)
downloadopie-c03cc47ea4ecba39c89283f9bfc3ee55f572793f.zip
opie-c03cc47ea4ecba39c89283f9bfc3ee55f572793f.tar.gz
opie-c03cc47ea4ecba39c89283f9bfc3ee55f572793f.tar.bz2
added line clipping to config and code cleanups
Diffstat (limited to 'core/pim/today/plugins/todolist/todopluginconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todopluginconfig.cpp35
1 files changed, 22 insertions, 13 deletions
diff --git a/core/pim/today/plugins/todolist/todopluginconfig.cpp b/core/pim/today/plugins/todolist/todopluginconfig.cpp
index 2d8f1b6..69ad727 100644
--- a/core/pim/today/plugins/todolist/todopluginconfig.cpp
+++ b/core/pim/today/plugins/todolist/todopluginconfig.cpp
@@ -1,70 +1,79 @@
1/* 1/*
2 * todopluginconfig.cpp 2 * todopluginconfig.cpp
3 * 3 *
4 * copyright : (c) 2002 by Maximilian Reiß 4 * copyright : (c) 2002 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#include "todopluginconfig.h" 17#include "todopluginconfig.h"
18 18
19#include <qpe/config.h> 19#include <qpe/config.h>
20 20
21#include <qlayout.h> 21#include <qlayout.h>
22#include <qhbox.h>
22#include <qtoolbutton.h> 23#include <qtoolbutton.h>
23#include <qlabel.h> 24#include <qlabel.h>
24 25
25 26
27
26TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name) 28TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
27 : ConfigWidget(parent, name ) { 29 : ConfigWidget(parent, name ) {
28 30
29 QVBoxLayout * layout = new QVBoxLayout( this ); 31 QVBoxLayout * layout = new QVBoxLayout( this );
32 layout->setMargin( 20 );
30 33
31 QFrame* Frame9 = new QFrame( this, "Frame9" ); 34 QHBox *box1 = new QHBox( this );
32 Frame9->setGeometry( QRect( -5, 0, 230, 310 ) );
33 Frame9->setFrameShape( QFrame::StyledPanel );
34 Frame9->setFrameShadow( QFrame::Raised );
35 35
36 QLabel* TextLabel6 = new QLabel( Frame9, "TextLabel6" ); 36 QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
37 TextLabel6->setGeometry( QRect( 20, 10, 100, 60 ) ); 37 TextLabel6->setText( tr( "How many\n tasks should \n"
38 TextLabel6->setText( tr( "How many\n"
39 "tasks should \n"
40 "be shown?" ) ); 38 "be shown?" ) );
41 39
42 SpinBox2 = new QSpinBox( Frame9, "SpinBox2" ); 40 SpinBox2 = new QSpinBox( box1, "SpinBox2" );
43 SpinBox2->setGeometry( QRect( 115, 20, 58, 25 ) ); 41 SpinBox2->setMaxValue( 40 );
44 SpinBox2->setMaxValue( 20 ); 42
45 SpinBox2->setValue( 5 ); 43 QHBox *box2 = new QHBox( this );
44
45 QLabel* clipLabel = new QLabel( box2, "" );
46 clipLabel->setText( tr( "Clip line after\n X chars" ) );
47
48 SpinBoxClip = new QSpinBox( box2, "SpinClip" );
49 SpinBoxClip->setMaxValue( 200 );
46 50
47 layout->addWidget( Frame9 ); 51 layout->addWidget( box1 );
52 layout->addWidget( box2 );
48 53
49 readConfig(); 54 readConfig();
50} 55}
51 56
52void TodolistPluginConfig::readConfig() { 57void TodolistPluginConfig::readConfig() {
53 Config cfg( "todaytodoplugin" ); 58 Config cfg( "todaytodoplugin" );
54 cfg.setGroup( "config" ); 59 cfg.setGroup( "config" );
55 m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 ); 60 m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 );
56 SpinBox2->setValue( m_max_lines_task ); 61 SpinBox2->setValue( m_max_lines_task );
62 m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 );
63 SpinBoxClip->setValue( m_maxCharClip );
57} 64}
58 65
59 66
60void TodolistPluginConfig::writeConfig() { 67void TodolistPluginConfig::writeConfig() {
61 Config cfg( "todaytodoplugin" ); 68 Config cfg( "todaytodoplugin" );
62 cfg.setGroup( "config" ); 69 cfg.setGroup( "config" );
63 m_max_lines_task = SpinBox2->value(); 70 m_max_lines_task = SpinBox2->value();
64 cfg.writeEntry( "maxlinestask", m_max_lines_task ); 71 cfg.writeEntry( "maxlinestask", m_max_lines_task );
72 m_maxCharClip = SpinBoxClip->value();
73 cfg.writeEntry( "maxcharclip", m_maxCharClip );
65 cfg.write(); 74 cfg.write();
66} 75}
67 76
68 77
69TodolistPluginConfig::~TodolistPluginConfig() { 78TodolistPluginConfig::~TodolistPluginConfig() {
70} 79}