]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxIntCtrl.py
reSWIGged
[wxWidgets.git] / wxPython / demo / wxIntCtrl.py
index 026b9bcdd320873c506ac96899ac8ebc79642c4f..27b968c5a2899d5643bab33b4f01f17602fe0870 100644 (file)
@@ -7,9 +7,17 @@
 # o intctrl needs the renamer applied.
 # o intctrl needs new event binders.
 # 
 # o intctrl needs the renamer applied.
 # o intctrl needs new event binders.
 # 
+# 12/08/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o All issues corrected
+#
+# 12/20/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o wxIntCtrl -> IntCtrl 
+#
 
 import  wx
 
 import  wx
-import  wx.lib.intctrl  as  intctrl
+import  wx.lib.intctrl
 
 #----------------------------------------------------------------------
 
 
 #----------------------------------------------------------------------
 
@@ -21,11 +29,11 @@ class TestPanel( wx.Panel ):
         panel = wx.Panel( self, -1 )
 
         self.set_min = wx.CheckBox( panel, -1, "Set minimum value:" )
         panel = wx.Panel( self, -1 )
 
         self.set_min = wx.CheckBox( panel, -1, "Set minimum value:" )
-        self.min = intctrl.wxIntCtrl( panel, size=( 50, -1 ) )
+        self.min = wx.lib.intctrl.IntCtrl( panel, size=( 50, -1 ) )
         self.min.Enable( False )
 
         self.set_max = wx.CheckBox( panel, -1, "Set maximum value:" )
         self.min.Enable( False )
 
         self.set_max = wx.CheckBox( panel, -1, "Set maximum value:" )
-        self.max = intctrl.wxIntCtrl( panel, size=( 50, -1 ) )
+        self.max = wx.lib.intctrl.IntCtrl( panel, size=( 50, -1 ) )
         self.max.Enable( False )
 
         self.limit_target = wx.CheckBox( panel, -1, "Limit control" )
         self.max.Enable( False )
 
         self.limit_target = wx.CheckBox( panel, -1, "Limit control" )
@@ -33,7 +41,7 @@ class TestPanel( wx.Panel ):
         self.allow_long = wx.CheckBox( panel, -1, "Allow long integers" )
 
         label = wx.StaticText( panel, -1, "Resulting integer control:" )
         self.allow_long = wx.CheckBox( panel, -1, "Allow long integers" )
 
         label = wx.StaticText( panel, -1, "Resulting integer control:" )
-        self.target_ctl = intctrl.wxIntCtrl( panel )
+        self.target_ctl = wx.lib.intctrl.IntCtrl( panel )
 
         grid = wx.FlexGridSizer( 0, 2, 0, 0 )
         grid.Add( self.set_min, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 )
 
         grid = wx.FlexGridSizer( 0, 2, 0, 0 )
         grid.Add( self.set_min, 0, wx.ALIGN_LEFT|wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5 )
@@ -70,10 +78,9 @@ class TestPanel( wx.Panel ):
         self.Bind(wx.EVT_CHECKBOX, self.OnSetAllowNone, self.allow_none)
         self.Bind(wx.EVT_CHECKBOX, self.OnSetAllowLong, self.allow_long)
 
         self.Bind(wx.EVT_CHECKBOX, self.OnSetAllowNone, self.allow_none)
         self.Bind(wx.EVT_CHECKBOX, self.OnSetAllowLong, self.allow_long)
 
-        # Once the intctrl library is updated, this should be too.
-        intctrl.EVT_INT(self, self.min.GetId(), self.SetTargetMinMax)
-        intctrl.EVT_INT(self, self.max.GetId(), self.SetTargetMinMax)
-        intctrl.EVT_INT(self, self.target_ctl.GetId(), self.OnTargetChange)
+        self.Bind(wx.lib.intctrl.EVT_INT, self.SetTargetMinMax, self.min)
+        self.Bind(wx.lib.intctrl.EVT_INT, self.SetTargetMinMax, self.max)
+        self.Bind(wx.lib.intctrl.EVT_INT, self.OnTargetChange, self.target_ctl)
 
 
     def OnSetMin( self, event ):
 
 
     def OnSetMin( self, event ):
@@ -143,13 +150,13 @@ def runTest( frame, nb, log ):
 
 overview = """<html><body>
 <P>
 
 overview = """<html><body>
 <P>
-<B>wxIntCtrl</B> provides a control that takes and returns integers as
+<B>IntCtrl</B> provides a control that takes and returns integers as
 value, and provides bounds support and optional value limiting.
 <P>
 <P>
 value, and provides bounds support and optional value limiting.
 <P>
 <P>
-Here's the API for wxIntCtrl:
+Here's the API for IntCtrl:
 <DL><PRE>
 <DL><PRE>
-    <B>wxIntCtrl</B>(
+    <B>IntCtrl</B>(
          parent, id = -1,
          <B>value</B> = 0,
          <B>min</B> = None,
          parent, id = -1,
          <B>value</B> = 0,
          <B>min</B> = None,