summaryrefslogtreecommitdiff
authordrw <drw>2005-02-02 18:37:52 (UTC)
committer drw <drw>2005-02-02 18:37:52 (UTC)
commitc024777b6760a4e950e6df04a6e1e5894b0e3659 (patch) (side-by-side diff)
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
@@ -60,103 +60,104 @@ _;:, .> :=|. This program is free software; you can
#include "todoeditor.h"
#include "newtaskdlg.h"
#include "mainwindow.h"
using Opie::Core::OApplicationFactory;
OPIE_EXPORT_APP( OApplicationFactory<Todo::MainWindow> )
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;
m_showing = false;
m_counter = 0;
m_tempManager = new TemplateManager();
m_tempManager->load();
initConfig();
initUI();
initViews();
initActions();
initEditor();
initShow();
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)) );
QAction *a = new QAction( QString::null, QWidget::tr("Show only over-due tasks"),
0, items, 0, true );
a->setOn( showOverDue() );
connect( a, SIGNAL(toggled(bool)), this, SLOT(slotShowDue(bool)) );
m_showDeadLineAction = new QAction( QString::null, QWidget::tr("Show task deadlines"),
0, items, 0, true );
m_showDeadLineAction->setOn( showDeadline() );
connect( m_showDeadLineAction, SIGNAL(toggled(bool)), this, SLOT(slotShowDeadLine(bool)) );
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() {
Config config( "todo" );
config.setGroup( "View" );
m_completed = config.readBoolEntry( "ShowComplete", true );
m_curCat = config.readEntry( "Category", QString::null );
m_deadline = config.readBoolEntry( "ShowDeadLine", true);
m_overdue = config.readBoolEntry("ShowOverDue", false );
m_quicktask = config.readBoolEntry("ShowQuickTask", true);
}
void MainWindow::initUI() {
// Create main widget stack
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 );
m_curQuick->signal()->connect( this, SLOT(slotQuickEntered()) );
}
void MainWindow::initViews() {
TableView* tableView = new TableView( this, m_stack );
QWhatsThis::add( tableView, QWidget::tr( "This is a listing of all current tasks.\n\nThe list displays the following information:\n1. Completed - A green checkmark indicates task is completed. Click here to complete a task.\n2. Priority - a graphical representation of task priority. Double-click here to modify.\n3. Description - description of task. Click here to select the task.\n4. Deadline - shows when task is due. This column can be shown or hidden by selecting Options->'Show task deadlines' from the menu above." ) );
m_stack->addWidget( tableView, m_counter++ );
m_views.append( tableView );
@@ -190,35 +191,35 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder ) {
int cat = 0;
if ( m_curCat != tr( "All" ) )
cat = currentCatId();
if ( m_curCat == tr( "Unfiled" ) )
cat = -1;
int filter = OPimTodoAccess::FilterCategory;
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;
if ( m_curCat != tr( "All" ) )
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 );
}
bool MainWindow::isSyncing()const {
return m_syncing;
}
TemplateManager* MainWindow::templateManager() {
return m_tempManager;
}
Editor* MainWindow::currentEditor() {
@@ -289,25 +290,25 @@ void MainWindow::slotItemNew() {
if ( tempName.isNull() )
// Create new, blank task
create();
else {
// Create new task from the template selected
OPimTodo event = templateManager()->templateEvent( tempName );
event = currentEditor()->edit( this, event );
if ( currentEditor()->accepted() ) {
event.setUid( 1 );
handleAlarms( OPimTodo(), event );
m_todoMgr.add( event );
currentView()->addEvent( event );
-
+
reloadCategories();
}
raiseCurrentView();
}
}
}
void MainWindow::slotItemEdit() {
slotEdit( currentView()->current() );
}
void MainWindow::slotItemDuplicate() {
if(m_syncing) {
QMessageBox::warning(this, QWidget::tr("Todo"),
@@ -396,25 +397,25 @@ void MainWindow::slotDeleteCompleted() {
m_todoMgr.removeCompleted();
currentView()->updateView( );
}
/*
* set the category
*/
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) {
m_deadline = dead;
currentView()->setShowDeadline( dead );
}
void MainWindow::slotShowCompleted( bool show) {
m_completed = show;
currentView()->setShowCompleted( m_completed );
}
void MainWindow::slotShowQuickTask( bool show ) {