-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPopulationData.py
931 lines (703 loc) · 38.5 KB
/
PopulationData.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
################################################################################
###############################################################################
# Copyright (C) 2013-2018 Jacob Barhak
# Copyright (C) 2009-2012 The Regents of the University of Michigan
#
# This file is part of the MIcroSimulation Tool (MIST).
# The MIcroSimulation Tool (MIST) is free software: you
# can redistribute it and/or modify it under the terms of the GNU General
# Public License as published by the Free Software Foundation, either
# version 3 of the License, or (at your option) any later version.
#
# The MIcroSimulation Tool (MIST) is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
###############################################################################
#
# ADDITIONAL CLARIFICATION
#
# The MIcroSimulation Tool (MIST) is distributed in the
# hope that it will be useful, but "as is" and WITHOUT ANY WARRANTY of any
# kind, including any warranty that it will not infringe on any property
# rights of another party or the IMPLIED WARRANTIES OF MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS assume no responsibilities
# with respect to the use of the MIcroSimulation Tool (MIST).
#
# The MIcroSimulation Tool (MIST) was derived from the Indirect Estimation
# and Simulation Tool (IEST) and uses code distributed under the IEST name.
# The change of the name signifies a split from the original design that
# focuses on microsimulation. For the sake of completeness, the copyright
# statement from the original tool developed by the University of Michigan
# is provided below and is also mentioned above.
#
###############################################################################
############################ Original Copyright ###############################
###############################################################################
# Copyright (C) 2009-2012 The Regents of the University of Michigan
# Initially developed by Deanna Isaman, Jacob Barhak, Donghee Lee
#
# This file is part of the Indirect Estimation and Simulation Tool (IEST).
# The Indirect Estimation and Simulation Tool (IEST) is free software: you
# can redistribute it and/or modify it under the terms of the GNU General
# Public License as published by the Free Software Foundation, either
# version 3 of the License, or (at your option) any later version.
#
# The Indirect Estimation and Simulation Tool (IEST) is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
################################################################################
# #
# This file contains a form to define structure and value of a PopulationSet #
################################################################################
import DataDef as DB
import CDMLib as cdml
import os
import wx, wx.grid
import copy
class MainFrame(cdml.CDMWindow, wx.Frame):
""" MainFrame class for PopulationData form"""
def __init__(self, mode=None, data=None, type=None, id_prj=0, *args, **kwds):
self.idPrj = id_prj
kwdsnew = copy.copy(kwds)
kwdsnew["style"] = wx.DEFAULT_FRAME_STYLE
wx.Frame.__init__(self, *args, **kwdsnew)
self.grid_1 = None
self.pset_id = data # save the ID of parent RowPanel instance(i.e the ID of current PopulationSet)
if self.pset_id == None: # If current PopulationSet is new one and wasn't saved
title = 'Population Set : No Name'
else: # Else display name of the PopulationSet
CurrentName = DB.PopulationSets[self.pset_id].Name
if mode != None and CurrentName != mode:
CurrentName = mode +' {Edited from:' + CurrentName +'}'
title = 'Population Set : ' + CurrentName
# define lists for temporary Columns / Data list
self.DataColumns = []
self.Data = []
self.Objectives = []
self.HasDistribution = None
self.idPrj = 0
# Deine Popup menu items
# Format : tuple of list --> ([Label, Event handler, Id] , [], [], ... )
# Label : label of an item
# Evet handler : name of event handler
# Id : Id of current menu item
# Special label : '-'--> seperator, '+' --> submenu items
# First item after last '+' marked items is the title of the submenu
# If an item doesn't have event handler, the second parameter should be 'None'
# If an item doesn't have Id, the third item should be -1
# If a form need to manage instances of RowPanel class,
# the event handler should be 'self.FrameEventHandler'
# Otherwise, dedicated event handler should be implemented in that class (ex. see Project or PopulationData form)
self.pup_menus = ( ["Undo", self.OnMenuSelected, wx.ID_UNDO ],
["-" , None, -1],
["Add Row" , self.OnMenuSelected, cdml.IDF_BUTTON1],
["Delete Row" , self.OnMenuSelected, cdml.IDF_BUTTON2] )
cdml.GenerateStandardMenu(self, SkipItems = [cdml.ID_MENU_REPORT_THIS, cdml.ID_MENU_REPORT_ALL])
self.panel_1 = wx.Panel(self, -1)
self.st_name = wx.StaticText(self.panel_1, -1, title)
# Create Tab control for DataCulumns and Data
self.nb = wx.Notebook(self.panel_1, -1, style=0)
self.nb_pane_1 = wx.Panel(self.nb, 0)
self.nb.AddPage(self.nb_pane_1, "Columns")
self.lc_parm = cdml.List(self.nb_pane_1, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER)
self.tc_dist_text = cdml.Text(self.nb_pane_1, -1, "", style=wx.TE_NOHIDESEL)
self.lc_dist = cdml.List(self.nb_pane_1, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER)
arrow_up = cdml.getSmallUpArrowBitmap() # arrow bitmap for buttons
arrow_dn = cdml.getSmallDnArrowBitmap()
self.btn_del_col = wx.BitmapButton(self.nb_pane_1, wx.ID_DELETE, arrow_dn)
self.btn_add_col = wx.BitmapButton(self.nb_pane_1, wx.ID_ADD, arrow_up)
self.lc_column = cdml.List(self.nb_pane_1, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER)
# Define the objective Tab
self.nb_pane_2 = wx.Panel(self.nb, 0)
self.nb.AddPage(self.nb_pane_2, "Objectives")
self.st_obj_filter_expr = wx.StaticText(self.nb_pane_2, -1, "Filter Expr")
self.st_obj_stat_expr = wx.StaticText(self.nb_pane_2, -1, "Statistics Expr")
self.st_obj_stat_func = wx.StaticText(self.nb_pane_2, -1, "Function")
self.st_obj_target = wx.StaticText(self.nb_pane_2, -1, "Target Value")
self.st_obj_weight = wx.StaticText(self.nb_pane_2, -1, "Weight")
self.tc_obj_filter_expr = cdml.Text(self.nb_pane_2, -1, "", style=wx.TE_NOHIDESEL)
self.tc_obj_stat_expr = cdml.Text(self.nb_pane_2, -1, "", style=wx.TE_NOHIDESEL)
self.cc_obj_stat_func = cdml.Combo(self.nb_pane_2, -1, style=wx.TE_NOHIDESEL, validator=cdml.KeyValidator(cdml.NO_EDIT))
self.tc_obj_target = cdml.Text(self.nb_pane_2, -1, "", style=wx.TE_NOHIDESEL)
self.tc_obj_weight = cdml.Text(self.nb_pane_2, -1, "", style=wx.TE_NOHIDESEL)
self.btn_del_obj = wx.BitmapButton(self.nb_pane_2, cdml.IDF_BUTTON7, arrow_dn)
self.btn_add_obj = wx.BitmapButton(self.nb_pane_2, cdml.IDF_BUTTON8, arrow_up)
self.lc_objectives = cdml.List(self.nb_pane_2, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER)
self.btn_import = wx.Button(self.panel_1, cdml.IDF_BUTTON2, "Import")
self.btn_export = wx.Button(self.panel_1, cdml.IDF_BUTTON3, "Export")
self.btn_undo = wx.Button(self.panel_1, cdml.IDF_BUTTON4, "Undo")
self.btn_ok = wx.Button(self.panel_1, cdml.IDF_BUTTON5, "Ok")
self.__set_properties()
self.__do_layout()
self.Bind(wx.EVT_CONTEXT_MENU, self.OnPopupMenu) # Bind event handler for right mouse click. Open Popup menu
self.Bind(wx.EVT_CLOSE, self.OnButtonClick)
self.Bind(wx.EVT_BUTTON, self.OnButtonClick, id=cdml.IDF_BUTTON2, id2=cdml.IDF_BUTTON6)
self.Bind(wx.EVT_BUTTON, self.OnButtonClick, self.btn_add_col)
self.Bind(wx.EVT_BUTTON, self.OnButtonClick, self.btn_del_col)
self.Bind(wx.EVT_BUTTON, self.OnButtonClick, self.btn_del_obj)
self.Bind(wx.EVT_BUTTON, self.OnButtonClick, self.btn_add_obj)
# The next line fixes the bug of the parent window scrolling because
# of a click in this window - focus is captured here and not
# propagated to the parent window
self.Bind(wx.EVT_CHILD_FOCUS, lambda Event: None)
# closing the child parameter form triggers this
self.Bind(wx.EVT_END_PROCESS, self.OnRefresh)
self.lc_parm.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnLeftDblClick)
self.lc_parm.Bind(wx.EVT_LIST_COL_CLICK, self.OnLeftDblClick)
self.lc_dist.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnSelectDistribution)
self.lc_dist.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnSelectDistribution)
self.Initialize()
def __set_properties(self):
self.SetTitle("POPULATION DATA")
self.HelpContext = 'PopulationData'
self.SetSize((640, 400))
self.MyMakeModal(True)
self.st_name.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.BOLD, 0, ""))
self.btn_add_col.SetSize(self.btn_add_col.GetBestSize())
self.btn_del_col.SetSize(self.btn_del_col.GetBestSize())
# build and assign the list of parameters
self.lc_parm.SetMinSize((310,135))
self.lc_parm.CreateColumns((('Parameter', 100), ('Notes', 205)))
self.lc_parm.AllowBlank = False
self.tc_dist_text.SetMinSize((310,-1))
# build and assign the list of distribution
self.lc_dist.SetMinSize((310,135))
self.lc_dist.CreateColumns((('Expression', 100), ('Notes', 205)))
# Set the column and column header of list control for DataColumn
self.lc_column.SetMinSize((630,150))
self.lc_column.CreateColumns((('Parameter', 350), ('Expression', 270)))
self.lc_column.AllowBlank = False
self.tc_obj_filter_expr.SetMinSize((125,-1))
self.tc_obj_stat_expr.SetMinSize((125,-1))
self.cc_obj_stat_func.SetMinSize((125,-1))
self.tc_obj_target.SetMinSize((125,-1))
self.tc_obj_weight.SetMinSize((125,-1))
self.cc_obj_stat_func.SetColumns((('Function', 100), ))
self.cc_obj_stat_func.InRow = False
# Set the column and column header of list control for Objectives
self.lc_objectives.SetMinSize((630,300))
self.lc_objectives.CreateColumns((('Filter Expression', 140), ('Statistics Expression', 140), ('Function', 70), ('Target', 70), ('Weight', 70), ('Calculated', 70), ('Error', 60)))
self.lc_objectives.AllowBlank = False
# Now actually assign the values
self.SetListItems()
def __do_layout(self):
sizer_1 = wx.BoxSizer(wx.VERTICAL)
sizer_2 = wx.BoxSizer(wx.VERTICAL)
sizer_4 = wx.BoxSizer(wx.HORIZONTAL)
sizer_2.Add(self.st_name, 0, wx.EXPAND|wx.ALL, 10)
gb_sizer1 = wx.GridBagSizer(0,0)
gb_sizer1.Add(self.lc_column, (0,0),(12,20), wx.EXPAND, 0)
gb_sizer1.Add(self.btn_add_col, (12,8), (2,2), wx.ALL|wx.ALIGN_CENTER, 3)
gb_sizer1.Add(self.btn_del_col, (12,10), (2,2), wx.ALL|wx.ALIGN_CENTER, 3)
gb_sizer1.Add(self.lc_parm, (14,0), (8,10), wx.EXPAND, 0)
gb_sizer1.Add(self.tc_dist_text, (14,10), (2,10), wx.EXPAND, 0)
gb_sizer1.Add(self.lc_dist, (16,10), (6,10), wx.EXPAND, 0)
self.nb_pane_1.SetSizer(gb_sizer1)
gb_sizer2 = wx.GridBagSizer(0,0)
gb_sizer2.Add(self.lc_objectives, (0,0),(15,20), wx.EXPAND, 5)
gb_sizer2.Add(self.btn_add_obj, (16,8), (2,2), wx.ALL|wx.ALIGN_CENTER, 3)
gb_sizer2.Add(self.btn_del_obj, (16,12), (2,2), wx.ALL|wx.ALIGN_CENTER, 3)
gb_sizer2.Add(self.st_obj_filter_expr, (18,0), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.st_obj_stat_expr, (18,4), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.st_obj_stat_func, (18,8), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.st_obj_target, (18,12), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.st_obj_weight, (18,16), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.tc_obj_filter_expr, (20,0), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.tc_obj_stat_expr, (20,4), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.cc_obj_stat_func, (20,8), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.tc_obj_target, (20,12), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
gb_sizer2.Add(self.tc_obj_weight, (20,16), (2,4), wx.ALL|wx.ALIGN_CENTER, 1)
self.nb_pane_2.SetSizer(gb_sizer2)
if self.grid_1 != None:
sizer_3 = wx.BoxSizer(wx.VERTICAL)
sizer_3.Add(self.grid_1, 1, wx.EXPAND|wx.ALL, 0)
if self.nb_pane_3 != None:
self.nb_pane_3.SetSizer(sizer_3)
else:
raise ValueError, 'ASSERTION ERROR, Grid created without notebook pane - can not poperly layout the form'
sizer_4.Add(self.btn_export, 1, wx.ALL, 3)
sizer_4.Add(self.btn_import, 1, wx.ALL, 3)
sizer_4.Add(self.btn_undo, 1, wx.ALL, 3)
sizer_4.Add(self.btn_ok, 1, wx.ALL, 3)
sizer_2.Add(sizer_4, 0, wx.EXPAND, 0)
sizer_2.Add(self.nb, 0, wx.EXPAND, 0)
self.panel_1.SetSizer(sizer_2)
sizer_1.Add(self.panel_1, 0, wx.EXPAND, 0)
self.SetSizer(sizer_1)
sizer_1.Fit(self)
self.Layout()
def Initialize(self):
""" Display initial data for DataColumn and/or Data if any"""
# create temporary copy of DataColumns and Data
parent = self.GetParent()
if parent != None:
self.DataColumns.extend(parent.DataColumns)
self.Data.extend(parent.Data)
self.Objectives.extend(parent.Objectives)
if self.DataColumns == [] and self.Objectives == []:
self.HasDistribution = None
self.lc_dist.Enable(True)
self.tc_dist_text.Enable(True)
else:
(parm,dist) = self.DataColumns[0]
self.HasDistribution = (dist != '')
self.lc_dist.Enable(self.HasDistribution)
self.tc_dist_text.Enable(self.HasDistribution)
# If data columns are not defined, simply display blank form
if self.DataColumns == [] and self.Objectives == []:
self.HasDistribution = None
self.ShowTabData()
return
self.ShowData(self.DataColumns, self.Data, self.Objectives)
def SetListItems(self):
"""
Build list for the controls
"""
# build and assign the list of parameters
parm = [ (str(p), p.Notes) for p in DB.Params.values() if p.ParameterType in ['Number','Integer', 'State Indicator']]
self.lc_parm.SetItems(parm)
# build and assign the list of distribution
dist = [ (str(p), p.Notes) for p in DB.Params.values() if p.ParameterType == 'Expression']
self.lc_dist.SetItems(dist)
# build and assign the list of objective statistical functions
Stat_func = [ (str(entry), -1) for entry in DB.StatFunctions]
self.cc_obj_stat_func.SetItems(Stat_func)
def OnRefresh(self, event):
""" Refresh data after closing child form """
self.SetListItems()
def ShowAndHideObjectiveControls(self, show):
"Show/Hide objective entry controls"
self.st_obj_filter_expr.Show(show)
self.st_obj_stat_expr.Show(show)
self.st_obj_stat_func.Show(show)
self.st_obj_target.Show(show)
self.st_obj_weight.Show(show)
self.tc_obj_filter_expr.Show(show)
self.tc_obj_stat_expr.Show(show)
self.cc_obj_stat_func.Show(show)
self.tc_obj_target.Show(show)
self.tc_obj_weight.Show(show)
self.btn_del_obj.Show(show)
self.btn_add_obj.Show(show)
def ShowTabData(self):
""" Show/Hide 'Data' tab in the tab control """
# Check the distribution status - note that None is True in some cases
self.ShowAndHideObjectiveControls(self.HasDistribution != False)
# None is not true in this case
show = not self.HasDistribution
if not show: # If distribution is defined
# 'Data' tab doesn't exist, return
if self.nb.GetPageCount() == 2 : return
# If 'Data' tab exists, delete it
self.nb.DeletePage(2)
self.grid_1 = None
self.nb_pane_3 = None
else:
# 'Data' tab exists, return
if self.nb.GetPageCount() == 3 : return
# Else create new panel and grid controls for 'Data' tab
self.nb_pane_3 = wx.Panel(self.nb, 1)
self.grid_1 = wx.grid.Grid(self.nb_pane_3, -1)
self.grid_1.CreateGrid(1,1) # create minimum number of grid. grid size will be decided when the data is displayed
self.grid_1.DeleteCols(0,1) # delete row and column to initialize the grid control
# Add new panel to tab control
self.nb.AddPage(self.nb_pane_3, "Data")
w,h = self.grid_1.GetParent().GetSizeTuple()
self.grid_1.SetSize((w-2, h-2))
# Set up event handler
self.Bind(wx.grid.EVT_GRID_CELL_RIGHT_CLICK, self.OnPopupMenu) # Bind event handler for right mouse click. Open Popup menu
self.Bind(wx.grid.EVT_GRID_LABEL_RIGHT_CLICK, self.OnPopupMenu) # Bind event handler for right mouse click. Open Popup menu
self.__do_layout()
def ShowData(self, Columns, Data, Objectives):
""" Display DataColums/Data in the List Controls and Grid control if necessary"""
self.lc_column.SetItems(Columns, do_sort=False) # Clear and add new Column names
self.lc_objectives.SetItems(Objectives, do_sort=False) # Clear and add new Column names
self.ShowTabData() # Create or delete 'Data' tab
if Data == []:
if self.HasDistribution:
# if this is distribution based, make sure the grid is clear
# do nothing
return
# Display Data on the grid control
no_col = len(Columns)
no_row = len(Data)
no_grid_col = self.grid_1.GetNumberCols()
no_grid_row = self.grid_1.GetNumberRows()
# Adjust grid size according to the size of Data
if no_col > no_grid_col:
self.grid_1.AppendCols(no_col - no_grid_col)
elif no_col < no_grid_col :
self.grid_1.DeleteCols(no_col, no_grid_col - no_col)
if no_row > no_grid_row:
self.grid_1.AppendRows(no_row - no_grid_row)
elif no_row < no_grid_row :
self.grid_1.DeleteRows(no_row, no_grid_row - no_row)
self.grid_1.ClearGrid() # Delete existing data in grid control
# Set the column header of grid control
for i, column in enumerate(Columns):
self.grid_1.SetColLabelValue(i, column[0])
# Write Data in each cell
for i, row in enumerate(Data):
for j, col in enumerate(row):
value = cdml.iif(row[j] == None, '', DB.SmartStr(row[j]))
self.grid_1.SetCellValue(i,j, value)
self.__do_layout()
def Undo(self):
""" Cancel current actions and display original data in the 'PopulationData' form"""
# Clear temporary variable for DataColumns and Data
self.DataColumns = []
self.Data = []
self.Objectives = []
# copy DataColumns and Data from parent RowPanel instance
parent = self.GetParent()
if parent != None:
self.DataColumns.extend(parent.DataColumns)
self.Data.extend(parent.Data)
self.Objectives.extend(parent.Objectives)
# deduce if undoing causes distributions
if self.DataColumns == [] and self.Objectives == []:
self.HasDistribution = None
self.lc_dist.Enable(True)
self.tc_dist_text.Enable(True)
else:
(parm,dist) = self.DataColumns[0]
self.HasDistribution = (dist != '')
self.lc_dist.Enable(self.HasDistribution)
self.tc_dist_text.Enable(self.HasDistribution)
self.ShowData(self.DataColumns, self.Data, self.Objectives) # Display data
def OnLeftDblClick(self, event):
""" Event handler to open parameters form"""
cdml.OpenForm('Parameters', self, cdml.ID_MODE_SINGL, '', ['Number','Integer','State Indicator'], self.idPrj)
def OnSelectDistribution(self, event):
""" Event handler to copy the list value to the text box"""
eventType = event.GetEventType()
if eventType in [wx.EVT_LIST_ITEM_ACTIVATED.typeId, wx.EVT_LIST_ITEM_SELECTED.typeId]:
index = self.lc_dist.GetFirstSelected()
DistName = self.lc_dist.GetItem(index,0).GetText()
self.tc_dist_text.SetValue(DistName)
def AddColumn(self):
""" Add Column name and distribution to list control"""
idx = self.lc_parm.GetFirstSelected()
if idx == -1:
cdml.dlgSimpleMsg('ERROR', 'Please select a parameter', wx.OK, wx.ICON_ERROR, Parent = self)
return
parm = str(self.lc_parm.GetItem(idx,0).GetText())
dist = str(self.tc_dist_text.GetValue())
dist_strip = dist.strip()
# Validate that this is a valid expression
try:
DB.Expr(dist)
except:
cdml.dlgErrorMsg(Parent = self)
return
if self.HasDistribution and dist_strip == '':
cdml.dlgSimpleMsg('ERROR', 'You are trying to add data based parameter while this population is currently defined by distributions - please either delete distribution parameters or make sure you defined a distribution for the parameter you are trying to add.', wx.OK, wx.ICON_ERROR, Parent = self)
return
if self.Objectives != [] and (dist_strip == ''):
msg = 'You are trying to add data while at least one objective is defined, all objectives have to be removed to define a data based population - modifying this population set is not allowed while objectives are defined. The system can delete all Objective information for you. Do you want to continue and delete the objective information along with this column?'
ans = cdml.dlgSimpleMsg('WARNING', msg, wx.YES_NO, wx.ICON_WARNING, Parent = self)
if ans == wx.ID_YES:
# remove from list control display
self.lc_objectives.DeleteAllItems()
self.Objectives=[]
self.ShowTabData()
else:
return
no_page = self.nb.GetPageCount()
no_column = self.lc_column.GetItemCount()
if no_column == 0 : # if first item being added to column listbox
self.HasDistribution = (dist_strip != '')
self.ShowTabData()
self.lc_dist.Enable(self.HasDistribution)
self.tc_dist_text.Enable(self.HasDistribution)
else : # add more columns
if no_page == 1 and dist_strip == '':
cdml.dlgSimpleMsg('ERROR', 'Please select a distribution', wx.OK, wx.ICON_ERROR, Parent = self)
return
# If this point was reached, then the distribution is ok
# Add new column name (and distribution) to list control
idx = self.lc_column.GetFirstSelected()
if idx == -1 : idx = self.lc_column.GetItemCount()
ItemToAdd = (parm,dist)
# add to display
self.lc_column.AddItem(ItemToAdd, idx, False)
# update the data columns - this duality is needed for windows systems
# that store only 512 characters in a listbox
self.DataColumns.insert(idx, ItemToAdd)
if self.nb.GetPageCount() == 2 : return
if idx == self.lc_column.GetItemCount(): # Append New Column
self.grid_1.AppendCols(1)
else: # insert new column
self.grid_1.InsertCols(idx, 1, True)
self.grid_1.SetColLabelValue(idx, parm)
def DeleteColumn(self):
""" Delete Column Name from list control"""
idx = self.lc_column.GetFirstSelected()
if idx == -1 :
cdml.dlgSimpleMsg('ERROR', 'Please select an item to remove', Parent = self)
return
# generate a warning message only if data is about to be deleted
if self.nb.GetPageCount() > 2:
msg = 'This column may include data. The data will be deleted also. Do you want to continue?'
ans = cdml.dlgSimpleMsg('WARNING', msg, wx.YES_NO, wx.ICON_WARNING, Parent = self)
if ans == wx.ID_NO:
return
if self.Objectives != []:
msg = 'There are Objective information related to this population set - modifying this population set is not allowed while objectives are defined. The system can delete all Objective information for you. Do you want to continue and delete the objective information along with this column?'
ans = cdml.dlgSimpleMsg('WARNING', msg, wx.YES_NO, wx.ICON_WARNING, Parent = self)
if ans == wx.ID_YES:
# remove from list control display
self.lc_objectives.DeleteAllItems()
self.Objectives=[]
self.ShowTabData()
else:
return
# Remove from list
(parm,dist) = self.DataColumns.pop(idx)
# remove from list control display
self.lc_column.DeleteItem(idx)
if len(self.DataColumns)>idx:
self.lc_column.Select(idx, True)
oldidx = self.lc_parm.GetFirstSelected()
self.lc_parm.Select(oldidx, False)
idx2 = self.lc_parm.FindItem(-1, parm)
if idx2 != wx.NOT_FOUND:
self.lc_parm.Select(idx2,True)
self.tc_dist_text.SetValue(dist)
if self.nb.GetPageCount() > 2:
self.grid_1.DeleteCols(idx,1, False)
# refresh Column Labels
for i in range(idx, self.lc_column.GetItemCount()):
label = str(self.lc_column.GetItem(idx,0).GetText())
self.grid_1.SetColLabelValue(i, label)
if self.lc_column.GetItemCount() == 0:
if self.nb.GetPageCount() > 2:
self.grid_1.ClearGrid()
if self.lc_objectives.GetItemCount() == 0:
self.HasDistribution = None
self.ShowTabData()
self.lc_dist.Enable(not self.HasDistribution)
self.tc_dist_text.Enable(not self.HasDistribution)
def AddObjective(self):
"Adds an objective to the objectives list box"
obj_filter_expr_txt = str(self.tc_obj_filter_expr.GetValue())
obj_stat_expr_txt = str(self.tc_obj_stat_expr.GetValue())
obj_stat_func = str(self.cc_obj_stat_func.GetTextCtrl().GetValue())
obj_target_txt = str(self.tc_obj_target.GetValue())
obj_weight_txt = str(self.tc_obj_weight.GetValue())
# Validate that this is a valid entry
try:
ErrorControl = "Filter Expression"
obj_filter_expr = DB.Expr(obj_filter_expr_txt)
ErrorControl = "Statistics Expression"
obj_stat_expr = DB.Expr(obj_stat_expr_txt)
ErrorControl = "Statistics Function"
if obj_stat_func.strip() == '':
raise ValueError, 'Empty statistics function cannot be used'
ErrorControl = "Target Value"
obj_target = float(obj_target_txt)
if not DB.IsFinite(obj_target):
raise ValueError, 'Target Value must be finite'
ErrorControl = "Weight"
obj_weight = float(obj_weight_txt)
if not DB.IsFinite(obj_weight):
raise ValueError, 'Weight Value must be finite'
except:
cdml.dlgErrorMsg(msg_prefix = 'Error detected while processing ' + ErrorControl + ': ', Parent = self)
return
# If this point was reached, then the objective is ok
# Add new the new objective to the list in the appropriate place
idx = self.lc_objectives.GetFirstSelected()
if idx == -1 : idx = self.lc_objectives.GetItemCount()
ItemToAdd = (obj_filter_expr, obj_stat_expr, obj_stat_func, obj_target, obj_weight, None, None)
# add to display
self.lc_objectives.AddItem(ItemToAdd, idx, False)
# update the objectives - this duality is needed for windows systems
# that store only 512 characters in a listbox
self.Objectives.insert(idx, ItemToAdd)
def DeleteObjective(self):
"Deletes an objective from the objectives list box"
idx = self.lc_objectives.GetFirstSelected()
if idx == -1 :
cdml.dlgSimpleMsg('ERROR', 'Please select an item to remove', Parent = self)
return
# Remove from list
(obj_filter_expr, obj_stat_expr, obj_stat_func, obj_target, obj_weight, obj_calculated, obj_error) = self.Objectives.pop(idx)
# remove from list control display
self.lc_objectives.DeleteItem(idx)
if len(self.Objectives)>idx:
self.lc_objectives.Select(idx, True)
# update the text boxes with the deleted values
self.tc_obj_filter_expr.SetValue(obj_filter_expr)
self.tc_obj_stat_expr.SetValue(obj_stat_expr)
self.cc_obj_stat_func.GetTextCtrl().SetValue(obj_stat_func)
self.tc_obj_target.SetValue(DB.SmartStr(obj_target))
self.tc_obj_weight.SetValue(DB.SmartStr(obj_weight))
# handle hiding/showing controls according to distribution status
if self.lc_objectives.GetItemCount() == 0:
if self.lc_column.GetItemCount() == 0:
self.HasDistribution = None
self.ShowTabData()
self.lc_dist.Enable(not self.HasDistribution)
self.tc_dist_text.Enable(not self.HasDistribution)
def SaveData(self):
""" Gather current DataColumns/Data and then save it to list of parent panel"""
no_column = self.lc_column.GetItemCount()
DataColumns = self.DataColumns
Data = []
if self.nb.GetPageCount() > 2:
if no_column != self.grid_1.GetNumberCols():
raise ValueError, 'The number of columns is different from the columns in the data tab'
for i in range(self.grid_1.GetNumberRows()):
row = []
for j in range(no_column):
value = self.grid_1.GetCellValue(i,j)
if value == '':
value = None
else:
value = float(value)
row.append(value)
Data.append(row)
if self.Data != Data:
# If data was changed and distributions exists in a data population
# then this means that objectives should not be saved verify this
# with the user before continuing
if self.Objectives != [] and not self.HasDistribution:
#
msg = 'There are Objective information related to this population set - and data was modified by the user. Maintaining the objectives form calculation is therefore not allowed. The system can delete all Objective information for you. Do you want to continue and delete the objective information?'
ans = cdml.dlgSimpleMsg('WARNING', msg, wx.YES_NO, wx.ICON_WARNING, Parent = self)
if ans == wx.ID_YES:
# remove from list control display
self.lc_objectives.DeleteAllItems()
self.Objectives=[]
self.ShowTabData()
else:
raise ValueError, 'Data was modified by the user while objectives information exists. Either undo data changes or delete objectives to allow retaining the changes'
self.Data = Data
Objectives = self.Objectives
parent = self.GetParent()
if parent != None:
parent.DataColumns = DataColumns
parent.Data = Data
parent.Objectives = Objectives
def ImportCSV(self):
""" Import Population Data from a CSV file"""
wildcard = "CSV File (*.csv)|*.csv| All files (*.*)|*.*"
dialog = wx.FileDialog(None, "Choose a file", os.getcwd(), "", wildcard, wx.OPEN)
if dialog.ShowModal() == wx.ID_OK:
try:
(DataColumns, Data) = DB.ImportDataFromCSV(dialog.GetPath())
Objectives = [] # currently no objectives imported
# Make sure that DataColumns is composed of strings
# alone and not numbers or other data types
# this is a minimal precaution - no other validity checks
# are made other than what made in ImportDataFromCSV
AllStrings = all(map(lambda (ColumnName,Distribution): DB.IsStr(ColumnName), DataColumns))
if not AllStrings:
raise ValueError, 'Error Loading CSV file - headers are not all strings'
except:
cdml.dlgErrorMsg(Parent = self)
else:
# set the HasDistribution flag to False since loading
# a distribution is not currently supported.
self.HasDistribution = False
self.lc_dist.Enable(not self.HasDistribution)
self.tc_dist_text.Enable(not self.HasDistribution)
# also load this data to the object
self.ShowTabData()
self.DataColumns = DataColumns
self.Data = Data
self.Objectives = Objectives
self.ShowData(DataColumns, Data, Objectives)
self.Raise()
dialog.Destroy() # Destroy file selection dialog
def ExportCSV(self, DataColumns, Data ):
""" Export Population Data from a CSV file"""
wildcard = "CSV File (*.csv)|*.csv| All files (*.*)|*.*"
dialog = wx.FileDialog(None, "Choose a file name to save the data", os.getcwd(), "", wildcard, wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
if dialog.ShowModal() == wx.ID_OK:
try:
# convert the columns from tuples to strings
ColumnHeadersToUse = map(lambda (ColumnName , Distribution) : ColumnName, DataColumns)
DB.ExportDataToCSV(dialog.GetPath(), Data, ColumnHeadersToUse)
except:
cdml.dlgErrorMsg(Parent = self)
else:
# successfully saved the exported data
cdml.dlgSimpleMsg('INFO', 'The data has been successfully saved to file', wx.OK, wx.ICON_INFORMATION, Parent = self)
self.Raise()
dialog.Destroy() # Destroy file selection dialog
def OnButtonClick(self, event):
""" Event handler for buttons """
btn_id = event.GetId()
try:
if btn_id == cdml.IDF_BUTTON2: # Import
self.ImportCSV()
if btn_id == cdml.IDF_BUTTON3: # Export
try:
self.SaveData()
self.ShowData(self.DataColumns, self.Data, self.Objectives)
except :
cdml.dlgErrorMsg(Parent = self)
else:
if self.Data == []:
cdml.dlgSimpleMsg('INFO', 'No data has been defined so exporting makes no sense', wx.OK, wx.ICON_INFORMATION, Parent = self)
else:
self.ExportCSV(self.DataColumns, self.Data)
elif btn_id == cdml.IDF_BUTTON4 : # Undo
self.Undo()
elif btn_id == cdml.IDF_BUTTON5 or \
event.GetEventType() == wx.wxEVT_CLOSE_WINDOW : # Ok or Close
try:
self.SaveData()
except :
cdml.dlgErrorMsg(Parent = self)
else :
cdml.CloseForm(self, False)
elif btn_id == wx.ID_ADD: # Up Arrow : Add new State/Distribution
self.AddColumn()
elif btn_id == wx.ID_DELETE: # Down Arrow : Delete State/Distribution
self.DeleteColumn()
elif btn_id == cdml.IDF_BUTTON7: # Down Arrow in objective pane
self.DeleteObjective()
elif btn_id == cdml.IDF_BUTTON8: # Up Arrow in objective pane
self.AddObjective()
except:
cdml.dlgErrorMsg(Parent = self)
def OnMenuSelected(self, event):
""" Event handler for Popup menu"""
# Use the default handler first and if no more processing needed return
if cdml.OnMenuSelected(self, event):
return
menuId = event.GetId()
if menuId == cdml.IDF_BUTTON1: # ADD ROW
self.grid_1.AppendRows(1)
elif menuId == cdml.IDF_BUTTON2: # Delete Row
row = self.grid_1.GetGridCursorRow()
if row == -1 : return
self.grid_1.DeleteRows(row)
elif menuId == wx.ID_UNDO: # Undo
self.Undo()
def OnPopupMenu(self, event):
""" Event handler to open Popup menu """
if not hasattr(self, 'pup_menus'): return
menu = cdml.setupMenu(self, self.pup_menus, False) # crate popup menu and assign event handler
page = self.nb.GetCurrentPage()
menu_enable = cdml.iif( page.Id == 0, False, True )
item_add = menu.FindItemById(cdml.IDF_BUTTON1)
item_del = menu.FindItemById(cdml.IDF_BUTTON2)
item_add.Enable(menu_enable)
item_del.Enable(menu_enable)
self.PopupMenu(menu) # open popup menu
menu.Destroy() # remove from memory to show just once when right button is clicked
# end of class MainFrame
if __name__ == "__main__":
app = wx.App(0)
#wx.InitAllImageHandlers() Deprecated
DB.LoadAllData('InData' + DB.os.sep + 'Testing.zip')
frame_1 = MainFrame(mode=None, data=1090, type=None, id_prj=None, parent = None)
app.SetTopWindow(frame_1)
frame_1.Show()
app.MainLoop()