Changeset 101

Show
Ignore:
Timestamp:
12/21/07 18:59:29
Author:
slee
Message:

last few changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • action_groups/trunk/ChangeLog

    r100 r101  
    1 2007-12-20  Eitan Isaacson  <eitan@ascender.com> 
     12007-12-21  SteveLee  <steve@fullmeasure.co.uk> 
     2 
     3        Big reorganisation for release 0.0.1 tarball and distutils 
     4 
     52007-12-20  SteveLee  <steve@fullmeasure.co.uk> 
    26 
    37        * Added CHANGES, LICENSE, AUTHORS 
  • action_groups/trunk/README

    r100 r101  
    55 
    66This version works with GTK accessibile apps and has been tested with gedit. 
     7Minefield has partial support. 
    78 
    89Dependencies 
     
    1819Installing 
    1920---------- 
    20 1) Unzip the tarbal (e.g tar xvf jambuinapp-0.0.1.tar.gz) 
     211) Unzip the tarball (e.g tar xvf jambuinapp-0.0.1.tar.gz) 
    21222) cd (e.g. cd jambuinapp-0.0.1) 
    22233) python setup.py install (note run as root or sudo) 
     
    3031Gestures 
    3132-------- 
    32 Thanks to Eitan Isaacson you can operate using the keyboard 
    33  
    3433next item -> Left Ctrl key, USB Switch 0 or 4, middle mouse button 
    3534action item -> space key, USB switch 1 or 6, right mouse button 
     35 
     36Auto scan may be started/stopped with the 'Start Scan' button. 
    3637 
    3738For mouse you need to leave the pointer in the spaces between the buttons and menus do not display properly as the mouse interferes. 
     
    4243menus have suddenly started to re-appear - have a hack but need to resolve. 
    4344The blinking rect is temporary so just ignore the artifacts that get left around. 
     45 
     46Web site 
     47-------- 
     48http://www.oatsoft.org/trac/jambu 
     49 
  • action_groups/trunk/src/jambu/ActionBrowser.py

    r98 r101  
    9292    bottom_hbox.pack_start(generate_button, False) 
    9393 
    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) 
    9798 
    9899    scan_button = gtk.Button('Start _Scan', use_underline=True)