Package gui :: Package input_elements :: Module sequence
[hide private]
[frames] | no frames]

Source Code for Module gui.input_elements.sequence

  1  ############################################################################### 
  2  #                                                                             # 
  3  # Copyright (C) 2012-2014 Edward d'Auvergne                                   # 
  4  #                                                                             # 
  5  # This file is part of the program relax (http://www.nmr-relax.com).          # 
  6  #                                                                             # 
  7  # This program is free software: you can redistribute it and/or modify        # 
  8  # it under the terms of the GNU General Public License as published by        # 
  9  # the Free Software Foundation, either version 3 of the License, or           # 
 10  # (at your option) any later version.                                         # 
 11  #                                                                             # 
 12  # This program is distributed in the hope that it will be useful,             # 
 13  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
 14  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
 15  # GNU General Public License for more details.                                # 
 16  #                                                                             # 
 17  # You should have received a copy of the GNU General Public License           # 
 18  # along with this program.  If not, see <http://www.gnu.org/licenses/>.       # 
 19  #                                                                             # 
 20  ############################################################################### 
 21   
 22  # Module docstring. 
 23  """Module containing a set of special GUI elements to be used in the relax wizards.""" 
 24   
 25  # Python module imports. 
 26  import wx 
 27  import wx.lib.mixins.listctrl 
 28   
 29  # relax module imports. 
 30  from graphics import fetch_icon 
 31  from gui.input_elements.combo_list import Combo_list 
 32  from gui.fonts import font 
 33  from gui.misc import add_border 
 34  from gui.string_conv import float_to_gui, gui_to_float, gui_to_int, gui_to_list, gui_to_py, gui_to_str, gui_to_tuple, int_to_gui, list_to_gui, py_to_gui, str_to_gui, tuple_to_gui 
 35  from lib.check_types import is_list 
 36  from lib.errors import RelaxError 
 37  from status import Status; status = Status() 
 38   
 39   
