Changeset 7

Show
Ignore:
Timestamp:
07/04/05 09:22:57 (5 years ago)
Author:
cleber
Message:

Added main test code.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • umitGUI/HIGWidgets.py

    r4 r7  
    1414# along with this program; if not, write to the Free Software 
    1515# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     16 
     17import gtk 
    1618 
    1719class HIGWindow(gtk.Window): 
     
    6163def HIG_box_space_holder(): 
    6264        return gtk.Label("    ") 
     65 
     66if __name__ == '__main__': 
     67        w = HIGWindow() 
     68        w.connect("delete-event", lambda w, p: gtk.main_quit()) 
     69        w.show() 
     70        gtk.main()