mailr11802 - /branches/bieri_gui/gui_bieri/user_functions/base.py


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

Header


Content

Posted by edward on December 14, 2010 - 00:03:
Author: bugman
Date: Tue Dec 14 00:03:12 2010
New Revision: 11802

URL: http://svn.gna.org/viewcvs/relax?rev=11802&view=rev
Log:
The user function buttons now have bitmaps.


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

Modified: branches/bieri_gui/gui_bieri/user_functions/base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/user_functions/base.py?rev=11802&r1=11801&r2=11802&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/user_functions/base.py (original)
+++ branches/bieri_gui/gui_bieri/user_functions/base.py Tue Dec 14 00:03:12 
2010
@@ -33,6 +33,7 @@
 # relax GUI module imports.
 from gui_bieri.controller import Redirect_text
 from gui_bieri.message import error_message
+from gui_bieri import paths
 
 
 class UF_base:
@@ -146,30 +147,33 @@
 
         # The apply button.
         if self.button_apply:
-            apply_button = wx.Button(self, -1, "Apply")
-            apply_button.SetToolTipString("Apply the user function")
-            button_sizer.Add(apply_button, 0, wx.ADJUST_MINSIZE, 0)
-            self.Bind(wx.EVT_BUTTON, self.apply, apply_button)
+            button = buttons.ThemedGenBitmapTextButton(self, -1, None, 
"Apply")
+            button.SetBitmapLabel(wx.Bitmap(paths.icon_32x32.apply, 
wx.BITMAP_TYPE_ANY))
+            button.SetToolTipString("Apply the user function")
+            button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0)
+            self.Bind(wx.EVT_BUTTON, self.apply, button)
 
             # Spacer.
             button_sizer.AddSpacer(5)
 
         # The OK button.
         if self.button_ok:
-            ok_button = wx.Button(self, -1, "OK")
-            ok_button.SetToolTipString("Accept the user function")
-            button_sizer.Add(ok_button, 0, wx.ADJUST_MINSIZE, 0)
-            self.Bind(wx.EVT_BUTTON, self.ok, ok_button)
+            button = buttons.ThemedGenBitmapTextButton(self, -1, None, "OK")
+            button.SetBitmapLabel(wx.Bitmap(paths.icon_32x32.ok, 
wx.BITMAP_TYPE_ANY))
+            button.SetToolTipString("Accept the user function")
+            button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0)
+            self.Bind(wx.EVT_BUTTON, self.ok, button)
 
             # Spacer.
             button_sizer.AddSpacer(15)
 
         # The cancel button.
         if self.button_cancel:
-            cancel_button = wx.Button(self, -1, "Cancel")
-            cancel_button.SetToolTipString("Abort the user function")
-            button_sizer.Add(cancel_button, 0, wx.ADJUST_MINSIZE, 0)
-            self.Bind(wx.EVT_BUTTON, self.cancel, cancel_button)
+            button = buttons.ThemedGenBitmapTextButton(self, -1, None, 
"Cancel")
+            button.SetBitmapLabel(wx.Bitmap(paths.icon_32x32.cancel, 
wx.BITMAP_TYPE_ANY))
+            button.SetToolTipString("Abort the user function")
+            button_sizer.Add(button, 0, wx.ADJUST_MINSIZE, 0)
+            self.Bind(wx.EVT_BUTTON, self.cancel, button)
 
 
     def add_desc(self, sizer):




Related Messages


Powered by MHonArc, Updated Tue Dec 14 00:20:01 2010