Update Turkish translation
[dasher.git] / Src / MacOSX / TODO
blob109eb1cc7d04e2ab08cdc96c29d59ae243dc7139
1 CONVERTING TO 4.0:
3 There's more recent doxygen pages at:
5 http://www.inference.phy.cam.ac.uk/pjc51/dasher_doxygen/
7 Although it's not very user friendly at the moment.
9 Basically the way things work right now is that you should subclass CDasherInterfaceBase, implementing all of the pure virtual functions which provide various bits and pieces which Dasher needs and which have platform dependent implementations. These are listed at:
11 http://www.inference.phy.cam.ac.uk/pjc51/dasher_doxygen/classDasher_1_1CDasherInterfaceBase.html
13 under 'Platform dependent utility functions'. The GTK implementation of these is CDasherControl, which might help explain what they're supposed to do. The general aim is for the CDasherInterfaceBase subclass to be something which can be treated as a custom user interface component in the appropriate platform toolkit (like a button or a list box). Once a drawing area has been created, a subclass of CDasherScreen should be created, and CDasherInterfaceBase::ChangeScreen should be called to tell the core about it.
15 Having created the custom UI component derived from CDasherInterfaceBase, embed it in the rest of the user interface as normal. Communication into the core is mainly through setting parameters (eg CDasherInterfaceBase::SetBoolParameter), which should cause instantaneous changes to Dasher's state. See Parameters.h for a list of all parameters (some of which are obsolete I'm afraid). Outbound messages are passed through CDasherInterfaceBase::ExternalEventHandler, which receives event objects which are either directly passed to a callback, or translated into platform dependent messages as would be used to eg notify an application that a menu item had been selected.
17 User input is now via child classes of CDasherInput, which allows a selection of drivers. See mouse_input.h for an example - it's fairly simple. These are instantiated in (subclasses ofCDasherInterfaceBase)::CreateModules. The objects themselves are singletons which have a reference in the interface used to update the current coordinates. You'll need to do reference counting here.
22 TODO
24 -  problems in rectangleCallbackX1, rectangles have negative coordinates - what do i do? ignore?  also, why is there a 42 vertical white stripe at the far left edge of dasher window?  is this related to the rects?  I discovered this when I stopped painting the whole view at the top of drawRect: assuming everything gets drawn - is this true?
25 - investigate NSWindow useOptimizedDrawing
26 - now that it notices what is the current app and avoids changing when it is Dasher, it could be made a normal app rather than one which avoids displaying the interface
27 - there are some calls to NSUserDefaults in DasherView which are called a lot.  Try to replace them with variables which somehow (notification?) get changed when the prefs change
28 - if the mouse doesn't move for a short time (a couple seconds) the pointer disappears.  This is correct behaviour in a text-editing app (and when I am dashing, because my app doesn't take focus, the system thinks a text-editing app has focus) but is not desired for Dasher - how to fix?
29 - add speech prefs - voice choice, lag?
30 - when speaking, how to handle backing up?
31 - start on spacebar doesn't work if focus is in the target app (which it had better always be!)
32 - tool bar to make up for menu being hard to get to
33 - detect not focusing on text field and either don't start or beep or what? by default it runs and beeps on every character - or maybe that _is_ the right behaviour?
34 - context from current document, detect changing focus to start a new context - is it good enough just to detect when they start dasher, or must we receive notifications of changing focus?  here's the plan: when they stop dashing, remember the current app/focused widget and selected text range.  When they start dashing, if new app/focus/range is same, keep with current context, otherwise, start a new context.  see if there's a selected range, if so, use that as the context, if not, select the last n chars, get selection, then put the selection back where it was.  use the n chars as the context.  this may not work in for example terminal, in which case the context will have to be 0 chars.
35 - shouldn't become current app on launch?
36 - "return" is \r rather than \n; i've currently hardcoded this, suggest per-platform xml config file
37 - shouldn't the code (currently in the GTK files) which decides when and what to speak be part of the core?  With a callback for actually speaking the string?
39 - i18n, strings need extracting from the app and nibs
40 - help text
41 - about box; make sure it has got the right copyright notices and credits
42 - keyboard control - pref is there, the actual kb handling (arrow keys) is not
43 - file encoding pref - is that needed on MacOSX, or something different?  see ProjectBuilder Format->File Encodings! for example
44 - reading a training file is rather slow.  this is especially noticeable when it is read at startup, the icon bounces about 10 times rather than just 1 or 2
45 - need pretty splash window at startup to hide training file loading time.  or, could the Dasher window itself come up, inactive with a barber pole working indicator?
46 - remove prefs UI for unsupported stuff like eye tracker
47 - have a "preview" pane in the dasher window where the last n characters are displayed.  Allow user to choose font.  also could allow user to position at bottom or top of dasher window.  n defined by user?  how does this differ from putting the dasher panel over the text window?
49 (NICE TO HAVE)
50 - make an image with "paused" in it, display that when it is paused
52 (BUGS)
53 - should display displayName rather than fontName in font pref
55 (ANNOYANCE)
56 - .inl files are being put in the app under Resources because PB doesn't recognise .inl
57 - because the caches in DasherView are lazily initialised, there is a noticeable hesitancy in the first few seconds.  Could be fixed by having the caches initialised at startup and on font change.  Would require being able to get a list of all the font sizes and all the characters in the alphabet from the Core.
58 - suppose the timer is firing 20 times per second.  But the app is working slower than that, say 15 fps.  Well, the overall speed will be about 10-12 fps!  I think this is because of the overhead of all those extra timers.  Maybe the timer rate should be adjusted dynamically depending on the fps?  Would require being able to get the fps from the Core.  It doesn't really make sense to hard-code the timer firing rate in the app - it depends on how fast the machine is and how much other work it is doing.  I know Windows machines won't be doing much else, but Macs have a plethora of other, important work to be getting on with!
60 DONE
62 20-11-2004
63 - oops, made a bunch of changes without mentioning them, ummm, let's see
64 - got rid of multi-document stuff, main goal now is to type into other apps
65 - added the unbelievable overhead of the keyboard stuff to generate keycodes to send to other apps.  From reading Apple mailing lists, and looking at other programs (such as VNC clients) this is the only way to do this.  Most of the code I've added to do this is lifted (with attribution) from elsewhere.
66 - changed local event suppression to .1 sec so as not to miss mouse downs shortly after sending a character to the target app
68 6-10-2004
69 - changed name of editing app to DasherEditor
70 - removed old Dasher target
71 - removed Credits.rtf added Credits.html for clickable links in about box
73 21-08-2004
74 - changed colour mode to an "internal preference" ie because we support it, it is turned on; the user cannot control it.
76 29-02-2004
77 - add new preferences to panel: uniform, draw position line, eye tracker, control mode, colour mode, keyboard mode, mouse position start, speech, outline, palette change, colour scheme choosing
78 - search system and user preference dirs for alphabets and colours
79 - use new colour scheme; get rid of old colour scheme stuff
80 - get rid of lots of compiler warnings, mostly by putting method defs in .h files
82 05-06-2003
83 - put the English training file into the app's resources
84 - changed USERDIR from ~/.dasher to ~/Library/Application Support/Dasher
85 - cleaned up a large number of compiler warnings in DasherView (mostly by putting method declarations in DasherView.h)
86 - in DasherView, now instantiate colours in init and re-use
87 - fixed problems with rects for non left to right view orientation (see bugzilla report)
89 02-06-2003
90 - dasher timestamp pref removed from panel - not sure what it does, but the NSDocument architecture already has quite sophisticated timestamping, so we'll trust that
91 - implemented pause outside window functionality and preference
92 - major changes.  Dasher is now a multi-document application.  The dasher panel sits above all windows, and can be used to input text into the current document.  Added DasherController and TextDocument and DasherMenu classes and TextDocument nib files.  MainMenu.nib is no longer used.  The only type of document currently supported is text (.txt or .text).
94 01-06-2003
95 - refactored all dasher related functionality into DasherView
96 - created DasherUtil for utility functions
98 31-05-2003
99 - separated edit functionality into DasherEdit; new context, delete, flush, unflush should all work correctly now (i hope?)
101 30-05-2003
102 - in ZippyString, the image was over-retained
103 - strings of len > 1 are not cached nor have images created
104 - fixed bug where resizing blanked dasher view.  Too much flushing of rect and text caches.
106 26-05-2003
107 - masses of performance improvements.  Added ZippyCache.[hm] and ZippyString.[hm] and modified DasherView.  This is what has changed:
108      * in the drawing callbacks (text, rectangle, polyline), drawing isn't actually done, data is just saved to be rendered later
109      * characters are looked up in ZippyCache, if the character is not there, it is stored; and the character is rendered into an offscreen image; the image is what is rendered to the screen.
110      * the dispolayCallback tells the view machinery to display the view; the drawRect: method goes through the above caches rendering the rects, texts and polylines
111      * this reduces CPU consumption by from 30% - 50%; it seems to be able to render a steady 150 rects + 150 chars at 20 fps
112      
113 30-04-2003
114 - expat now linked in explicitly rather than with -l, so users don't have to install expat separately
115 - now handles foreign alphabets correctly; uses stringWithUTF8String rather than stringWithCString in function NSStringFromStdString
116 - range of speed slider now 0 - 8 to match other implementations
118 29-04-2003
119 - editbox no longer crashes in unflush when the number of flushed characters is larger than the number of characters in the edit box.
121 28-04-2003
122 - added the parameter_xxx_callback functions; now works correctly if user hasn't any Dasher defaults.
123 - initialise dasher at the size of DasherView stored in the nib, NOT 10, 10.
125 26-4-2003
126 - edit font pref
127 - speed is correctly set on app startup
128 - dasher font & font size is selectable in prefs
129 - put dasher font on appearance; edit font on files, got rid of fonts tab in prefs
130 - add standard text menus & editing functions for use in edit box
132 25-4-2003 
133 - user can select alphabet in preferences
134 - sets system and user dirs, system dir is resourcePath inside the app; user dir is ~/.dasher/.
135 - displays the edit text rather than the display text in the edit box 
136 - kb control pref, but doesn't do anything (the pref is saved and restored correctly)
137 - app icon added (DasherApp.icns from Iain Murray)
138 - copy all on stop works
139 - other clipboard functions implemented, not tested
140 - dasher font size pref