Changeset 101
- Timestamp:
- 12/21/07 18:59:29
- Files:
-
- action_groups/trunk/ChangeLog (modified) (1 diff)
- action_groups/trunk/README (modified) (4 diffs)
- action_groups/trunk/src/jambu/ActionBrowser.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
action_groups/trunk/ChangeLog
r100 r101 1 2007-12-20 Eitan Isaacson <eitan@ascender.com> 1 2007-12-21 SteveLee <steve@fullmeasure.co.uk> 2 3 Big reorganisation for release 0.0.1 tarball and distutils 4 5 2007-12-20 SteveLee <steve@fullmeasure.co.uk> 2 6 3 7 * Added CHANGES, LICENSE, AUTHORS action_groups/trunk/README
r100 r101 5 5 6 6 This version works with GTK accessibile apps and has been tested with gedit. 7 Minefield has partial support. 7 8 8 9 Dependencies … … 18 19 Installing 19 20 ---------- 20 1) Unzip the tarbal (e.g tar xvf jambuinapp-0.0.1.tar.gz)21 1) Unzip the tarball (e.g tar xvf jambuinapp-0.0.1.tar.gz) 21 22 2) cd (e.g. cd jambuinapp-0.0.1) 22 23 3) python setup.py install (note run as root or sudo) … … 30 31 Gestures 31 32 -------- 32 Thanks to Eitan Isaacson you can operate using the keyboard33 34 33 next item -> Left Ctrl key, USB Switch 0 or 4, middle mouse button 35 34 action item -> space key, USB switch 1 or 6, right mouse button 35 36 Auto scan may be started/stopped with the 'Start Scan' button. 36 37 37 38 For mouse you need to leave the pointer in the spaces between the buttons and menus do not display properly as the mouse interferes. … … 42 43 menus have suddenly started to re-appear - have a hack but need to resolve. 43 44 The blinking rect is temporary so just ignore the artifacts that get left around. 45 46 Web site 47 -------- 48 http://www.oatsoft.org/trac/jambu 49 action_groups/trunk/src/jambu/ActionBrowser.py
r98 r101 92 92 bottom_hbox.pack_start(generate_button, False) 93 93 94 examine_button = gtk.Button('E_xamine', use_underline=True) 95 examine_button.connect('clicked', self._onExamine) 96 bottom_hbox.pack_start(examine_button, False) 94 if is_plugin: 95 examine_button = gtk.Button('E_xamine', use_underline=True) 96 examine_button.connect('clicked', self._onExamine) 97 bottom_hbox.pack_start(examine_button, False) 97 98 98 99 scan_button = gtk.Button('Start _Scan', use_underline=True)
