summaryrefslogtreecommitdiff
path: root/core/pim/todo/mainwindow.h
authorzecke <zecke>2002-10-19 02:32:30 (UTC)
committer zecke <zecke>2002-10-19 02:32:30 (UTC)
commit47ea36b68b6c7f12ae3bb777c89d813b4e1360a3 (patch) (side-by-side diff)
treed25ec05f1ccf0db36194d5f2879fe543a34620c2 /core/pim/todo/mainwindow.h
parent7871e87fbd796c57374b23ec91890962b2ef1fe9 (diff)
downloadopie-47ea36b68b6c7f12ae3bb777c89d813b4e1360a3.zip
opie-47ea36b68b6c7f12ae3bb777c89d813b4e1360a3.tar.gz
opie-47ea36b68b6c7f12ae3bb777c89d813b4e1360a3.tar.bz2
Fix crash if todolist is empty
Fix paint update bugs.. knewly created items did not show up. an sort() QTable::update() is and was not enough A new feature. It's a quick entering method. It lacks icons and some more stuff but I like it Now redoing the Editor Dialog
Diffstat (limited to 'core/pim/todo/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/mainwindow.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/core/pim/todo/mainwindow.h b/core/pim/todo/mainwindow.h
index 5a18e64..270cbd1 100644
--- a/core/pim/todo/mainwindow.h
+++ b/core/pim/todo/mainwindow.h
@@ -39,2 +39,3 @@
#include "todoview.h"
+#include "quickedit.h"
#include "todomanager.h"
@@ -47,3 +48,3 @@ class QWidgetStack;
class Ir;
-
+class QVBox;
@@ -55,2 +56,3 @@ namespace Todo {
class TemplateEditor;
+ struct QuickEditBase;
@@ -85,2 +87,3 @@ namespace Todo {
TemplateManager* templateManager();
+ QuickEditBase* quickEditor();
@@ -91,2 +94,3 @@ namespace Todo {
private slots:
+ void slotQuickEntered();
void populateCategories();
@@ -111,2 +115,3 @@ private slots:
ViewBase* m_curView;
+ QuickEditBase* m_curQuick;
Editor* m_curEdit;
@@ -135,2 +140,9 @@ private slots:
*m_template;
+ /* box with two rows
+ * top will be the quick edit
+ * this will bite my ass once
+ * we want to have all parts
+ * exchangeable
+ */
+ QVBox* m_mainBox;
@@ -143,2 +155,3 @@ private slots:
QList<ViewBase> m_views;
+ QList<QuickEditBase> m_quickEdit;
uint m_counter;
@@ -146,2 +159,3 @@ private slots:
+
private slots: