Modified: desktop/trunk/docs/todo.txt (54 => 55)
--- desktop/trunk/docs/todo.txt 2006-12-02 03:09:08 UTC (rev 54)
+++ desktop/trunk/docs/todo.txt 2006-12-02 04:14:32 UTC (rev 55)
@@ -1,44 +1,36 @@
-Currently - major restructering to allow for modular style layout
+Current Integration:
+get customize toolbars working (need some treeview stuff done)
+character window abstracted out (because places will be almost exactly the same) and added back in (we were up to meta data there)
+about dialog base (similiar to splash base - just point to the files)
+drag onto windows implements import, drag off of windows implements export
+multiple window handling stuff to deal with characters/places items
+Completion Goals:
+
CC_Messages: add expander with treeview of trace information for errors
+Treeview improvements -
+DND - easy implementing dnd even when sorted, including highlight drop location and creating row image and reordering
+Editing - easy edit in place
+columns - easy reordering and choose columns to view
+right click - with edit, delete options
+basic printing with lpr (renderers not included)
+implement preferences - global date format, "new items" timeout time
-
-
-
-
-
-
-
-
-Tooltips - add private tips and use tipsquery to use them
-Add expander with backtrace for error message dialogs
-
-
-
-
-
-Before 1.0
-4. basic lpr based printing
-1. Preferences - global date format, "new items" timeout time
-
-Treeview Changes -
-1. Choose columns to view (including meta choices)
-2. Allow reordering columns
-5. Drag and drop functionality
-6. Edit in place functionality
-7. search functionality
-8. reorder list
-9. right click menu with common functions
-
Import/Export formats
.cwp (callicore writer project)
.txt (plain text...duh)
.sql (standard query language)
-After 1.0
+Basic plain text renderer for printing
+
+Integrate already finished code (custom models for project's chapter/scene previews et all)
+
+And don't forget to add "meta data options" editors
+
+After 1.0 Release
1. Edit Menu Support
a) Undo/Redo
b) Select All/None
Modified: desktop/trunk/lib/toolbar.class.php (54 => 55)
--- desktop/trunk/lib/toolbar.class.php 2006-12-02 03:09:08 UTC (rev 54)
+++ desktop/trunk/lib/toolbar.class.php 2006-12-02 04:14:32 UTC (rev 55)
@@ -288,5 +288,19 @@
unset($config, $action, $statusbar);
return;
}
+
+ /**
+ * public function onCustomize
+ *
+ * creates and runs a dialog to customize the toolbar
+ *
+ * @return void
+ */
+ public function onCustomize()
+ {
+ $window = new CC_Tooldialog($this);
+ $response = $window->run();
+ return;
+ }
}
?>
\ No newline at end of file