Changeset 7
- Timestamp:
- 07/04/05 09:22:57 (5 years ago)
- Files:
-
- 1 modified
-
umitGUI/HIGWidgets.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
umitGUI/HIGWidgets.py
r4 r7 14 14 # along with this program; if not, write to the Free Software 15 15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 17 import gtk 16 18 17 19 class HIGWindow(gtk.Window): … … 61 63 def HIG_box_space_holder(): 62 64 return gtk.Label(" ") 65 66 if __name__ == '__main__': 67 w = HIGWindow() 68 w.connect("delete-event", lambda w, p: gtk.main_quit()) 69 w.show() 70 gtk.main()
