Show
Ignore:
Timestamp:
07/31/07 21:14:31 (6 years ago)
Author:
kop-labs
Message:

Fix Bugs - Undo/Redo System (Delete Events)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branch/k0p/umitInterfaceEditor/Tools.py

    r1166 r1181  
    7474 
    7575        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         
    7784    def source_drag_data_get(self, btn, context, selection_data, info, time): 
    7885        selection_data.set(selection_data.target, 8, "I'm Data!") 
     
    8592        box.pack_start(self.button_spin, False, False) 
    8693        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) 
    8897         
    8998         
     
    99108        vp = gtk.Viewport() 
    100109        self._create_widgets() 
    101         vp.add(self._table) 
     110        vp.add(self._box) 
    102111        vp.set_shadow_type(gtk.SHADOW_NONE) 
    103112        self.add(vp) 
     
    107116        Create the main entrys of the option  
    108117        ''' 
     118        self._box = HIGVBox() 
     119         
    109120        self._table = HIGTable() 
    110121         
     
    115126        self._table.attach(self._entry_name, 1,2,0,1) 
    116127         
    117          
     128        self._box.pack_start(self._table, False, False) 
    118129         
    119130    def disable_all(self):