-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 @@ -68,11 +68,12 @@ using namespace Opie; using namespace Todo; MainWindow::MainWindow( QWidget* parent, const char* name, WFlags ) - : Opie::OPimMainWindow( "Todolist", tr( "Todo List" ), "Todo List", tr( "Task" ), "todo", + : Opie::OPimMainWindow( "Todolist", "Todo List", tr( "Task" ), "todo", parent, name, WType_TopLevel | WStyle_ContextHelp ) { + setCaption( tr( "Todo List" ) ); if (!name) setName("todo window"); m_syncing = false; @@ -90,26 +91,26 @@ MainWindow::MainWindow( QWidget* parent, raiseCurrentView(); QTimer::singleShot( 0, this, SLOT(initStuff()) ); } -void MainWindow::initStuff() { +void MainWindow::initStuff() { m_todoMgr.load(); setViewCategory( m_curCat ); setCategory( m_curCat ); } void MainWindow::initActions() { // Insert Task menu items QActionGroup *items = new QActionGroup( this, QString::null, false ); - + m_deleteCompleteAction = new QAction( QString::null, QWidget::tr( "Delete completed" ), 0, items, 0 ); connect( m_deleteCompleteAction, SIGNAL(activated()), this, SLOT(slotDeleteCompleted()) ); - insertItemMenuItems( items ); + insertItemMenuItems( items ); // Insert View menu items items = new QActionGroup( this, QString::null, false ); - + m_completedAction = new QAction( QString::null, QWidget::tr("Show completed tasks"), 0, items, 0, true ); m_completedAction->setOn( showCompleted() ); connect( m_completedAction, SIGNAL(toggled(bool)), this, SLOT(slotShowCompleted(bool)) ); @@ -127,9 +128,9 @@ void MainWindow::initActions() { m_showQuickTaskAction = new QAction( QString::null, QWidget::tr("Show quick task bar"), 0, items, 0, true ); m_showQuickTaskAction->setOn( showQuickTask() ); connect( m_showQuickTaskAction, SIGNAL(toggled(bool)), this, SLOT(slotShowQuickTask(bool)) ); - + insertViewMenuItems( items ); } /* m_curCat from Config */ void MainWindow::initConfig() { @@ -146,9 +147,9 @@ void MainWindow::initUI() { m_stack = new Opie::Ui::OWidgetStack(this, "main stack"); setCentralWidget( m_stack ); connect( this, SIGNAL(categorySelected(const QString&)), this, SLOT(setCategory(const QString&)) ); - + // Create quick task toolbar m_curQuick = new QuickEditImpl( this, m_quicktask ); addToolBar( (QToolBar *)m_curQuick->widget(), QWidget::tr( "QuickEdit" ), QMainWindow::Top, true ); @@ -198,9 +199,9 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder ) { if (!m_completed ) filter |= OPimTodoAccess::DoNotShowCompleted; if (m_overdue) filter |= OPimTodoAccess::OnlyOverDue; - + return m_todoMgr.sorted( asc, sortOrder, filter, cat ); } OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder, int addFilter) { int cat = 0; @@ -208,9 +209,9 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder, int addFilter) cat = currentCatId(); if ( m_curCat == tr( "Unfiled" ) ) cat = -1; - + return m_todoMgr.sorted(asc, sortOrder, addFilter, cat ); } OPimTodo MainWindow::event( int uid ) { return m_todoMgr.event( uid ); @@ -297,9 +298,9 @@ void MainWindow::slotItemNew() { event.setUid( 1 ); handleAlarms( OPimTodo(), event ); m_todoMgr.add( event ); currentView()->addEvent( event ); - + reloadCategories(); } raiseCurrentView(); } @@ -404,9 +405,9 @@ void MainWindow::slotDeleteCompleted() { void MainWindow::setCategory( const QString &category ) { m_curCat = category; if ( m_curCat == tr( "All" ) ) m_curCat = QString::null; - + currentView()->setShowCategory( m_curCat ); raiseCurrentView(); } void MainWindow::slotShowDeadLine( bool dead) { |