mailr11935 - /branches/bieri_gui/gui_bieri/components/spin_view.py


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

Header


Content

Posted by edward on December 22, 2010 - 10:22:
Author: bugman
Date: Wed Dec 22 10:22:31 2010
New Revision: 11935

URL: http://svn.gna.org/viewcvs/relax?rev=11935&view=rev
Log:
The spin container window now contains a graphic.


Modified:
    branches/bieri_gui/gui_bieri/components/spin_view.py

Modified: branches/bieri_gui/gui_bieri/components/spin_view.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/components/spin_view.py?rev=11935&r1=11934&r2=11935&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/components/spin_view.py (original)
+++ branches/bieri_gui/gui_bieri/components/spin_view.py Wed Dec 22 10:22:31 
2010
@@ -66,7 +66,7 @@
         self.display_root()
 
 
-    def add_item(self, item):
+    def add_item(self, item, proportion=0, flag=0):
         """Add the given item to the main sizer, and keep track of it.
 
         @param item:    The item to add to the main sizer.
@@ -74,7 +74,7 @@
         """
 
         # Add to the sizer.
-        self.main_sizer.Add(item)
+        self.main_sizer.Add(item, proportion=proportion, flag=flag)
 
         # Append it to the sizer list.
         self.sizer_items.append(item)
@@ -177,11 +177,17 @@
         @type spin_name:     str
         """
 
+        # A sizer for the header.
+        sizer = wx.BoxSizer(wx.HORIZONTAL)
+        self.add_item(sizer, flag=wx.EXPAND)
+
         # Some text.
         text = wx.StaticText(self, -1, "The spin container", (5,5))
-
-        # Add to the sizer.
-        self.add_item(text)
+        sizer.Add(text, flag=wx.ALIGN_LEFT)
+
+        # The graphic.
+        image = wx.StaticBitmap(self, -1, wx.Bitmap(paths.WIZARD_IMAGE_PATH 
+ 'spin.png', wx.BITMAP_TYPE_ANY))
+        sizer.Add(image, 0, wx.TOP|wx.ALIGN_RIGHT, 0)
 
 
 




Related Messages


Powered by MHonArc, Updated Wed Dec 22 10:40:02 2010