Changeset 91bdf87 in sasview


Ignore:
Timestamp:
Mar 23, 2011 5:27:21 PM (14 years ago)
Author:
Gervaise Alina <gervyh@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
dfd3577
Parents:
be56c8c
Message:

working on datapanel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/data_panel.py

    rbe56c8c r91bdf87  
    2323#PANEL_HEIGHT = 560 
    2424PANEL_HEIGHT = 800 
     25STYLE_FLAG = wx.SUNKEN_BORDER|CT.TR_HAS_BUTTONS| CT.TR_HIDE_ROOT|\ 
     26                    wx.WANTS_CHARS|CT.TR_HAS_VARIABLE_ROW_HEIGHT 
     27                     
     28                     
    2529class DataTreeCtrl(CT.CustomTreeCtrl): 
    2630    """ 
     
    2933    def __init__(self, parent,*args, **kwds): 
    3034        #agwstyle is introduced in wx.2.8.11 
    31         kwds['agwStyle']= wx.SUNKEN_BORDER|CT.TR_HAS_BUTTONS| CT.TR_HIDE_ROOT|   \ 
    32                     wx.WANTS_CHARS|CT.TR_HAS_VARIABLE_ROW_HEIGHT 
     35        try: 
     36            kwds['agwStyle'] = STYLE_FLAG 
     37        except: 
     38            try: 
     39                kwds['style'] = STYLE_FLAG 
     40            except: 
     41                raise 
     42         
    3343        CT.CustomTreeCtrl.__init__(self, parent, *args, **kwds) 
    3444        self.root = self.AddRoot("Available Data") 
     
    283293                            (self.rb_batch_mode,0, wx.ALL,5)]) 
    284294       
    285     def layout_data_list(self): 
     295    def old_layout_data_list(self): 
    286296        """ 
    287297        Add a listcrtl in the panel 
     
    293303                                                   "THEORIES", ct_type=0) 
    294304     
    295     def new_layout_data_list(self): 
     305    def layout_data_list(self): 
    296306        """ 
    297307        Add a listcrtl in the panel 
     
    403413                                                          process.__str__()) 
    404414            self.append_theory(state_id, theory_list) 
    405              
     415         
    406416    
    407     def append_theory(self, state_id, theory_list): 
     417    def old_append_theory(self, state_id, theory_list): 
    408418        """ 
    409419        append theory object under data from a state of id = state_id 
     
    422432                                       state_id=state_id,  
    423433                                       theory_list=theory_list) 
    424     def new_append_theory(self, state_id, theory_list): 
     434    def append_theory(self, state_id, theory_list): 
    425435        """ 
    426436        append theory object under data from a state of id = state_id 
     
    431441        if state_id not in self.list_cb_data.keys(): 
    432442            root = self.tree_ctrl_theory.root 
     443            tree = self.tree_ctrl_theory 
    433444        else: 
    434445            item = self.list_cb_data[state_id] 
    435446            data_c, _, _, _, _, _ = item 
    436447            root = data_c 
     448            tree = self.tree_ctrl 
    437449        if root is not None: 
    438              self.append_theory_helper(root=root,  
     450             self.append_theory_helper(tree=tree, root=root,  
    439451                                       state_id=state_id,  
    440452                                       theory_list=theory_list) 
    441453       
    442454       
    443     def append_theory_helper(self, root, state_id, theory_list): 
     455    def append_theory_helper(self, tree, root, state_id, theory_list): 
    444456        """ 
    445457        """ 
     
    464476                if theory_id not in theory_list_ctrl: 
    465477                    #add new theory 
    466                     t_child = self.tree_ctrl.AppendItem(root, 
     478                    t_child = tree.AppendItem(root, 
    467479                                                    name, ct_type=1, data=temp) 
    468                     t_i_c = self.tree_ctrl.AppendItem(t_child, 'Info') 
    469                     i_c_c = self.tree_ctrl.AppendItem(t_i_c,  
     480                    t_i_c = tree.AppendItem(t_child, 'Info') 
     481                    i_c_c = tree.AppendItem(t_i_c,  
    470482                                                  'Type: %s' % theory_class) 
    471                     t_p_c = self.tree_ctrl.AppendItem(t_i_c, 'Process') 
     483                    t_p_c = tree.AppendItem(t_i_c, 'Process') 
    472484                     
    473485                    for process in theory_data.process: 
    474                         i_t_c = self.tree_ctrl.AppendItem(t_p_c, 
     486                        i_t_c = tree.AppendItem(t_p_c, 
    475487                                                          process.__str__()) 
    476488                    theory_list_ctrl[theory_id] = [t_child,  
     
    480492                    #replace theory 
    481493                    t_child, i_c_c, t_p_c = theory_list_ctrl[theory_id] 
    482                     self.tree_ctrl.SetItemText(t_child, name)  
    483                     self.tree_ctrl.SetItemPyData(t_child, temp)  
    484                     self.tree_ctrl.SetItemText(i_c_c, 'Type: %s' % theory_class)  
    485                     self.tree_ctrl.DeleteChildren(t_p_c)  
     494                    tree.SetItemText(t_child, name)  
     495                    tree.SetItemPyData(t_child, temp)  
     496                    tree.SetItemText(i_c_c, 'Type: %s' % theory_class)  
     497                    tree.DeleteChildren(t_p_c)  
    486498                    for process in theory_data.process: 
    487                         i_t_c = self.tree_ctrl.AppendItem(t_p_c, 
     499                        i_t_c = tree.AppendItem(t_p_c, 
    488500                                                          process.__str__()) 
    489501               
     
    500512                    #    name = theory_state.model.name  
    501513                    temp = (theory_id, theory_class, state_id) 
    502                     t_child = self.tree_ctrl.AppendItem(root, 
     514                    t_child = tree.AppendItem(root, 
    503515                            name, ct_type=1,  
    504516                            data=(theory_data.id, theory_class, state_id)) 
    505                     t_i_c = self.tree_ctrl.AppendItem(t_child, 'Info') 
    506                     i_c_c = self.tree_ctrl.AppendItem(t_i_c,  
     517                    t_i_c = tree.AppendItem(t_child, 'Info') 
     518                    i_c_c = tree.AppendItem(t_i_c,  
    507519                                                  'Type: %s' % theory_class) 
    508                     t_p_c = self.tree_ctrl.AppendItem(t_i_c, 'Process') 
     520                    t_p_c = tree.AppendItem(t_i_c, 'Process') 
    509521                     
    510522                    for process in theory_data.process: 
    511                         i_t_c = self.tree_ctrl.AppendItem(t_p_c, 
     523                        i_t_c = tree.AppendItem(t_p_c, 
    512524                                                          process.__str__()) 
    513525             
     
    515527                #self.list_cb_theory[data_id] = theory_list_ctrl 
    516528                self.list_cb_theory[state_id] = theory_list_ctrl 
     529         
    517530             
    518531    
Note: See TracChangeset for help on using the changeset viewer.