mailr11976 - /branches/bieri_gui/gui_bieri/about.py


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

Header


Content

Posted by edward on December 27, 2010 - 16:25:
Author: bugman
Date: Mon Dec 27 16:25:50 2010
New Revision: 11976

URL: http://svn.gna.org/viewcvs/relax?rev=11976&view=rev
Log:
Spelling fix - renamed 'boarder' to 'border'.


Modified:
    branches/bieri_gui/gui_bieri/about.py

Modified: branches/bieri_gui/gui_bieri/about.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/about.py?rev=11976&r1=11975&r2=11976&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/about.py (original)
+++ branches/bieri_gui/gui_bieri/about.py Mon Dec 27 16:25:50 2010
@@ -47,7 +47,7 @@
     dim_y = 600
 
     # Spacer size (px).
-    boarder = 0
+    border = 0
 
     def __init__(self, *args, **kwds):
         """Build the dialog."""
@@ -65,8 +65,8 @@
         self._offset_val = 0
 
         # The total size.
-        self.total_x = self.dim_x + 2*self.boarder
-        self.total_y = self.dim_y + 2*self.boarder
+        self.total_x = self.dim_x + 2*self.border
+        self.total_y = self.dim_y + 2*self.border
         self.SetSize((self.total_x, self.total_y))
 
         # Draw everything.
@@ -100,7 +100,7 @@
         x, y = self.dc.GetTextExtent(text)
 
         # Draw the text, with a spacer.
-        self.dc.DrawText(text, self.boarder + (self.dim_x - x)/2, 
self.offset(15))
+        self.dc.DrawText(text, self.border + (self.dim_x - x)/2, 
self.offset(15))
 
         # Add the text extent.
         self.offset(y)
@@ -135,7 +135,7 @@
         # Draw.
         for line in lines:
             # Draw the text.
-            self.dc.DrawText(line, self.boarder, self.offset())
+            self.dc.DrawText(line, self.border, self.offset())
 
             # Update the offset.
             self.offset(max_y + 1)
@@ -215,7 +215,7 @@
         bitmap = wx.Bitmap(IMAGE_PATH+'start.png', wx.BITMAP_TYPE_ANY)
 
         # Draw it.
-        self.dc.DrawBitmap(bitmap, self.boarder, self.boarder, True)
+        self.dc.DrawBitmap(bitmap, self.border, self.border, True)
 
 
 
@@ -231,7 +231,7 @@
     dim_y = 580
 
     # Spacer size (px).
-    boarder = 10
+    border = 10
 
     def __init__(self, *args, **kwds):
         """Build the dialog."""
@@ -253,8 +253,8 @@
     def build_widget(self):
         """Build the about dialog."""
 
-        # A global Y offset for packing the elements together (initialise to 
the boarder position).
-        self.offset(self.boarder)
+        # A global Y offset for packing the elements together (initialise to 
the border position).
+        self.offset(self.border)
 
         # Draw all the elements.
         self.draw_title(self.info.title + ' ' + self.info.version)
@@ -310,8 +310,8 @@
         x2, y2 = self.dc.GetTextExtent(self.info.copyright[1])
 
         # Draw the text, with a starting spacer.
-        self.dc.DrawText(self.info.copyright[0], self.boarder + (self.dim_x 
- x1)/2, self.offset(15))
-        self.dc.DrawText(self.info.copyright[1], self.boarder + (self.dim_x 
- x2)/2, self.offset(y1+3))
+        self.dc.DrawText(self.info.copyright[0], self.border + (self.dim_x - 
x1)/2, self.offset(15))
+        self.dc.DrawText(self.info.copyright[1], self.border + (self.dim_x - 
x2)/2, self.offset(y1+3))
 
         # Add the text extent.
         self.offset(y2)
@@ -334,7 +334,7 @@
         x, y = self.dc.GetTextExtent(self.info.desc)
 
         # Draw the text, with a spacer.
-        self.dc.DrawText(self.info.desc, self.boarder + (self.dim_x - x)/2, 
self.offset(15))
+        self.dc.DrawText(self.info.desc, self.border + (self.dim_x - x)/2, 
self.offset(15))
 
         # Add the text extent.
         self.offset(y)
@@ -344,7 +344,7 @@
         """Draw the relax icon on the canvas."""
 
         # Add the relax logo.
-        
self.dc.DrawBitmap(wx.Bitmap(IMAGE_PATH+'ulysses_shadowless_400x168.png'), 
self.boarder + (self.dim_x - 400)/2, self.offset(20), True)
+        
self.dc.DrawBitmap(wx.Bitmap(IMAGE_PATH+'ulysses_shadowless_400x168.png'), 
self.border + (self.dim_x - 400)/2, self.offset(20), True)
 
         # Add the bitmap width to the offset.
         self.offset(168)
@@ -371,10 +371,10 @@
         x, y = self.dc.GetTextExtent(self.info.website)
 
         # Draw the text, with a spacer.
-        text = self.dc.DrawText(self.info.website, self.boarder + 
(self.dim_x - x)/2, self.offset())
+        text = self.dc.DrawText(self.info.website, self.border + (self.dim_x 
- x)/2, self.offset())
 
         # Store the position of the text (and shift the offset down).
-        self.link_pos_x = [self.boarder + (self.dim_x - x)/2, self.boarder + 
(self.dim_x + x)/2]
+        self.link_pos_x = [self.border + (self.dim_x - x)/2, self.border + 
(self.dim_x + x)/2]
         self.link_pos_y = [self.offset(), self.offset(y)]
 
         # Restore the old font colour (black).




Related Messages


Powered by MHonArc, Updated Mon Dec 27 17:20:02 2010