Changeset 1181 for branch/k0p/umitInterfaceEditor/Tools.py
- Timestamp:
- 07/31/07 21:14:31 (6 years ago)
- Files:
-
- 1 modified
-
branch/k0p/umitInterfaceEditor/Tools.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branch/k0p/umitInterfaceEditor/Tools.py
r1166 r1181 74 74 75 75 self.button_spin = HIGButton('Option Check') 76 self.button_path = HIGButton('Path') 76 self.button_path = HIGButton('Choose Path') 77 self.button_text_entry = HIGButton('String') 78 self.button_float = HIGButton('Float Spin') 79 80 self.button_level = HIGButton('Level Spin') 81 self.button_interface = HIGButton('Interface') 82 self.button_integer = HIGButton('Integer Spin ') 83 77 84 def source_drag_data_get(self, btn, context, selection_data, info, time): 78 85 selection_data.set(selection_data.target, 8, "I'm Data!") … … 85 92 box.pack_start(self.button_spin, False, False) 86 93 box.pack_start(self.button_path, False, False) 87 94 box.pack_start(self.button_float, False, False) 95 box.pack_start(self.button_integer, False, False) 96 box.pack_start(self.button_level, False, False) 88 97 89 98 … … 99 108 vp = gtk.Viewport() 100 109 self._create_widgets() 101 vp.add(self._ table)110 vp.add(self._box) 102 111 vp.set_shadow_type(gtk.SHADOW_NONE) 103 112 self.add(vp) … … 107 116 Create the main entrys of the option 108 117 ''' 118 self._box = HIGVBox() 119 109 120 self._table = HIGTable() 110 121 … … 115 126 self._table.attach(self._entry_name, 1,2,0,1) 116 127 117 128 self._box.pack_start(self._table, False, False) 118 129 119 130 def disable_all(self):
