mailr13182 - /branches/gui_testing/gui/wizard.py


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

Header


Content

Posted by edward on June 23, 2011 - 16:14:
Author: bugman
Date: Thu Jun 23 16:14:05 2011
New Revision: 13182

URL: http://svn.gna.org/viewcvs/relax?rev=13182&view=rev
Log:
Converted many of the Wiz_window methods and variables to be private.


Modified:
    branches/gui_testing/gui/wizard.py

Modified: branches/gui_testing/gui/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/wizard.py?rev=13182&r1=13181&r2=13182&view=diff
==============================================================================
--- branches/gui_testing/gui/wizard.py (original)
+++ branches/gui_testing/gui/wizard.py Thu Jun 23 16:14:05 2011
@@ -620,7 +620,7 @@
     def on_display(self):
         """To be over-ridden if an action is to be performed prior to 
displaying the page.
 
-        This method will be called by the wizard class method display_page() 
just after hiding all other pages but prior to displaying this page.
+        This method will be called by the wizard class method 
_display_page() just after hiding all other pages but prior to displaying 
this page.
         """
 
 
@@ -721,123 +721,86 @@
         self.Centre()
 
         # Initialise the page storage.
-        self.current_page = 0
-        self.pages = []
-        self.page_sizers = []
-        self.button_sizers = []
-        self.button_flags = []
-        self.button_apply = []
-
-
-    def add_page(self, panel, apply_button=True):
-        """Add a new page to the wizard.
-
-        @param panel:           The page to add to the wizard.
-        @type panel:            wx.Panel instance
-        @keyword apply_button:  A flag which if true will show the apply 
button for that page.
-        @type apply_button:     bool
-        """
-
-        # Store the page.
-        self.pages.append(panel)
-
-        # Store a new sizer for the page and its buttons.
-        self.page_sizers.append(wx.BoxSizer(wx.VERTICAL))
-        self.main_sizer.Add(self.page_sizers[-1], 1, wx.ALL|wx.EXPAND, 0)
-
-        # Add the sizer for the top half.
-        top_sizer = wx.BoxSizer(wx.VERTICAL)
-        self.page_sizers[-1].Add(top_sizer, 1, wx.ALL|wx.EXPAND, 0)
-
-        # Add the page to the top sizer.
-        top_sizer.Add(panel, 1, wx.ALL|wx.EXPAND, 0)
-
-        # Add the sizer for the wizard buttons.
-        self.button_sizers.append(wx.BoxSizer(wx.HORIZONTAL))
-        self.page_sizers[-1].Add(self.button_sizers[-1], 0, 
wx.ALIGN_RIGHT|wx.ALL, 0)
-
-        # Store the apply button flag.
-        self.button_apply.append(apply_button)
-
-        # Store the index of the page.
-        panel.page_index = len(self.pages) - 1
-
-
-    def build_buttons(self):
+        self._current_page = 0
+        self._num_pages = 0
+        self._pages = []
+        self._page_sizers = []
+        self._button_sizers = []
+        self._button_apply_flag = []
+
+
+    def _build_buttons(self):
         """Construct the buttons for all pages of the wizard."""
 
-        # The number of pages.
-        num_pages = len(self.pages)
-
         # Loop over each page.
-        for i in range(num_pages):
+        for i in range(self._num_pages):
             # The back button (only for multi-pages, after the first).
