source: sasview/guiframe/data_panel.py @ 39e5025f

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 39e5025f was 3b11d0d, checked in by Jae Cho <jhjcho@…>, 13 years ago

revert uncheck all and remove welcome

  • Property mode set to 100644
File size: 34.7 KB
Line 
1################################################################################
2#This software was developed by the University of Tennessee as part of the
3#Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
4#project funded by the US National Science Foundation.
5#
6#See the license text in license.txt
7#
8#copyright 2010, University of Tennessee
9################################################################################
10"""
11This module provides Graphic interface for the data_manager module.
12"""
13import wx
14import sys
15import warnings
16from wx.lib.scrolledpanel import ScrolledPanel
17import  wx.lib.agw.customtreectrl as CT
18from sans.guiframe.dataFitting import Data1D
19from sans.guiframe.dataFitting import Data2D
20from sans.guiframe.panel_base import PanelBase
21
22PANEL_WIDTH = 180
23#PANEL_HEIGHT = 560
24PANEL_HEIGHT = 700
25STYLE_FLAG =wx.RAISED_BORDER|CT.TR_HAS_BUTTONS| CT.TR_HIDE_ROOT|\
26                    wx.WANTS_CHARS|CT.TR_HAS_VARIABLE_ROW_HEIGHT
27                   
28                   
29class DataTreeCtrl(CT.CustomTreeCtrl):
30    """
31    Check list control to be used for Data Panel
32    """
33    def __init__(self, parent,*args, **kwds):
34        #agwstyle is introduced in wx.2.8.11 but is not working for mac
35        if sys.platform.count("darwin") != 0:
36            try:
37                kwds['style'] = STYLE_FLAG
38            except:
39                raise
40        else:
41            #agwstyle is introduced in wx.2.8.11 .argument working only for windows
42            try:
43                kwds['agwStyle'] = STYLE_FLAG
44            except:
45                try:
46                    kwds['style'] = STYLE_FLAG
47                except:
48                    raise
49       
50        CT.CustomTreeCtrl.__init__(self, parent, *args, **kwds)
51        self.root = self.AddRoot("Available Data")
52       
53class DataPanel(ScrolledPanel, PanelBase):
54    """
55    This panel displays data available in the application and widgets to
56    interact with data.
57    """
58    ## Internal name for the AUI manager
59    window_name = "Data Panel"
60    ## Title to appear on top of the window
61    window_caption = "Data Explorer"
62    #type of window
63    window_type = "Data Panel"
64    ## Flag to tell the GUI manager that this panel is not
65    #  tied to any perspective
66    #ALWAYS_ON = True
67    def __init__(self, parent, list=[],list_of_perspective=[],
68                 size=(PANEL_WIDTH,PANEL_HEIGHT), manager=None, *args, **kwds):
69        kwds['size']= size
70        kwds['style'] = STYLE_FLAG
71        ScrolledPanel.__init__(self, parent=parent, *args, **kwds)
72        PanelBase.__init__(self)
73        self.SetupScrolling()
74        self.all_data1d = True
75        self.parent = parent
76        self.manager = manager
77        self.list_of_data = list
78        self.list_of_perspective = list_of_perspective
79        self.list_rb_perspectives= []
80        self.list_cb_data = {}
81        self.list_cb_theory = {}
82       
83        self.owner = None
84        self.do_layout()
85        self.Bind(wx.EVT_SHOW, self.on_close_page)
86       
87    def do_layout(self):
88        """
89        """
90        self.define_panel_structure()
91        self.layout_selection()
92        self.layout_data_list()
93        self.layout_button()
94        self.layout_batch()
95   
96    def define_panel_structure(self):
97        """
98        Define the skeleton of the panel
99        """
100        w, h = self.parent.GetSize()
101        self.vbox  = wx.BoxSizer(wx.VERTICAL)
102        self.sizer1 = wx.BoxSizer(wx.VERTICAL)
103        self.sizer1.SetMinSize((w/13, h*2/5))
104     
105        self.sizer2 = wx.BoxSizer(wx.VERTICAL)
106        self.sizer3 = wx.GridBagSizer(5,5)
107        self.sizer4 = wx.BoxSizer(wx.HORIZONTAL)
108        self.sizer5 = wx.BoxSizer(wx.VERTICAL)
109       
110        self.vbox.Add(self.sizer5, 0,wx.EXPAND|wx.ALL,10)
111        self.vbox.Add(self.sizer1, 0,wx.EXPAND|wx.ALL,0)
112        self.vbox.Add(self.sizer2, 0,wx.EXPAND|wx.ALL,10)
113        self.vbox.Add(self.sizer3, 0,wx.EXPAND|wx.ALL,10)
114        self.vbox.Add(self.sizer4, 0,wx.EXPAND|wx.ALL,10)
115       
116        self.SetSizer(self.vbox)
117       
118    def layout_selection(self):
119        """
120        """
121        select_txt = wx.StaticText(self, -1, 'Selection Options')
122        select_txt.SetForegroundColour('blue')
123        self.selection_cbox = wx.ComboBox(self, -1, style=wx.CB_READONLY)
124        list_of_options = ['Select all Data',
125                            'Unselect all Data',
126                           'Select all Data 1D',
127                           'Unselect all Data 1D',
128                           'Select all Data 2D',
129                           'Unselect all Data 2D' ]
130        for option in list_of_options:
131            self.selection_cbox.Append(str(option))
132        self.selection_cbox.SetValue('Select all Data')
133        wx.EVT_COMBOBOX(self.selection_cbox,-1, self._on_selection_type)
134        self.sizer5.AddMany([(select_txt,0, wx.ALL,5),
135                            (self.selection_cbox,0, wx.ALL,5)])
136    def layout_perspective(self, list_of_perspective=[]):
137        """
138        Layout widgets related to the list of plug-ins of the gui_manager
139        """
140        if len(list_of_perspective)==0:
141            return
142        w, h = self.parent.GetSize()
143        box_description_2= wx.StaticBox(self, -1, "Set Active Perspective")
144        self.boxsizer_2 = wx.StaticBoxSizer(box_description_2, wx.HORIZONTAL)
145        self.sizer_perspective = wx.GridBagSizer(5,5)
146        self.boxsizer_2.Add(self.sizer_perspective)
147        self.sizer2.Add(self.boxsizer_2,1, wx.ALL, 10)
148        self.list_of_perspective = list_of_perspective
149        self.sizer_perspective.Clear(True)
150        self.list_rb_perspectives = []
151       
152        nb_active_perspective = 0
153        if list_of_perspective:
154            ix = 0 
155            iy = 0
156            for perspective_name, is_active in list_of_perspective:
157               
158                if is_active:
159                    nb_active_perspective += 1
160                if nb_active_perspective == 1:
161                    rb = wx.RadioButton(self, -1, perspective_name,
162                                        style=wx.RB_GROUP)
163                    rb.SetToolTipString("Data will be applied to this perspective")
164                    rb.SetValue(is_active)
165                else:
166                    rb = wx.RadioButton(self, -1, perspective_name)
167                    rb.SetToolTipString("Data will be applied to this perspective")
168                    #only one perpesctive can be active
169                    rb.SetValue(False)
170               
171                self.Bind(wx.EVT_RADIOBUTTON, self.on_set_active_perspective,
172                                                     id=rb.GetId())
173                self.list_rb_perspectives.append(rb)
174                self.sizer_perspective.Add(rb,(iy, ix),(1,1),
175                               wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 10)
176                iy += 1
177        else:
178            rb = wx.RadioButton(self, -1, 'No Perspective',
179                                                      style=wx.RB_GROUP)
180            rb.SetValue(True)
181            rb.Disable()
182            ix = 0 
183            iy = 0
184            self.sizer_perspective.Add(rb,(iy, ix),(1,1),
185                           wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 10)
186           
187    def _on_selection_type(self, event):
188        """
189        Select data according to patterns
190        """
191       
192        list_of_options = ['Select all Data',
193                            'Unselect all Data',
194                           'Select all Data 1D',
195                           'Unselect all Data 1D',
196                           'Select all Data 2D',
197                           'Unselect all Data 2D' ]
198        option = self.selection_cbox.GetValue()
199       
200        pos = self.selection_cbox.GetSelection()
201        if pos == wx.NOT_FOUND:
202            return 
203        option = self.selection_cbox.GetString(pos)
204        for item in self.list_cb_data.values():
205            data_ctrl, _, _, _,_, _ = item
206            data_id, data_class, _ = self.tree_ctrl.GetItemPyData(data_ctrl) 
207            if option == 'Select all Data':
208                self.tree_ctrl.CheckItem(data_ctrl, True) 
209            elif option == 'Unselect all Data':
210                self.tree_ctrl.CheckItem(data_ctrl, False)
211            elif option == 'Select all Data 1D':
212                if data_class == 'Data1D':
213                    self.tree_ctrl.CheckItem(data_ctrl, True) 
214            elif option == 'Unselect all Data 1D':
215                if data_class == 'Data1D':
216                    self.tree_ctrl.CheckItem(data_ctrl, False) 
217            elif option == 'Select all Data 1D':
218                if data_class == 'Data1D':
219                    self.tree_ctrl.CheckItem(data_ctrl, True) 
220            elif option == 'Select all Data 2D':
221                if data_class == 'Data2D':
222                    self.tree_ctrl.CheckItem(data_ctrl, True) 
223            elif option == 'Unselect all Data 2D':
224                if data_class == 'Data2D':
225                    self.tree_ctrl.CheckItem(data_ctrl, False) 
226               
227    def on_set_active_perspective(self, event):
228        """
229        Select the active perspective
230        """
231        ctrl = event.GetEventObject()
232       
233    def layout_button(self):
234        """
235        Layout widgets related to buttons
236        """
237        self.bt_import = wx.Button(self, wx.NewId(), "Send To")
238        self.bt_import.SetToolTipString("Send set of Data to active perspective")
239        wx.EVT_BUTTON(self, self.bt_import.GetId(), self.on_import)
240       
241        self.bt_append_plot = wx.Button(self, wx.NewId(), "Append Plot To")
242        self.bt_append_plot.SetToolTipString("Plot the selected data in the active panel")
243        wx.EVT_BUTTON(self, self.bt_append_plot.GetId(), self.on_append_plot)
244       
245        self.bt_plot = wx.Button(self, wx.NewId(), "New Plot")
246        self.bt_plot.SetToolTipString("To trigger plotting")
247        wx.EVT_BUTTON(self, self.bt_plot.GetId(), self.on_plot)
248       
249        self.bt_freeze = wx.Button(self, wx.NewId(), "Freeze Theory")
250        self.bt_freeze.SetToolTipString("To trigger freeze a theory")
251        wx.EVT_BUTTON(self, self.bt_freeze.GetId(), self.on_freeze)
252       
253        self.bt_remove = wx.Button(self, wx.NewId(), "Remove Data")
254        self.bt_remove.SetToolTipString("Remove data from the application")
255        wx.EVT_BUTTON(self, self.bt_remove.GetId(), self.on_remove)
256       
257        self.tctrl_perspective = wx.StaticText(self, -1, 
258                            'No Active Application',
259                        style=wx.SUNKEN_BORDER|wx.ALIGN_LEFT)
260        self.tctrl_perspective.SetToolTipString("Active Application")
261        perspective_font = self.tctrl_perspective.GetFont()
262        perspective_font.SetWeight(wx.BOLD)
263        self.tctrl_perspective.SetFont(perspective_font)
264        self.tctrl_perspective.SetClientSize((80,20))
265        self.cb_plotpanel = wx.ComboBox(self, -1, 
266                                style=wx.CB_READONLY|wx.CB_SORT)
267        wx.EVT_COMBOBOX(self.cb_plotpanel,-1, self._on_plot_selection)
268        self.cb_plotpanel.Append('None')
269        self.cb_plotpanel.SetStringSelection('None')
270
271        #self.tctrl_plotpanel = wx.StaticText(self, -1, 'No Plot panel on focus')
272        #self.tctrl_plotpanel.SetToolTipString("Active Plot Panel")
273   
274        ix = 0
275        iy = 0
276        self.sizer3.Add(self.bt_import,( iy, ix),(1,1), 
277                             wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
278        ix += 1
279        self.sizer3.Add(self.tctrl_perspective,(iy, ix),(1,1),
280                          wx.EXPAND|wx.ADJUST_MINSIZE, 0)     
281        ix = 0         
282        iy += 1 
283        self.sizer3.Add(self.bt_append_plot,( iy, ix),(1,1), 
284                             wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
285        ix += 1
286        self.sizer3.Add(self.cb_plotpanel,(iy, ix),(1,1),
287                          wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
288        ix = 0         
289        iy += 1 
290        self.sizer3.Add(self.bt_plot,( iy, ix),(1,1), 
291                             wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
292        ix = 0         
293        iy += 1 
294        self.sizer3.Add(self.bt_freeze,( iy, ix),(1,1), 
295                             wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
296        ix = 0         
297        iy += 1 
298        self.sizer3.Add(self.bt_remove,( iy, ix),(1,1), 
299                             wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
300       
301       
302     
303    def layout_batch(self):
304        """
305        """
306       
307        self.rb_single_mode = wx.RadioButton(self, -1, 'Single Mode',
308                                             style=wx.RB_GROUP)
309        self.rb_batch_mode = wx.RadioButton(self, -1, 'Batch Mode')
310       
311        self.rb_single_mode.SetValue(True)
312        self.rb_batch_mode.SetValue(False)
313        self.sizer4.AddMany([(self.rb_single_mode,0, wx.ALL,5),
314                            (self.rb_batch_mode,0, wx.ALL,5)])
315     
316    def old_layout_data_list(self):
317        """
318        Add a listcrtl in the panel
319        """
320        self.tree_ctrl = DataTreeCtrl(parent=self)
321        self.tree_ctrl.Bind(CT.EVT_TREE_ITEM_CHECKING, self.on_check_item)
322        self.sizer1.Add(self.tree_ctrl,1, wx.EXPAND|wx.ALL, 10)
323        self.theory_root = self.tree_ctrl.InsertItem(self.tree_ctrl.root,0,
324                                                   "THEORIES", ct_type=0)
325   
326    def layout_data_list(self):
327        """
328        Add a listcrtl in the panel
329        """
330        tree_ctrl_label = wx.StaticText(self, -1, "Data")
331        tree_ctrl_label.SetForegroundColour('blue')
332        self.tree_ctrl = DataTreeCtrl(parent=self)
333        self.tree_ctrl.Bind(CT.EVT_TREE_ITEM_CHECKING, self.on_check_item)
334        tree_ctrl_theory_label = wx.StaticText(self, -1, "Theory")
335        tree_ctrl_theory_label.SetForegroundColour('blue')
336        self.tree_ctrl_theory = DataTreeCtrl(parent=self)
337        self.tree_ctrl_theory.Bind(CT.EVT_TREE_ITEM_CHECKING, self.on_check_item)
338        self.sizer1.Add(tree_ctrl_label, 0, wx.LEFT, 10)
339        self.sizer1.Add(self.tree_ctrl, 1, wx.EXPAND|wx.ALL, 10)
340        self.sizer1.Add(tree_ctrl_theory_label, 0,  wx.LEFT, 10)
341        self.sizer1.Add(self.tree_ctrl_theory, 1, wx.EXPAND|wx.ALL, 10)
342           
343    def onContextMenu(self, event): 
344        """
345        Retrieve the state selected state
346        """
347        # Skipping the save state functionality for release 0.9.0
348        #return
349        pos = event.GetPosition()
350        pos = self.ScreenToClient(pos)
351        self.PopupMenu(self.popUpMenu, pos) 
352     
353 
354    def on_check_item(self, event):
355        """
356        """
357        item = event.GetItem()
358        item.Check(not item.IsChecked()) 
359        self.enable_button(item)
360        event.Skip()
361       
362    def enable_button(self, item):
363        """
364        """
365        # Not implemented
366        return
367        """
368        _, data_class, _= self.tree_ctrl.GetItemPyData(item)
369        if item.IsChecked():
370            self.all_data1d &= (data_class != "Data2D")
371            if self.all_data1d:
372                self.bt_freeze.Enable()
373            else:
374                self.bt_freeze.Disable()
375        else:
376            self.all_data1d |= True
377            self.all_data1d &= (data_class != "Data2D")
378            if self.all_data1d:
379                self.bt_freeze.Enable()
380            else:
381                self.bt_freeze.Disable()
382        """       
383    def load_data_list(self, list):
384        """
385        add need data with its theory under the tree
386        """
387        if not list:
388            return
389        # uncheck previous items
390        #self._uncheck_all()   
391           
392        for state_id, dstate in list.iteritems():
393            data = dstate.get_data()
394            theory_list = dstate.get_theory()
395            if data is not None:
396                data_name = data.name
397                data_class = data.__class__.__name__
398                path = dstate.get_path() 
399                process_list = data.process
400                data_id = data.id
401               
402                if state_id not in self.list_cb_data:
403                    #new state
404                    data_c = self.tree_ctrl.InsertItem(self.tree_ctrl.root,0,
405                                                       data_name, ct_type=1, 
406                                         data=(data_id, data_class, state_id))
407                    data_c.Check(True)
408                    self.enable_button(data_c)
409                    d_i_c = self.tree_ctrl.AppendItem(data_c, 'Info')
410                    i_c_c = self.tree_ctrl.AppendItem(d_i_c, 
411                                                  'Type: %s' % data_class)
412                    p_c_c = self.tree_ctrl.AppendItem(d_i_c,
413                                                  'Path: %s' % str(path))
414                    d_p_c = self.tree_ctrl.AppendItem(d_i_c, 'Process')
415                   
416                    for process in process_list:
417                        i_t_c = self.tree_ctrl.AppendItem(d_p_c,
418                                                          process.__str__())
419                    theory_child = self.tree_ctrl.AppendItem(data_c, "THEORIES")
420                   
421                    self.list_cb_data[state_id] = [data_c, 
422                                                   d_i_c,
423                                                   i_c_c,
424                                                    p_c_c,
425                                                     d_p_c,
426                                                     theory_child]
427                else:
428                    data_ctrl_list =  self.list_cb_data[state_id]
429                    #This state is already display replace it contains
430                    data_c, d_i_c, i_c_c, p_c_c, d_p_c, t_c = data_ctrl_list
431                    self.tree_ctrl.SetItemText(data_c, data_name) 
432                    temp = (data_id, data_class, state_id)
433                    self.tree_ctrl.SetItemPyData(data_c, temp) 
434                    self.tree_ctrl.SetItemText(i_c_c, 'Type: %s' % data_class)
435                    self.tree_ctrl.SetItemText(p_c_c, 'Path: %s' % str(path)) 
436                    self.tree_ctrl.DeleteChildren(d_p_c) 
437                    for process in process_list:
438                        i_t_c = self.tree_ctrl.AppendItem(d_p_c,
439                                                          process.__str__())
440            self.append_theory(state_id, theory_list)
441       
442    def _uncheck_all(self):
443        """
444        Uncheck all check boxes
445        """
446        for item in self.list_cb_data.values():
447            data_ctrl, _, _, _,_, _ = item
448            self.tree_ctrl.CheckItem(data_ctrl, False) 
449       
450    def old_append_theory(self, state_id, theory_list):
451        """
452        append theory object under data from a state of id = state_id
453        replace that theory if  already displayed
454        """
455        if not theory_list:
456            return 
457        if state_id not in self.list_cb_data.keys():
458            root = self.theory_root
459        else:
460            item = self.list_cb_data[state_id]
461            data_c, _, _, _, _, _ = item
462            root = data_c
463        if root is not None:
464             self.append_theory_helper(root=root, 
465                                       state_id=state_id, 
466                                       theory_list=theory_list)
467    def append_theory(self, state_id, theory_list):
468        """
469        append theory object under data from a state of id = state_id
470        replace that theory if  already displayed
471        """
472        if not theory_list:
473            return 
474        if state_id not in self.list_cb_data.keys():
475            root = self.tree_ctrl_theory.root
476            tree = self.tree_ctrl_theory
477        else:
478            item = self.list_cb_data[state_id]
479            data_c, _, _, _, _, _ = item
480            root = data_c
481            tree = self.tree_ctrl
482        if root is not None:
483             self.append_theory_helper(tree=tree, root=root, 
484                                       state_id=state_id, 
485                                       theory_list=theory_list)
486     
487     
488    def append_theory_helper(self, tree, root, state_id, theory_list):
489        """
490        """
491        if state_id in self.list_cb_theory.keys():
492            #update current list of theory for this data
493            theory_list_ctrl = self.list_cb_theory[state_id]
494
495            for theory_id, item in theory_list.iteritems():
496                theory_data, theory_state = item
497                if theory_data is None:
498                    name = "Unknown"
499                    theory_class = "Unknown"
500                    theory_id = "Unknown"
501                    temp = (None, None, None)
502                else:
503                    name = theory_data.name
504                    theory_class = theory_data.__class__.__name__
505                    theory_id = theory_data.id
506                    #if theory_state is not None:
507                    #    name = theory_state.model.name
508                    temp = (theory_id, theory_class, state_id)
509                if theory_id not in theory_list_ctrl:
510                    #add new theory
511                    t_child = tree.AppendItem(root,
512                                                    name, ct_type=1, data=temp)
513                    t_i_c = tree.AppendItem(t_child, 'Info')
514                    i_c_c = tree.AppendItem(t_i_c, 
515                                                  'Type: %s' % theory_class)
516                    t_p_c = tree.AppendItem(t_i_c, 'Process')
517                   
518                    for process in theory_data.process:
519                        i_t_c = tree.AppendItem(t_p_c,
520                                                          process.__str__())
521                    theory_list_ctrl[theory_id] = [t_child, 
522                                                   i_c_c, 
523                                                   t_p_c]
524                else:
525                    #replace theory
526                    t_child, i_c_c, t_p_c = theory_list_ctrl[theory_id]
527                    tree.SetItemText(t_child, name) 
528                    tree.SetItemPyData(t_child, temp) 
529                    tree.SetItemText(i_c_c, 'Type: %s' % theory_class) 
530                    tree.DeleteChildren(t_p_c) 
531                    for process in theory_data.process:
532                        i_t_c = tree.AppendItem(t_p_c,
533                                                          process.__str__())
534             
535        else:
536            #data didn't have a theory associated it before
537            theory_list_ctrl = {}
538            for theory_id, item in theory_list.iteritems():
539                theory_data, theory_state = item
540                if theory_data is not None:
541                    name = theory_data.name
542                    theory_class = theory_data.__class__.__name__
543                    theory_id = theory_data.id
544                    #if theory_state is not None:
545                    #    name = theory_state.model.name
546                    temp = (theory_id, theory_class, state_id)
547                    t_child = tree.AppendItem(root,
548                            name, ct_type=1, 
549                            data=(theory_data.id, theory_class, state_id))
550                    t_i_c = tree.AppendItem(t_child, 'Info')
551                    i_c_c = tree.AppendItem(t_i_c, 
552                                                  'Type: %s' % theory_class)
553                    t_p_c = tree.AppendItem(t_i_c, 'Process')
554                   
555                    for process in theory_data.process:
556                        i_t_c = tree.AppendItem(t_p_c,
557                                                          process.__str__())
558           
559                    theory_list_ctrl[theory_id] = [t_child, i_c_c, t_p_c]
560                #self.list_cb_theory[data_id] = theory_list_ctrl
561                self.list_cb_theory[state_id] = theory_list_ctrl
562       
563           
564   
565    def set_data_helper(self):
566        """
567        """
568        data_to_plot = []
569        state_to_plot = []
570        theory_to_plot = []
571        for value in self.list_cb_data.values():
572            item, _, _, _, _, _ = value
573            if item.IsChecked():
574                data_id, _, state_id = self.tree_ctrl.GetItemPyData(item)
575                data_to_plot.append(data_id)
576                if state_id not in state_to_plot:
577                    state_to_plot.append(state_id)
578           
579        for theory_dict in self.list_cb_theory.values():
580            for key, value in theory_dict.iteritems():
581                item, _, _ = value
582                if item.IsChecked():
583                    theory_id, _, state_id = self.tree_ctrl.GetItemPyData(item)
584                    theory_to_plot.append(theory_id)
585                    if state_id not in state_to_plot:
586                        state_to_plot.append(state_id)
587        return data_to_plot, theory_to_plot, state_to_plot
588   
589    def remove_by_id(self, id):
590        """
591        """
592        for item in self.list_cb_data.values():
593            data_c, _, _, _, _, theory_child = item
594            data_id, _, state_id = self.tree_ctrl.GetItemPyData(data_c) 
595            if id == data_id:
596                self.tree_ctrl.Delete(data_c)
597                del self.list_cb_data[state_id]
598                del self.list_cb_theory[data_id]
599             
600    def on_remove(self, event):
601        """
602        Get a list of item checked and remove them from the treectrl
603        Ask the parent to remove reference to this item
604        """
605        data_to_remove, theory_to_remove, _ = self.set_data_helper()
606        data_key = []
607        theory_key = []
608        #remove  data from treectrl
609        for d_key, item in self.list_cb_data.iteritems():
610            data_c, d_i_c, i_c_c, p_c_c, d_p_c, t_c = item
611            if data_c.IsChecked():
612                self.tree_ctrl.Delete(data_c)
613                data_key.append(d_key)
614                if d_key in self.list_cb_theory.keys():
615                    theory_list_ctrl = self.list_cb_theory[d_key]
616                    theory_to_remove += theory_list_ctrl.keys()
617        # Remove theory from treectrl       
618        for t_key, theory_dict in self.list_cb_theory.iteritems():
619            for  key, value in theory_dict.iteritems():
620                item, _, _ = value
621                if item.IsChecked():
622                    self.tree_ctrl.Delete(item)
623                    theory_key.append(key)
624        #Remove data and related theory references
625        for key in data_key:
626            del self.list_cb_data[key]
627            if key in theory_key:
628                del self.list_cb_theory[key]
629        #remove theory  references independently of data
630        for key in theory_key:
631            for t_key, theory_dict in self.list_cb_theory.iteritems():
632                if key in theory_dict:
633                    del theory_dict[key]
634           
635        self.parent.remove_data(data_id=data_to_remove,
636                                  theory_id=theory_to_remove)
637       
638    def on_import(self, event=None):
639        """
640        Get all select data and set them to the current active perspetive
641        """
642        data_id, theory_id, state_id = self.set_data_helper()
643        self.parent.set_data(data_id)
644        self.parent.set_data(data_id=state_id, theory_id=theory_id)
645       
646    def on_append_plot(self, event=None):
647        """
648        append plot to plot panel on focus
649        """
650        self._on_plot_selection()
651        data_id, theory_id, state_id = self.set_data_helper()
652        self.parent.plot_data(data_id=data_id, 
653                              state_id=state_id,
654                              theory_id=theory_id,
655                              append=True)
656   
657    def on_plot(self, event=None):
658        """
659        Send a list of data names to plot
660        """
661        data_id, theory_id, state_id = self.set_data_helper()
662        self.parent.plot_data(data_id=data_id, 
663                              state_id=state_id,
664                              theory_id=theory_id,
665                              append=False)
666         
667    def on_close_page(self, event=None):
668        """
669        On close
670        """
671        if event != None:
672            event.Skip()
673
674        # send parent to update menu with no show nor hide action
675        self.parent.show_data_panel(action=False)
676   
677       
678    def on_freeze(self, event):
679        """
680        """
681        _, theory_id, state_id = self.set_data_helper()
682        self.parent.freeze(data_id=state_id, theory_id=theory_id)
683       
684    def set_active_perspective(self, name):
685        """
686        set the active perspective
687        """
688        self.tctrl_perspective.SetLabel(str(name))
689        #perspective_font = self.tctrl_perspective.GetFont()
690        #perspective_font.SetWeight(wx.BOLD)
691        self.tctrl_perspective.SetClientSize((80,20))#SetFont(perspective_font)
692     
693    def set_panel_on_focus(self, name):
694        """
695        set the plot panel on focus
696        """
697        for key, value in self.parent.plot_panels.iteritems():
698            name_plot_panel = str(value.window_caption)
699            if name_plot_panel not in self.cb_plotpanel.GetItems():
700                self.cb_plotpanel.Append(name_plot_panel, value)
701            self.cb_plotpanel.SetStringSelection(name_plot_panel)
702
703 
704    def _on_plot_selection(self, event = None):
705        """
706        On source combobox selection
707        """
708        if event != None:
709            combo = event.GetEventObject()
710            event.Skip()
711        else:
712            combo = self.cb_plotpanel
713        selection = combo.GetSelection()
714
715        if combo.GetValue() != 'None':
716            panel = combo.GetClientData(selection)
717            self.parent.on_set_plot_focus(panel)   
718
719   
720
721
722class DataFrame(wx.Frame):
723    ## Internal name for the AUI manager
724    window_name = "Data Panel"
725    ## Title to appear on top of the window
726    window_caption = "Data Panel"
727    ## Flag to tell the GUI manager that this panel is not
728    #  tied to any perspective
729    ALWAYS_ON = True
730   
731    def __init__(self, parent=None, owner=None, manager=None,size=(200, 800),
732                         list_of_perspective=[],list=[], *args, **kwds):
733        kwds['size'] = size
734        kwds['id'] = -1
735        kwds['title']= "Loaded Data"
736        wx.Frame.__init__(self, parent=parent, *args, **kwds)
737        self.parent = parent
738        self.owner = owner
739        self.manager = manager
740        self.panel = DataPanel(parent=self, 
741                               #size=size,
742                               list_of_perspective=list_of_perspective)
743     
744    def load_data_list(self, list=[]):
745        """
746        Fill the list inside its panel
747        """
748        self.panel.load_data_list(list=list)
749       
750    def layout_perspective(self, list_of_perspective=[]):
751        """
752        """
753        self.panel.layout_perspective(list_of_perspective=list_of_perspective)
754   
755   
756       
757   
758from dataFitting import Data1D
759from dataFitting import Data2D, Theory1D
760from data_state import DataState
761import sys
762class State():
763    def __init__(self):
764        self.msg = ""
765    def __str__(self):
766        self.msg = "model mane : model1\n"
767        self.msg += "params : \n"
768        self.msg += "name  value\n"
769        return msg
770def set_data_state(data=None, path=None, theory=None, state=None):
771    dstate = DataState(data=data)
772    dstate.set_path(path=path)
773    dstate.set_theory(theory, state)
774 
775    return dstate
776"""'
777data_list = [1:('Data1', 'Data1D', '07/01/2010', "theory1d", "state1"),
778            ('Data2', 'Data2D', '07/03/2011', "theory2d", "state1"),
779            ('Data3', 'Theory1D', '06/01/2010', "theory1d", "state1"),
780            ('Data4', 'Theory2D', '07/01/2010', "theory2d", "state1"),
781            ('Data5', 'Theory2D', '07/02/2010', "theory2d", "state1")]
782"""     
783if __name__ == "__main__":
784   
785    app = wx.App()
786    try:
787        list_of_perspective = [('perspective2', False), ('perspective1', True)]
788        data_list = {}
789        # state 1
790        data = Data2D()
791        data.name = "data2"
792        data.id = 1
793        data.append_empty_process()
794        process = data.process[len(data.process)-1]
795        process.data = "07/01/2010"
796        theory = Data2D()
797        theory.id = 34
798        theory.name = "theory1"
799        path = "path1"
800        state = State()
801        data_list['1']=set_data_state(data, path,theory, state)
802        #state 2
803        data = Data2D()
804        data.name = "data2"
805        data.id = 76
806        theory = Data2D()
807        theory.id = 78
808        theory.name = "CoreShell 07/24/25"
809        path = "path2"
810        #state3
811        state = State()
812        data_list['2']=set_data_state(data, path,theory, state)
813        data = Data1D()
814        data.id = 3
815        data.name = "data2"
816        theory = Theory1D()
817        theory.name = "CoreShell"
818        theory.id = 4
819        theory.append_empty_process()
820        process = theory.process[len(theory.process)-1]
821        process.description = "this is my description"
822        path = "path3"
823        data.append_empty_process()
824        process = data.process[len(data.process)-1]
825        process.data = "07/22/2010"
826        data_list['4']=set_data_state(data, path,theory, state)
827        #state 4
828        temp_data_list = {}
829        data.name = "data5 erasing data2"
830        temp_data_list['4'] = set_data_state(data, path,theory, state)
831        #state 5
832        data = Data2D()
833        data.name = "data3"
834        data.id = 5
835        data.append_empty_process()
836        process = data.process[len(data.process)-1]
837        process.data = "07/01/2010"
838        theory = Theory1D()
839        theory.name = "Cylinder"
840        path = "path2"
841        state = State()
842        dstate= set_data_state(data, path,theory, state)
843        theory = Theory1D()
844        theory.id = 6
845        theory.name = "CoreShell"
846        dstate.set_theory(theory)
847        theory = Theory1D()
848        theory.id = 6
849        theory.name = "CoreShell replacing coreshell in data3"
850        dstate.set_theory(theory)
851        data_list['3'] = dstate
852        #state 6
853        data_list['6']=set_data_state(None, path,theory, state)
854        data_list['6']=set_data_state(theory=theory, state=None)
855        theory = Theory1D()
856        theory.id = 7
857        data_list['6']=set_data_state(theory=theory, state=None)
858        data_list['7']=set_data_state(theory=theory, state=None)
859        window = DataFrame(list=data_list)
860        window.load_data_list(list=data_list)
861        #window.layout_perspective(list_of_perspective=list_of_perspective)
862        window.Show(True)
863        window.load_data_list(list=temp_data_list)
864    except:
865        #raise
866        print "error",sys.exc_value
867       
868    app.MainLoop() 
869   
870   
Note: See TracBrowser for help on using the repository browser.