author | drw <drw> | 2005-02-02 18:37:52 (UTC) |
---|---|---|
committer | drw <drw> | 2005-02-02 18:37:52 (UTC) |
commit | c024777b6760a4e950e6df04a6e1e5894b0e3659 (patch) (unidiff) | |
tree | be77bb8f1bc3bfe7ab961cfe0525979c8145139a | |
parent | 5b2a4d83b6b60cc9ca634aeb481cf15d70fc9b2f (diff) | |
download | opie-c024777b6760a4e950e6df04a6e1e5894b0e3659.zip opie-c024777b6760a4e950e6df04a6e1e5894b0e3659.tar.gz opie-c024777b6760a4e950e6df04a6e1e5894b0e3659.tar.bz2 |
Minor update to work with new OPimMainWindow
-rw-r--r-- | core/pim/todo/mainwindow.cpp | 23 |
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 | |||
@@ -70,7 +70,8 @@ using namespace Todo; | |||
70 | MainWindow::MainWindow( QWidget* parent, | 70 | MainWindow::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"); |
@@ -92,5 +93,5 @@ MainWindow::MainWindow( QWidget* parent, | |||
92 | QTimer::singleShot( 0, this, SLOT(initStuff()) ); | 93 | QTimer::singleShot( 0, this, SLOT(initStuff()) ); |
93 | } | 94 | } |
94 | void MainWindow::initStuff() { | 95 | void MainWindow::initStuff() { |
95 | m_todoMgr.load(); | 96 | m_todoMgr.load(); |
96 | setViewCategory( m_curCat ); | 97 | setViewCategory( m_curCat ); |
@@ -100,14 +101,14 @@ void 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 ); |
@@ -129,5 +130,5 @@ void MainWindow::initActions() { | |||
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 | } |
@@ -148,5 +149,5 @@ void MainWindow::initUI() { | |||
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 ); |
@@ -200,5 +201,5 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder ) { | |||
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 | } |
@@ -210,5 +211,5 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder, int addFilter) | |||
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 | } |
@@ -299,5 +300,5 @@ void MainWindow::slotItemNew() { | |||
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 | } |
@@ -406,5 +407,5 @@ void MainWindow::setCategory( const QString &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(); |