summaryrefslogtreecommitdiff
path: root/core/pim/todo/mainwindow.cpp
AgeCommit message (Collapse)AuthorFilesLines
2004-11-18-Kill owarn statements from the codezecke1-13/+3
-Kill magic numbers and use enum values
2004-04-28Removed static cast which is not working with the new modifications ofeilers1-1/+2
the opie-pim api
2004-04-04fix up owarn usagezecke1-20/+22
2004-04-02Use ODebug (another 35 down...) - all of core/pim is converted.drw1-9/+10
2004-03-14Make use of ODP namespacezecke1-1/+3
2004-03-02fixed up todlist to work again. The segfault resulted due a real ugly ↵alwin1-1/+1
code-style: Never, realy never, use "using namespace <...>" inside a include file. Ever use "Opie::<class>" or such inside include files. Think twice, before using a "use namespace <...>" inside a c++ file. If you're using it just 3,4 times, write "Opie::<class>::<variable>" or such. If you just simple write a using namespace all the time it makes the idea of namespaces obsolete. Mostly: just integrate your OWN namespace (in that case use namespace Todo;) - but try to use all other namespaces the explicit way - so you will sure that the compiler inherits the right methods. ToDo: write this statement into the developer wiki
2004-03-02run the optimize_connect scriptalwin1-1/+1
the whole cvs is tagged with "before_optimize_connect" if there are problems you can check the diff (but it had compiled and run here)
2004-03-01fix includeschicken1-6/+0
2004-02-25Todo: libopie->libopie2drw1-50/+48
2004-02-07QPEApplication::showDialog() and QPEAPplication::execDialog() for better big ↵ar1-2/+1
screen handling
2003-12-07s/QPEToolBar/QToolBar:mickeyl1-1/+1
- remove usage of deprecated classses - makes it easier to migrate to OToolBar in the future
2003-10-07If you decide to close the mainwindow and have say editor and views open as wellzecke1-1/+1
call closeAllWindows() after all events are dispatched
2003-09-06-Switch to OWidgetStack actually only three lines touch by thiszecke1-1/+6
-the really quit on closeEvent and don't wait for the last window -use setName eases debugging
2003-08-27-Convert to quick launch as an examplezecke1-3/+7
-Fix a bug. If flush() is called m_syncing = true and on reload m_syncing = false
2003-08-01Merging changes from BRANCH_1_0 to HEADeilers1-26/+110
2003-05-12Hospital Hacking Sessionzecke1-2/+131
make more translatable fix up GUI for Opie1.0 in regards what is implemnted implement setting and removing of Alarms!!!! Show Alarms once they got fired...
2003-05-07one morezecke1-1/+1
2003-04-10have icons on the right sideharlekin1-4/+8
2003-03-14Do not crash when trying to edit and there is no datazecke1-1/+2
2003-02-22shutup todolist while runningzecke1-1/+1
remove the transport thingie..
2003-02-11Add switching the views with the ActionKey..zecke1-3/+6
2003-01-29Changed some code to make all strings translatablegroucho1-50/+50
2002-12-22QWhatsThis for main task view and toolbars.drw1-9/+11
2002-12-21Main task view updates.drw1-4/+2
2002-12-20First part of GUI clean-up. Added icons to 'quick task' entry toolbar and ↵drw1-27/+43
menu choice to show/hide the bar.
2002-12-10Shut up the compilerzecke1-8/+2
2002-11-30Back from hospital with new powerzecke1-57/+156
This versions clean up m failure on templates with Qt... in todoview Implements Recurrance( backends to not safe it yet ) OPimState and Maintainer mode in some ways and much more This one also implements the OPimMainWindow specs and has a small Memu replacement to get the toolbar in one line
2002-10-25MainWindow i18n change 'Show only over due' to avoid misunderstandingzecke1-1/+1
then 'share' and 'preload' the taskeditor on first request it'll be created but on destroyed until Destruction the interface. This will happen when the apps quits. This should speed up editing and entering quite a lot
2002-10-21Now it should compile just finezecke1-1/+0
2002-10-21Fix a bug where newly added items did not show up in the viewzecke1-1/+2
Now we add the Entry to the backend first and then update the view next step is to make place for the new EditorWidget It features Completed/Start Date State Began, Postponed... Maintainer Mode: needs to be done by... Maintainer: Choose a person who is responsible for ( once implemented I hope he master of our feeds is happy ) Recurrance Widget Alarms + Reminders Widget Parent to be added Most of it is not implemented cause first of all OTodo does not know anything about these attributes but this will change soon. I'll start to implement it very soon
2002-10-19Fix crash if todolist is emptyzecke1-3/+26
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
2002-10-19MainWindow setReadAhead addedzecke1-0/+4
Tableview we now try to read ahead in timerEvent.. the TodoView interface needs an update on this matter too... besides that I'm quite happy with the speed and go on to implement new features
2002-10-13Implement beaming and adding of todos. Use the vCal resource for thatzecke1-6/+46
2002-10-13Speed Speed Speed...zecke1-3/+4
main.cpp disabled messagehandler.. TableView: do not update View from setCategory if category was not changed and if not first setCategory Inline editing is working again current is working too Fixed sorting MainWindow: Show Event and Edit event does work again Try to avoid calling sorted or allRecords unneeded... 10.000 todos on SQL does feel fast I need to get it down some more... maybe tweaking libsqlite a bit ( some compiler switches and disable asserts ) Before I implement new features I want to get down to 2-3 seconds loading of Data The UI will instantly pop up and then load the stuff within seconds
2002-10-07Fix bug with category ids in sortedzecke1-2/+2
2002-10-07We're now using a home made painting of cellszecke1-1/+2
This will theoretically speed up things Currently it's noticeable slower on SQL Cause we do up to 80 queries for 10 different items. As you see a cache could be the answer to these problems. The reason for custom drawing is speed and memory consumption. Take the unlikely case of 10.000 items We would have 40.000 QTableItem but would only show 40 of them at a time. The rest seems to be wasted
2002-10-07TodoView is a mess because I tried hard to makezecke1-8/+24
it work with templates... I've to clean this up Then I made the way free to use sorted my next step is to make the paint hack work
2002-10-07Re add fileszecke1-0/+621
for todo
2002-10-07make place for the new todozecke1-634/+0
2002-07-10Fix "delete all" message boxleseb1-1/+1
2002-07-10Fix "view" menu itemleseb1-0/+6
2002-06-17Fool Qt and fool QtDesigner to unfuck the designer .ui *evilgrin*zecke1-1/+1
2002-06-17fix overlappingzecke1-0/+1
2002-06-15Summary supportzecke1-1/+1
2002-05-09Patch from Stefan Eilers to make the Table align better and the viewing of ↵zecke1-0/+3
events more easy
2002-04-30- no default arguments in method implementationssimon1-1/+1
2002-04-29Create an Event. And modify it and try to view itzecke1-1/+2
The Event gets "losed" this was reported by Stefan Eilers Currently I'm searching my brown paper bag but I just wanted to say I fixed it it was introduced with the change from Task-> ToDoDB
2002-04-28Patch from Stefan Eilers to raise the Tablewidget when searching and finding ;)zecke1-0/+2
2002-04-23Patch from Stefan Eilers for overviewzecke1-9/+59
merged by hand
2002-04-15journal is in place againzecke1-1/+1