-            if num_pages > 1 and i > 0:
+            if self._num_pages > 1 and i > 0:
                 # Create the button.
                 button = buttons.ThemedGenBitmapTextButton(self, -1, None, " 
Back")
                 
button.SetBitmapLabel(wx.Bitmap(paths.icon_22x22.go_previous_view, 
wx.BITMAP_TYPE_ANY))
                 button.SetToolTipString("Return to the previous page")
                 button.SetSize(self.size_button)
-                self.button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
-                self.Bind(wx.EVT_BUTTON, self.go_back, button)
+                self._button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
+                self.Bind(wx.EVT_BUTTON, self._go_back, button)
 
                 # Spacer.
-                self.button_sizers[i].AddSpacer(5)
+                self._button_sizers[i].AddSpacer(5)
 
             # The apply button.
-            if self.button_apply[i]:
+            if self._button_apply_flag[i]:
                 # Create the button.
                 button = buttons.ThemedGenBitmapTextButton(self, -1, None, " 
Apply")
                 button.SetBitmapLabel(wx.Bitmap(paths.icon_22x22.apply, 
wx.BITMAP_TYPE_ANY))
                 button.SetToolTipString("Apply the operation")
                 button.SetSize(self.size_button)
-                self.button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
-                self.Bind(wx.EVT_BUTTON, self.pages[i].apply, button)
+                self._button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
+                self.Bind(wx.EVT_BUTTON, self._pages[i].apply, button)
 
                 # Spacer.
-                self.button_sizers[i].AddSpacer(5)
+                self._button_sizers[i].AddSpacer(5)
 
             # The next button (only for multi-pages, excluding the last).
-            if num_pages > 1 and i < num_pages - 1:
+            if self._num_pages > 1 and i < self._num_pages - 1:
                 # Create the button.
                 button = buttons.ThemedGenBitmapTextButton(self, -1, None, " 
Next")
                 
button.SetBitmapLabel(wx.Bitmap(paths.icon_22x22.go_next_view, 
wx.BITMAP_TYPE_ANY))
                 button.SetToolTipString("Move to the next page")
                 button.SetSize(self.size_button)
-                self.button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
-                self.Bind(wx.EVT_BUTTON, self.go_next, button)
+                self._button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
+                self.Bind(wx.EVT_BUTTON, self._go_next, button)
 
             # The OK button (only for single pages).
-            if num_pages == 1:
+            if self._num_pages == 1:
                 button = buttons.ThemedGenBitmapTextButton(self, -1, None, " 
OK")
                 button.SetBitmapLabel(wx.Bitmap(paths.icon_22x22.ok, 
wx.BITMAP_TYPE_ANY))
                 button.SetToolTipString("Accept the operation")
                 button.SetSize(self.size_button)
-                self.button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
+                self._button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
                 self.Bind(wx.EVT_BUTTON, self.ok, button)
 
             # The finish button (only for the last page with multi-pages).
-            if num_pages > 1 and i == num_pages - 1:
+            if self._num_pages > 1 and i == self._num_pages - 1:
                 button = buttons.ThemedGenBitmapTextButton(self, -1, None, " 
Finish")
                 button.SetBitmapLabel(wx.Bitmap(paths.icon_22x22.ok, 
wx.BITMAP_TYPE_ANY))
                 button.SetToolTipString("Accept the operation")
                 button.SetSize(self.size_button)
-                self.button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
-                self.Bind(wx.EVT_BUTTON, self.ok, button)
+                self._button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
+                self.Bind(wx.EVT_BUTTON, self._ok, button)
 
             # Spacer.
-            self.button_sizers[i].AddSpacer(15)
+            self._button_sizers[i].AddSpacer(15)
 
             # The cancel button.
             button = buttons.ThemedGenBitmapTextButton(self, -1, None, " 
Cancel")
             button.SetBitmapLabel(wx.Bitmap(paths.icon_22x22.cancel, 
wx.BITMAP_TYPE_ANY))
             button.SetToolTipString("Abort the operation")
             button.SetSize(self.size_button)
-            self.button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
-            self.Bind(wx.EVT_BUTTON, self.cancel, button)
-
-
-    def cancel(self, event):
+            self._button_sizers[i].Add(button, 0, wx.ADJUST_MINSIZE, 0)
+            self.Bind(wx.EVT_BUTTON, self._cancel, button)
+
+
+    def _cancel(self, event):
         """Cancel the operation.
 
         @param event:   The wx event.
@@ -848,7 +811,7 @@
         self.Destroy()
 
 
-    def display_page(self, i):
+    def _display_page(self, i):
         """Display the given page.
 
         @param i:   The index of the page to display.
@@ -856,21 +819,21 @@
         """
 
         # Hide all of the original contents.
-        for j in range(len(self.pages)):
-            self.main_sizer.Hide(self.page_sizers[j])
+        for j in range(self._num_pages):
+            self.main_sizer.Hide(self._page_sizers[j])
 
         # Execute the page's on_display() method.
-        self.pages[i].on_display()
+        self._pages[i].on_display()
 
         # Show the desired page.
-        self.main_sizer.Show(self.page_sizers[i])
+        self.main_sizer.Show(self._page_sizers[i])
 
         # Re-perform the window layout.
         self.Layout()
         self.Refresh()
 
 
-    def go_back(self, event):
+    def _go_back(self, event):
         """Return to the previous page.
 
         @param event:   The wx event.
@@ -878,13 +841,13 @@
         """
 
         # Change the current page.
-        self.current_page -= 1
+        self._current_page -= 1
 
         # Display the previous page.
-        self.display_page(self.current_page)
-
-
-    def go_next(self, event):
+        self._display_page(self._current_page)
+
+
+    def _go_next(self, event):
         """Move to the next page.
 
         @param event:   The wx event.
@@ -892,16 +855,16 @@
         """
 
         # Execute the page's on_next() method.
-        self.pages[self.current_page].on_next()
+        self._pages[self._current_page].on_next()
 
         # Change the current page.
-        self.current_page += 1
+        self._current_page += 1
 
         # Display the next page.
-        self.display_page(self.current_page)
-
-
-    def ok(self, event):
+        self._display_page(self._current_page)
+
+
+    def _ok(self, event):
         """Accept the operation.
 
         @param event:   The wx event.
@@ -909,22 +872,57 @@
         """
 
         # Loop over all pages and execute their apply() methods.
-        for i in range(len(self.pages)):
+        for i in range(self._num_pages):
             # Execute the apply method.
-            self.pages[i].apply(event)
+            self._pages[i].apply(event)
 
         # Then destroy the dialog.
         self.Destroy()
 
 
+    def add_page(self, panel, apply_button=True):
+        """Add a new page to the wizard.
+
+        @param panel:           The page to add to the wizard.
+        @type panel:            wx.Panel instance
+        @keyword apply_button:  A flag which if true will show the apply 
button for that page.
+        @type apply_button:     bool
+        """
+
+        # Store the page.
+        self._pages.append(panel)
+        self._num_pages += 1
+
+        # Store a new sizer for the page and its buttons.
+        self._page_sizers.append(wx.BoxSizer(wx.VERTICAL))
+        self.main_sizer.Add(self._page_sizers[-1], 1, wx.ALL|wx.EXPAND, 0)
+
+        # Add the sizer for the top half.
+        top_sizer = wx.BoxSizer(wx.VERTICAL)
+        self._page_sizers[-1].Add(top_sizer, 1, wx.ALL|wx.EXPAND, 0)
+
+        # Add the page to the top sizer.
+        top_sizer.Add(panel, 1, wx.ALL|wx.EXPAND, 0)
+
+        # Add the sizer for the wizard buttons.
+        self._button_sizers.append(wx.BoxSizer(wx.HORIZONTAL))
+        self._page_sizers[-1].Add(self._button_sizers[-1], 0, 
wx.ALIGN_RIGHT|wx.ALL, 0)
+
+        # Store the apply button flag.
+        self._button_apply_flag.append(apply_button)
+
+        # Store the index of the page.
+        panel.page_index = self._num_pages - 1
+
+
     def run(self):
         """Execute the wizard."""
 
         # Build the buttons for the entire wizard.
-        self.build_buttons()
+        self._build_buttons()
 
         # Display the first page.
-        self.display_page(0)
+        self._display_page(0)
 
         # Show the wizard.
         self.ShowModal()




Related Messages


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