mailr11775 - /branches/bieri_gui/gui_bieri/user_functions/pipes.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on December 13, 2010 - 14:37:
Author: bugman
Date: Mon Dec 13 14:37:43 2010
New Revision: 11775

URL: http://svn.gna.org/viewcvs/relax?rev=11775&view=rev
Log:
The pipe.create user function window now uses the ComboBox instead of the 
Chooser.


Modified:
    branches/bieri_gui/gui_bieri/user_functions/pipes.py

Modified: branches/bieri_gui/gui_bieri/user_functions/pipes.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/user_functions/pipes.py?rev=11775&r1=11774&r2=11775&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/user_functions/pipes.py (original)
+++ branches/bieri_gui/gui_bieri/user_functions/pipes.py Mon Dec 13 14:37:43 
2010
@@ -73,17 +73,6 @@
     title = 'Addition of new data pipes'
 
 
-    def _evt_pipe_type(self, event):
-        """Selection of the pipe type.
-
-        @param event:   The wx event.
-        @type event:    wx event
-        """
-
-        # Store the choice.
-        self.pipe_type = str(event.GetString())
-
-
     def add_uf(self, sizer):
         """Add the pipe specific GUI elements.
 
@@ -95,7 +84,7 @@
         self.pipe_name = self.input_field(sizer, "The data pipe name:")
 
         # The type selection.
-        self.chooser(sizer, "The type of data pipe:", self._evt_pipe_type, 
[''] + VALID_TYPES)
+        self.pipe_type = self.combo_box(sizer, "The type of data pipe:", 
[''] + VALID_TYPES)
 
 
     def execute(self):
@@ -103,6 +92,7 @@
 
         # Get the name and type.
         pipe_name = str(self.pipe_name.GetValue())
+        pipe_type = str(self.pipe_type.GetValue())
 
         # Set the name.
-        self.interpreter.pipe.create(pipe_name=pipe_name, 
pipe_type=self.pipe_type)
+        self.interpreter.pipe.create(pipe_name=pipe_name, 
pipe_type=pipe_type)




Related Messages


Powered by MHonArc, Updated Mon Dec 13 15:00:02 2010