summaryrefslogtreecommitdiff
authordrw <drw>2005-02-02 18:37:52 (UTC)
committer drw <drw>2005-02-02 18:37:52 (UTC)
commitc024777b6760a4e950e6df04a6e1e5894b0e3659 (patch) (unidiff)
treebe77bb8f1bc3bfe7ab961cfe0525979c8145139a
parent5b2a4d83b6b60cc9ca634aeb481cf15d70fc9b2f (diff)
downloadopie-c024777b6760a4e950e6df04a6e1e5894b0e3659.zip
opie-c024777b6760a4e950e6df04a6e1e5894b0e3659.tar.gz
opie-c024777b6760a4e950e6df04a6e1e5894b0e3659.tar.bz2
Minor update to work with new OPimMainWindow
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/mainwindow.cpp23
1 files changed, 12 insertions, 11 deletions
diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp
index 75da27c..9013522 100644
--- a/core/pim/todo/mainwindow.cpp
+++ b/core/pim/todo/mainwindow.cpp
@@ -64,19 +64,20 @@ _;:, .> :=|. This program is free software; you can
64using Opie::Core::OApplicationFactory; 64using Opie::Core::OApplicationFactory;
65OPIE_EXPORT_APP( OApplicationFactory<Todo::MainWindow> ) 65OPIE_EXPORT_APP( OApplicationFactory<Todo::MainWindow> )
66 66
67using namespace Opie; 67using namespace Opie;
68using namespace Todo; 68using namespace Todo;
69 69
70MainWindow::MainWindow( QWidget* parent, 70MainWindow::MainWindow( QWidget* parent,
71 const char* name, WFlags ) 71 const char* name, WFlags )
72 : Opie::OPimMainWindow( "Todolist", tr( "Todo List" ), "Todo List", tr( "Task" ), "todo", 72 : Opie::OPimMainWindow( "Todolist", "Todo List", tr( "Task" ), "todo",
73 parent, name, WType_TopLevel | WStyle_ContextHelp ) 73 parent, name, WType_TopLevel | WStyle_ContextHelp )
74{ 74{
75 setCaption( tr( "Todo List" ) );
75 if (!name) 76 if (!name)
76 setName("todo window"); 77 setName("todo window");
77 78
78 m_syncing = false; 79 m_syncing = false;
79 m_showing = false; 80 m_showing = false;
80 m_counter = 0; 81 m_counter = 0;
81 m_tempManager = new TemplateManager(); 82 m_tempManager = new TemplateManager();
82 m_tempManager->load(); 83 m_tempManager->load();
@@ -86,34 +87,34 @@ MainWindow::MainWindow( QWidget* parent,
86 initViews(); 87 initViews();
87 initActions(); 88 initActions();
88 initEditor(); 89 initEditor();
89 initShow(); 90 initShow();
90 91
91 raiseCurrentView(); 92 raiseCurrentView();
92 QTimer::singleShot( 0, this, SLOT(initStuff()) ); 93 QTimer::singleShot( 0, this, SLOT(initStuff()) );
93} 94}
94void MainWindow::initStuff() { 95void MainWindow::initStuff() {
95 m_todoMgr.load(); 96 m_todoMgr.load();
96 setViewCategory( m_curCat ); 97 setViewCategory( m_curCat );
97 setCategory( m_curCat ); 98 setCategory( m_curCat );
98} 99}
99void MainWindow::initActions() { 100void MainWindow::initActions() {
100 // Insert Task menu items 101 // Insert Task menu items
101 QActionGroup *items = new QActionGroup( this, QString::null, false ); 102 QActionGroup *items = new QActionGroup( this, QString::null, false );
102 103
103 m_deleteCompleteAction = new QAction( QString::null, QWidget::tr( "Delete completed" ), 104 m_deleteCompleteAction = new QAction( QString::null, QWidget::tr( "Delete completed" ),
104 0, items, 0 ); 105 0, items, 0 );
105 connect( m_deleteCompleteAction, SIGNAL(activated()), this, SLOT(slotDeleteCompleted()) ); 106 connect( m_deleteCompleteAction, SIGNAL(activated()), this, SLOT(slotDeleteCompleted()) );
106 107
107 insertItemMenuItems( items ); 108 insertItemMenuItems( items );
108 109
109 // Insert View menu items 110 // Insert View menu items
110 items = new QActionGroup( this, QString::null, false ); 111 items = new QActionGroup( this, QString::null, false );
111 112
112 m_completedAction = new QAction( QString::null, QWidget::tr("Show completed tasks"), 113 m_completedAction = new QAction( QString::null, QWidget::tr("Show completed tasks"),
113 0, items, 0, true ); 114 0, items, 0, true );
114 m_completedAction->setOn( showCompleted() ); 115 m_completedAction->setOn( showCompleted() );
115 connect( m_completedAction, SIGNAL(toggled(bool)), this, SLOT(slotShowCompleted(bool)) ); 116 connect( m_completedAction, SIGNAL(toggled(bool)), this, SLOT(slotShowCompleted(bool)) );
116 117
117 QAction *a = new QAction( QString::null, QWidget::tr("Show only over-due tasks"), 118 QAction *a = new QAction( QString::null, QWidget::tr("Show only over-due tasks"),
118 0, items, 0, true ); 119 0, items, 0, true );
119 a->setOn( showOverDue() ); 120 a->setOn( showOverDue() );
@@ -123,17 +124,17 @@ void MainWindow::initActions() {
123 0, items, 0, true ); 124 0, items, 0, true );
124 m_showDeadLineAction->setOn( showDeadline() ); 125 m_showDeadLineAction->setOn( showDeadline() );
125 connect( m_showDeadLineAction, SIGNAL(toggled(bool)), this, SLOT(slotShowDeadLine(bool)) ); 126 connect( m_showDeadLineAction, SIGNAL(toggled(bool)), this, SLOT(slotShowDeadLine(bool)) );
126 127
127 m_showQuickTaskAction = new QAction( QString::null, QWidget::tr("Show quick task bar"), 128 m_showQuickTaskAction = new QAction( QString::null, QWidget::tr("Show quick task bar"),
128 0, items, 0, true ); 129 0, items, 0, true );
129 m_showQuickTaskAction->setOn( showQuickTask() ); 130 m_showQuickTaskAction->setOn( showQuickTask() );
130 connect( m_showQuickTaskAction, SIGNAL(toggled(bool)), this, SLOT(slotShowQuickTask(bool)) ); 131 connect( m_showQuickTaskAction, SIGNAL(toggled(bool)), this, SLOT(slotShowQuickTask(bool)) );
131 132
132 insertViewMenuItems( items ); 133 insertViewMenuItems( items );
133} 134}
134/* m_curCat from Config */ 135/* m_curCat from Config */
135void MainWindow::initConfig() { 136void MainWindow::initConfig() {
136 Config config( "todo" ); 137 Config config( "todo" );
137 config.setGroup( "View" ); 138 config.setGroup( "View" );
138 m_completed = config.readBoolEntry( "ShowComplete", true ); 139 m_completed = config.readBoolEntry( "ShowComplete", true );
139 m_curCat = config.readEntry( "Category", QString::null ); 140 m_curCat = config.readEntry( "Category", QString::null );
@@ -142,17 +143,17 @@ void MainWindow::initConfig() {
142 m_quicktask = config.readBoolEntry("ShowQuickTask", true); 143 m_quicktask = config.readBoolEntry("ShowQuickTask", true);
143} 144}
144void MainWindow::initUI() { 145void MainWindow::initUI() {
145 // Create main widget stack 146 // Create main widget stack
146 m_stack = new Opie::Ui::OWidgetStack(this, "main stack"); 147 m_stack = new Opie::Ui::OWidgetStack(this, "main stack");
147 setCentralWidget( m_stack ); 148 setCentralWidget( m_stack );
148 connect( this, SIGNAL(categorySelected(const QString&)), 149 connect( this, SIGNAL(categorySelected(const QString&)),
149 this, SLOT(setCategory(const QString&)) ); 150 this, SLOT(setCategory(const QString&)) );
150 151
151 // Create quick task toolbar 152 // Create quick task toolbar
152 m_curQuick = new QuickEditImpl( this, m_quicktask ); 153 m_curQuick = new QuickEditImpl( this, m_quicktask );
153 addToolBar( (QToolBar *)m_curQuick->widget(), QWidget::tr( "QuickEdit" ), 154 addToolBar( (QToolBar *)m_curQuick->widget(), QWidget::tr( "QuickEdit" ),
154 QMainWindow::Top, true ); 155 QMainWindow::Top, true );
155 m_curQuick->signal()->connect( this, SLOT(slotQuickEntered()) ); 156 m_curQuick->signal()->connect( this, SLOT(slotQuickEntered()) );
156} 157}
157void MainWindow::initViews() { 158void MainWindow::initViews() {
158 159
@@ -194,27 +195,27 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder ) {
194 cat = -1; 195 cat = -1;
195 196
196 int filter = OPimTodoAccess::FilterCategory; 197 int filter = OPimTodoAccess::FilterCategory;
197 198
198 if (!m_completed ) 199 if (!m_completed )
199 filter |= OPimTodoAccess::DoNotShowCompleted; 200 filter |= OPimTodoAccess::DoNotShowCompleted;
200 if (m_overdue) 201 if (m_overdue)
201 filter |= OPimTodoAccess::OnlyOverDue; 202 filter |= OPimTodoAccess::OnlyOverDue;
202 203
203 return m_todoMgr.sorted( asc, sortOrder, filter, cat ); 204 return m_todoMgr.sorted( asc, sortOrder, filter, cat );
204} 205}
205OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder, int addFilter) { 206OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder, int addFilter) {
206 int cat = 0; 207 int cat = 0;
207 if ( m_curCat != tr( "All" ) ) 208 if ( m_curCat != tr( "All" ) )
208 cat = currentCatId(); 209 cat = currentCatId();
209 210
210 if ( m_curCat == tr( "Unfiled" ) ) 211 if ( m_curCat == tr( "Unfiled" ) )
211 cat = -1; 212 cat = -1;
212 213
213 return m_todoMgr.sorted(asc, sortOrder, addFilter, cat ); 214 return m_todoMgr.sorted(asc, sortOrder, addFilter, cat );
214} 215}
215OPimTodo MainWindow::event( int uid ) { 216OPimTodo MainWindow::event( int uid ) {
216 return m_todoMgr.event( uid ); 217 return m_todoMgr.event( uid );
217} 218}
218bool MainWindow::isSyncing()const { 219bool MainWindow::isSyncing()const {
219 return m_syncing; 220 return m_syncing;
220} 221}
@@ -293,17 +294,17 @@ void MainWindow::slotItemNew() {
293 // Create new task from the template selected 294 // Create new task from the template selected
294 OPimTodo event = templateManager()->templateEvent( tempName ); 295 OPimTodo event = templateManager()->templateEvent( tempName );
295 event = currentEditor()->edit( this, event ); 296 event = currentEditor()->edit( this, event );
296 if ( currentEditor()->accepted() ) { 297 if ( currentEditor()->accepted() ) {
297 event.setUid( 1 ); 298 event.setUid( 1 );
298 handleAlarms( OPimTodo(), event ); 299 handleAlarms( OPimTodo(), event );
299 m_todoMgr.add( event ); 300 m_todoMgr.add( event );
300 currentView()->addEvent( event ); 301 currentView()->addEvent( event );
301 302
302 reloadCategories(); 303 reloadCategories();
303 } 304 }
304 raiseCurrentView(); 305 raiseCurrentView();
305 } 306 }
306 } 307 }
307} 308}
308void MainWindow::slotItemEdit() { 309void MainWindow::slotItemEdit() {
309 slotEdit( currentView()->current() ); 310 slotEdit( currentView()->current() );
@@ -400,17 +401,17 @@ void MainWindow::slotDeleteCompleted() {
400} 401}
401/* 402/*
402 * set the category 403 * set the category
403 */ 404 */
404void MainWindow::setCategory( const QString &category ) { 405void MainWindow::setCategory( const QString &category ) {
405 m_curCat = category; 406 m_curCat = category;
406 if ( m_curCat == tr( "All" ) ) 407 if ( m_curCat == tr( "All" ) )
407 m_curCat = QString::null; 408 m_curCat = QString::null;
408 409
409 currentView()->setShowCategory( m_curCat ); 410 currentView()->setShowCategory( m_curCat );
410 raiseCurrentView(); 411 raiseCurrentView();
411} 412}
412void MainWindow::slotShowDeadLine( bool dead) { 413void MainWindow::slotShowDeadLine( bool dead) {
413 m_deadline = dead; 414 m_deadline = dead;
414 currentView()->setShowDeadline( dead ); 415 currentView()->setShowDeadline( dead );
415} 416}
416void MainWindow::slotShowCompleted( bool show) { 417void MainWindow::slotShowCompleted( bool show) {