mailr13076 - /branches/gui_testing/gui/analyses/wizard.py


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

Header


Content

Posted by edward on June 16, 2011 - 19:09:
Author: bugman
Date: Thu Jun 16 19:09:23 2011
New Revision: 13076

URL: http://svn.gna.org/viewcvs/relax?rev=13076&view=rev
Log:
Some playing around with the analysis wizard.

This is going to take some work!


Modified:
    branches/gui_testing/gui/analyses/wizard.py

Modified: branches/gui_testing/gui/analyses/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/wizard.py?rev=13076&r1=13075&r2=13076&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/wizard.py (original)
+++ branches/gui_testing/gui/analyses/wizard.py Thu Jun 16 19:09:23 2011
@@ -24,7 +24,7 @@
 """Module for the analysis selection wizard."""
 
 # relax GUI module imports.
-from gui.wizard import Wiz_window
+from gui.wizard import Wiz_panel, Wiz_window
 
 
 class Analysis_wizard:
@@ -41,9 +41,30 @@
         @rtype:     str, str
         """
 
+        # Create the wizard.
+        self.wizard = Wizard()
+        self.wizard.ShowModal()
+        self.wizard.Destroy()
+
         # FIXME.
         analysis_type = 'r1'
         pipe_name = 'x'
 
         # Return the analysis type and pipe name.
         return analysis_type, pipe_name
+
+
+class Data_pipe(Wiz_panel):
+    pass
+
+
+class New_analysis(Wiz_panel):
+    pass
+
+
+class Wizard(Wiz_window):
+    def __init__(self):
+        # Initialise the panels.
+        self.panel1 = New_analysis()
+        self.panel2 = Data_pipe()
+




Related Messages


Powered by MHonArc, Updated Thu Jun 16 19:40:02 2011