40 -class Sequence:
41 """Wizard GUI element for the input of all types of Python sequence objects. 42 43 The supported Python types include: 44 - list of floats 45 - list of integers 46 - list of strings 47 - tuple of floats 48 - tuple of integers 49 - tuple of strings 50 """ 51
52 - def __init__(self, name=None, default=None, parent=None, element_type='default', seq_type=None, value_type=None, dim=None, min=0, max=1000, sizer=None, titles=None, desc=None, combo_choices=None, combo_data=None, combo_list_min=None, tooltip=None, divider=None, padding=0, spacer=None, height_element=27, single_value=False, read_only=False, can_be_none=False):
53 """Set up the element. 54 55 @keyword name: The name of the element to use in titles, etc. 56 @type name: str 57 @keyword default: The default value of the element. 58 @type default: sequence object 59 @keyword parent: The wizard GUI element. 60 @type parent: wx.Panel instance 61 @keyword element_type: The type of GUI element to create. If set to 'default', the wx.TextCtrl element with a button to bring up a dialog with ListCtrl will be used. If set to 'combo_list', the special gui.components.combo_list.Combo_list element will be used. 62 @type element_type: str 63 @keyword seq_type: The type of Python sequence. This should be one of 'list' or 'tuple'. 64 @type seq_type: str 65 @keyword value_type: The type of Python object that the value should be. This can be one of 'float', 'int', or 'str'. 66 @type value_type: str 67 @keyword dim: The dimensions that a list or tuple must conform to. For a 1D sequence, this can be a single value or a tuple of possible sizes. For a 2D sequence (a numpy matrix or list of lists), this must be a tuple of the fixed dimension sizes, e.g. a 3x5 matrix should be specified as (3, 5). 68 @type dim: int, tuple of int or None 69 @keyword min: For a SpinCtrl, the minimum value allowed. 70 @type min: int 71 @keyword max: For a SpinCtrl, the maximum value allowed. 72 @type max: int 73 @keyword sizer: The sizer to put the input field widget into. 74 @type sizer: wx.Sizer instance 75 @keyword titles: The titles of each of the elements of the fixed dimension elements. 76 @type titles: list of str 77 @keyword desc: The text description. 78 @type desc: str 79 @keyword combo_choices: The list of choices to present to the user. This is only used if the element_type is set to 'combo'. 80 @type combo_choices: list of str 81 @keyword combo_data: The data returned by a call to GetValue(). This is only used if the element_type is set to 'combo'. If supplied, it should be the same length at the combo_choices list. If not supplied, the combo_choices list will be used for the returned data. 82 @type combo_data: list 83 @keyword combo_list_min: The minimum length for the Combo_list object. 84 @type combo_list_min: int or None 85 @keyword tooltip: The tooltip which appears on hovering over the text or input field. 86 @type tooltip: str 87 @keyword divider: The position of the divider. 88 @type divider: int 89 @keyword padding: Spacing to the left and right of the widgets. 90 @type padding: int 91 @keyword spacer: The amount of spacing to add below the field in pixels. If None, a stretchable spacer will be used. 92 @type spacer: None or int 93 @keyword height_element: The height in pixels of the GUI element. 94 @type height_element: int 95 @keyword single_value: A flag which if True will cause single input values to be treated as single values rather than a list or tuple. 96 @type single_value: bool 97 @keyword read_only: A flag which if True means that the text of the element cannot be edited. 98 @type read_only: bool 99 @keyword can_be_none: A flag which specifies if the element is allowed to have the None value. 100 @type can_be_none: bool 101 """ 102 103 # Store the args. 104 self.parent = parent 105 self.name = name 106 self.default = default 107 self.element_type = element_type 108 self.seq_type = seq_type 109 self.value_type = value_type 110 self.dim = dim 111 self.min = min 112 self.max = max 113 self.titles = titles 114 self.single_value = single_value 115 self.can_be_none = can_be_none 116 117 # The base types. 118 if value_type in ['float', 'num']: 119 self.convert_from_gui = gui_to_float 120 self.convert_to_gui = float_to_gui 121 elif value_type == 'int': 122 self.convert_from_gui = gui_to_int 123 self.convert_to_gui = int_to_gui 124 elif value_type == 'str': 125 self.convert_from_gui = gui_to_str 126 self.convert_to_gui = str_to_gui 127 else: 128 self.convert_from_gui = gui_to_py 129 self.convert_to_gui = py_to_gui 130 131 # The sequence types. 132 if seq_type == 'list': 133 self.convert_from_gui_seq = gui_to_list 134 self.convert_to_gui_seq = list_to_gui 135 elif seq_type == 'tuple': 136 self.convert_from_gui_seq = gui_to_tuple 137 self.convert_to_gui_seq = tuple_to_gui 138 else: 139 raise RelaxError("Unknown sequence type '%s'." % seq_type) 140 141 # Initialise the default element. 142 if self.element_type == 'default': 143 # Translate the read_only flag if None. 144 if read_only == None: 145 read_only = False 146 147 # Init. 148 sub_sizer = wx.BoxSizer(wx.HORIZONTAL) 149 150 # Left padding. 151 sub_sizer.AddSpacer(padding) 152 153 # The description. 154 text = wx.StaticText(parent, -1, desc, style=wx.ALIGN_LEFT) 155 text.SetFont(font.normal) 156 sub_sizer.Add(text, 0, wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0) 157 158 # The divider. 159 if not divider: 160 raise RelaxError("The divider position has not been supplied.") 161 162 # Spacing. 163 x, y = text.GetSize() 164 sub_sizer.AddSpacer((divider - x, 0)) 165 166 # The input field. 167 self._field = wx.TextCtrl(parent, -1, '') 168 self._field.SetMinSize((50, height_element)) 169 self._field.SetFont(font.normal) 170 sub_sizer.Add(self._field, 1, wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 0) 171 172 # Read-only. 173 if read_only: 174 self._field.SetEditable(False) 175 colour = parent.GetBackgroundColour() 176 self._field.SetOwnBackgroundColour(colour) 177 178 # A little spacing. 179 sub_sizer.AddSpacer(5) 180 181 # The edit button. 182 button = wx.BitmapButton(parent, -1, wx.Bitmap(fetch_icon('oxygen.actions.edit-rename', "16x16"), wx.BITMAP_TYPE_ANY)) 183 button.SetMinSize((height_element, height_element)) 184 button.SetToolTipString("Edit the values.") 185 sub_sizer.Add(button, 0, wx.ADJUST_MINSIZE|wx.ALIGN_CENTER_VERTICAL, 0) 186 parent.Bind(wx.EVT_BUTTON, self.open_dialog, button) 187 188 # Right padding. 189 sub_sizer.AddSpacer(padding) 190 191 # Add to the main sizer. 192 sizer.Add(sub_sizer, 1, wx.EXPAND|wx.ALL, 0) 193 194 # Spacing below the widget. 195 if spacer == None: 196 sizer.AddStretchSpacer() 197 else: 198 sizer.AddSpacer(spacer) 199 200 # Tooltip. 201 if tooltip: 202 text.SetToolTipString(tooltip) 203 self._field.SetToolTipString(tooltip) 204 205 # Set the default value. 206 if self.default != None: 207 self._field.SetValue(self.convert_to_gui_seq(self.default)) 208 209 # Initialise the combo list input field. 210 elif self.element_type == 'combo_list': 211 # Translate the read_only flag if None. 212 if read_only == None: 213 read_only = False 214 215 # Set up the Combo_list object. 216 self._field = Combo_list(parent, sizer, desc, value_type=value_type, min_length=combo_list_min, choices=combo_choices, data=combo_data, default=default, tooltip=tooltip, read_only=read_only, can_be_none=can_be_none) 217 218 # Unknown field. 219 else: 220 raise RelaxError("Unknown element type '%s'." % self.element_type)
221 222
223 - def Clear(self):
224 """Special method for clearing or resetting the GUI element.""" 225 226 # Clear the value from a TextCtrl or ComboBox. 227 if self.element_type in ['default', 'combo_list']: 228 self._field.Clear()
229 230
231 - def GetValue(self):
232 """Special method for returning the sequence values of the GUI element. 233 234 @return: The sequence of values. 235 @rtype: sequence type 236 """ 237 238 # The value. 239 value = self._field.GetValue() 240 241 # Handle Combo_list elements. 242 if self.element_type == 'combo_list': 243 # Empty lists. 244 if value == [] or value == None: 245 return None 246 247 # Non Combo_list elements. 248 else: 249 # Handle single values. 250 value_set = False 251 if self.single_value: 252 try: 253 # Convert. 254 value = self.convert_from_gui(value) 255 256 # Check that the conversion was successful. 257 if value == None and self.can_be_none: 258 value_set = True 259 elif self.value_type == None: 260 value_set = True 261 elif self.value_type in ['float', 'num']: 262 if isinstance(value, int) or isinstance(value, float): 263 value_set = True 264 elif self.value_type == 'int': 265 if isinstance(value, int): 266 value_set = True 267 elif self.value_type == 'str': 268 if self.seq_type == 'list' and value[0] != '[': 269 value_set = True 270 elif self.seq_type == 'tuple' and value[0] != '(': 271 value_set = True 272 except: 273 pass 274 275 # Convert to a sequence, handling bad user behaviour. 276 if not value_set: 277 try: 278 value = self.convert_from_gui_seq(value) 279 280 # Set the value to None or an empty sequence. 281 except RelaxError: 282 if self.can_be_none: 283 value = None 284 elif self.seq_type == 'list': 285 value = [] 286 else: 287 value = () 288 289 # Handle all other errors. 290 except: 291 value = None 292 293 # Nothing to do. 294 if value == None: 295 return None 296 297 # Convert sequences to single values as needed. 298 if self.single_value: 299 if (isinstance(value, list) or isinstance(value, tuple)) and len(value) == 1: 300 value = value[0] 301 302 # Convert single values to sequences as needed. 303 elif value != None: 304 if self.seq_type == 'list' and not isinstance(value, list): 305 value = [value] 306 elif self.seq_type == 'tuple' and not isinstance(value, tuple): 307 value = (value,) 308 309 # Handle empty list and tuple values. 310 if not self.single_value and len(value) == 0: 311 return None 312 313 # Return the value. 314 return value
315 316
317 - def SetValue(self, value=None, index=None):
318 """Special method for setting the value of the GUI element. 319 320 @keyword value: The value to set. 321 @type value: value or list of values 322 @keyword index: The index of the value to set, if the full list is not given. 323 @type index: int or None 324 """ 325 326 # The ComboBox list. 327 if self.element_type == 'combo_list': 328 self._field.SetValue(value=value, index=index) 329 330 # The other elements. 331 else: 332 # Handle single values. 333 if self.single_value and isinstance(value, list) and len(value) == 1: 334 value = value[0] 335 336 # Convert and set the value. 337 self._field.SetValue(self.convert_to_gui_seq(value))
338 339
340 - def UpdateChoices(self, combo_choices=None, combo_data=None, combo_default=None):
341 """Special wizard method for updating the list of choices in a ComboBox type element. 342 343 @keyword combo_choices: The list of choices to present to the user. This is only used if the element_type is set to 'combo_list'. 344 @type combo_choices: list of str 345 @keyword combo_data: The data returned by a call to GetValue(). This is only used if the element_type is set to 'combo_list'. If supplied, it should be the same length at the combo_choices list. If not supplied, the combo_choices list will be used for the returned data. 346 @type combo_data: list 347 @keyword combo_default: The default value of the ComboBox. This is only used if the element_type is set to 'combo_list'. 348 @type combo_default: str or None 349 """ 350 351 # The ComboBox list. 352 if self.element_type == 'combo_list': 353 self._field.UpdateChoices(combo_choices=combo_choices, combo_data=combo_data, combo_default=combo_default)
354 355
356 - def open_dialog(self, event):
357 """Open a special dialog for inputting a list of text values. 358 359 @param event: The wx event. 360 @type event: wx event 361 """ 362 363 # Show the window. 364 self.selection_win_show() 365 366 # Extract the data from the selection window once closed. 367 self.selection_win_data() 368 369 # Destroy the window. 370 del self.sel_win
371 372
373 - def selection_win_data(self):
374 """Extract the data from the selection window.""" 375 376 # Get the value. 377 value = self.sel_win.GetValue() 378 379 # No sequence data. 380 if value == None or not len(value): 381 self.Clear() 382 383 # Set the values. 384 else: 385 self.SetValue(value)
386 387
388 - def selection_win_show(self):
389 """Show the selection window.""" 390 391 # Initialise the model selection window. 392 self.sel_win = Sequence_window(parent=self.parent, name=self.name, seq_type=self.seq_type, value_type=self.value_type, titles=self.titles, dim=self.dim) 393 394 # Set the model selector window selections. 395 self.sel_win.SetValue(self.GetValue()) 396 397 # Show the model selector window. 398 if status.show_gui: 399 self.sel_win.ShowModal() 400 self.sel_win.Close()
401 402 403
404 -class Sequence_list_ctrl(wx.ListCtrl, wx.lib.mixins.listctrl.TextEditMixin, wx.lib.mixins.listctrl.ListCtrlAutoWidthMixin):
405 """The string list ListCtrl object.""" 406
407 - def __init__(self, parent):
408 """Initialise the control. 409 410 @param parent: The parent window. 411 @type parent: wx.Frame instance 412 """ 413 414 # Execute the parent __init__() methods. 415 wx.ListCtrl.__init__(self, parent, -1, style=wx.BORDER_SUNKEN|wx.LC_REPORT|wx.LC_HRULES|wx.LC_VRULES) 416 wx.lib.mixins.listctrl.TextEditMixin.__init__(self) 417 wx.lib.mixins.listctrl.ListCtrlAutoWidthMixin.__init__(self) 418 419 # Catch edits. 420 self.Bind(wx.EVT_LIST_BEGIN_LABEL_EDIT, self.begin_label_edit)
421 422
423 - def begin_label_edit(self, event):
424 """Catch edits to make the first column read only. 425 426 @param event: The wx event. 427 @type event: wx event 428 """ 429 430 # Prevent edits in the first column. 431 if event.m_col == 0: 432 event.Veto() 433 434 # Otherwise the user is free to edit. 435 else: 436 event.Skip()
437 438 439
440 -class Sequence_window(wx.Dialog):
441 """The Python sequence object editor window.""" 442 443 # The window size. 444 SIZE = (800, 600) 445 446 # A border. 447 BORDER = 10 448 449 # Sizes. 450 SIZE_BUTTON = (150, 33) 451
452 - def __init__(self, parent=None, name='', seq_type='list', value_type='str', dim=None, titles=None):
453 """Set up the string list editor window. 454 455 @keyword parent: The parent GUI element. 456 @type parent: wx.Window instance or None 457 @keyword name: The name of the window. 458 @type name: str 459 @keyword seq_type: The type of Python sequence. This should be one of 'list' or 'tuple'. 460 @type seq_type: str 461 @keyword value_type: The type of Python data expected in the sequence. This should be one of 'float', 'int', or 'str'. 462 @type value_type: str 463 @keyword dim: The fixed dimension that the sequence must conform to. 464 @type dim: int or None 465 @keyword titles: The titles of each of the elements of the fixed dimension elements. 466 @type titles: list of str 467 """ 468 469 # Store the args. 470 self.name = name 471 self.seq_type = seq_type 472 self.value_type = value_type 473 self.dim = dim 474 self.titles = titles 475 476 # The base types. 477 if value_type in ['float', 'num']: 478 self.convert_from_gui = gui_to_float 479 self.convert_to_gui = float_to_gui 480 elif value_type == 'int': 481 self.convert_from_gui = gui_to_int 482 self.convert_to_gui = int_to_gui 483 elif value_type == 'str': 484 self.convert_from_gui = gui_to_str 485 self.convert_to_gui = str_to_gui 486 else: 487 raise RelaxError("Unknown base data type '%s'." % value_type) 488 489 # Variable length. 490 if not hasattr(self, 'variable_length'): 491 self.variable_length = False 492 self.offset = 0 493 if dim == None: 494 self.variable_length = True 495 self.offset = 1 496 497 # The title of the dialog. 498 title = "Edit the %s values." % name 499 500 # Set up the dialog. 501 wx.Dialog.__init__(self, parent, id=-1, title=title) 502 503 # Initialise some values 504 self.width = self.SIZE[0] - 2*self.BORDER 505 506 # Set the frame properties. 507 self.SetSize(self.SIZE) 508 self.Centre() 509 self.SetFont(font.normal) 510 511 # The main box sizer. 512 main_sizer = wx.BoxSizer(wx.VERTICAL) 513 514 # Pack the sizer into the frame. 515 self.SetSizer(main_sizer) 516 517 # Build the central sizer, with borders. 518 sizer = add_border(main_sizer, border=self.BORDER, packing=wx.VERTICAL) 519 520 # Add the list control. 521 self.add_list(sizer) 522 523 # Some spacing. 524 sizer.AddSpacer(self.BORDER) 525 526 # Add the bottom buttons. 527 self.add_buttons(sizer) 528 529 # Initialise the list of elements to a single element. 530 if not self.sequence.GetItemCount(): 531 self.add_element()
532 533
534 - def GetValue(self):
535 """Return the values as a sequence of values. 536 537 @return: The sequence of values. 538 @rtype: sequence type 539 """ 540 541 # Init. 542 values = [] 543 544 # Loop over the entries. 545 for i in range(self.sequence.GetItemCount()): 546 # Get the text. 547 item = self.sequence.GetItem(i, col=1) 548 text = item.GetText() 549 550 # Store the text. 551 try: 552 value = self.convert_from_gui(text) 553 except: 554 value = None 555 values.append(value) 556 557 # Sequence conversion. 558 if self.seq_type == 'tuple': 559 values = tuple(values) 560 561 # Check that something is set. 562 empty = True 563 for i in range(len(values)): 564 if values[i] != None: 565 empty = False 566 break 567 568 # Return nothing. 569 if empty: 570 return None 571 572 # Return the sequence. 573 return values
574 575
576 - def SetValue(self, values):
577 """Set up the list values. 578 579 @param values: The list of values to add to the list. 580 @type values: list of str or None 581 """ 582 583 # No value. 584 if values == None: 585 return 586 587 # Invalid list, so do nothing. 588 if not self.variable_length and is_list(values) and len(values) != self.dim: 589 return 590 591 # Single values. 592 try: 593 len(values) 594 except TypeError: 595 if self.seq_type == 'list': 596 values = [values] 597 elif self.seq_type == 'tuple': 598 values = (values,) 599 600 # Loop over the entries. 601 for i in range(len(values)): 602 # Fixed dimension sequences - set the values of the pre-created list. 603 if not self.variable_length: 604 self.sequence.SetStringItem(index=i, col=1, label=self.convert_to_gui(values[i])) 605 606 # Variable dimension sequences - append the item to the end of the blank list. 607 else: 608 # The first element already exists. 609 if i != 0: 610 # First add the index+1. 611 self.sequence.InsertStringItem(i, int_to_gui(i+1)) 612 613 # Then set the value. 614 self.sequence.SetStringItem(index=i, col=1, label=self.convert_to_gui(values[i]))
615 616
617 - def add_buttons(self, sizer):
618 """Add the buttons to the sizer. 619 620 @param sizer: A sizer object. 621 @type sizer: wx.Sizer instance 622 """ 623 624 # Create a horizontal layout for the buttons. 625 button_sizer = wx.BoxSizer(wx.HORIZONTAL) 626 sizer.Add(button_sizer, 0, wx.ALIGN_CENTER|wx.ALL, 0) 627 628 # The non-fixed sequence buttons. 629 if self.variable_length: 630 # The add button. 631 button = wx.lib.buttons.ThemedGenBitmapTextButton(self, -1, None, " Add") 632 button.SetBitmapLabel(wx.Bitmap(fetch_icon('oxygen.actions.list-add-relax-blue', "22x22"), wx.BITMAP_TYPE_ANY)) 633 button.SetFont(font.normal) 634 button.SetToolTipString("Add an item to the list.") 635 button.SetMinSize(self.SIZE_BUTTON) 636 button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0) 637 self.Bind(wx.EVT_BUTTON, self.add_element, button) 638 639 # Spacer. 640 button_sizer.AddSpacer(20) 641 642 # The delete button. 643 button = wx.lib.buttons.ThemedGenBitmapTextButton(self, -1, None, " Delete") 644 button.SetBitmapLabel(wx.Bitmap(fetch_icon('oxygen.actions.list-remove', "22x22"), wx.BITMAP_TYPE_ANY)) 645 button.SetFont(font.normal) 646 button.SetToolTipString("Delete the last item.") 647 button.SetMinSize(self.SIZE_BUTTON) 648 button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0) 649 self.Bind(wx.EVT_BUTTON, self.delete, button) 650 651 # Spacer. 652 button_sizer.AddSpacer(20) 653 654 # The delete all button. 655 button = wx.lib.buttons.ThemedGenBitmapTextButton(self, -1, None, " Delete all") 656 button.SetBitmapLabel(wx.Bitmap(fetch_icon('oxygen.actions.edit-delete', "22x22"), wx.BITMAP_TYPE_ANY)) 657 button.SetFont(font.normal) 658 button.SetToolTipString("Delete all items.") 659 button.SetMinSize(self.SIZE_BUTTON) 660 button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0) 661 self.Bind(wx.EVT_BUTTON, self.delete_all, button) 662 663 # Spacer. 664 button_sizer.AddSpacer(20) 665 666 # The Ok button. 667 button = wx.lib.buttons.ThemedGenBitmapTextButton(self, -1, None, " Ok") 668 button.SetBitmapLabel(wx.Bitmap(fetch_icon('oxygen.actions.dialog-ok', "22x22"), wx.BITMAP_TYPE_ANY)) 669 button.SetFont(font.normal) 670 button.SetMinSize(self.SIZE_BUTTON) 671 button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0) 672 self.Bind(wx.EVT_BUTTON, self.close, button)
673 674
675 - def add_element(self, event=None):
676 """Append a new row to the list. 677 678 @keyword event: The wx event. 679 @type event: wx event 680 """ 681 682 # The next index. 683 next = self.sequence.GetItemCount() 684 685 # Add a new row with the index at the start. 686 if self.variable_length: 687 self.sequence.InsertStringItem(next, int_to_gui(next+1)) 688 689 # Add a new empty row. 690 else: 691 self.sequence.InsertStringItem(next, str_to_gui(''))
692 693
694 - def add_list(self, sizer):
695 """Set up the list control. 696 697 @param sizer: A sizer object. 698 @type sizer: wx.Sizer instance 699 """ 700 701 # The control. 702 self.sequence = Sequence_list_ctrl(self) 703 704 # Set the column title. 705 title = "%s%s" % (self.name[0].upper(), self.name[1:]) 706 707 # Add the index column. 708 if self.titles: 709 self.sequence.InsertColumn(0, "Title") 710 self.sequence.SetColumnWidth(0, 200) 711 else: 712 self.sequence.InsertColumn(0, "Number") 713 self.sequence.SetColumnWidth(0, 70) 714 715 # Add a single column, full width. 716 self.sequence.InsertColumn(1, title) 717 self.sequence.SetColumnWidth(1, wx.LIST_AUTOSIZE) 718 719 # Add the table to the sizer. 720 sizer.Add(self.sequence, 1, wx.ALL|wx.EXPAND, 0) 721 722 # The fixed dimension sequence - add all the rows needed. 723 if not self.variable_length: 724 for i in range(self.dim): 725 # Add a new row. 726 self.add_element() 727 728 # Add a title to the first column. 729 if self.titles: 730 self.sequence.SetStringItem(i, 0, str_to_gui(self.titles[i])) 731 732 # Otherwise add numbers starting from 1. 733 else: 734 self.sequence.SetStringItem(i, 0, int_to_gui(i+1))
735 736
737 - def close(self, event):
738 """Close the window. 739 740 @param event: The wx event. 741 @type event: wx event 742 """ 743 744 # Close the window. 745 self.Close()
746 747
748 - def delete(self, event):
749 """Remove the last item from the list. 750 751 @param event: The wx event. 752 @type event: wx event 753 """ 754 755 # Delete the last item. 756 item = self.sequence.GetItemCount() 757 self.sequence.DeleteItem(item-1) 758 759 # If the list is empty, start again with a single blank element. 760 if not self.sequence.GetItemCount(): 761 self.add_element()
762 763
764 - def delete_all(self, event):
765 """Remove all items from the list. 766 767 @param event: The wx event. 768 @type event: wx event 769 """ 770 771 # Delete. 772 self.sequence.DeleteAllItems() 773 774 # Start again with a single blank element. 775 self.add_element()
776