One last change from Chris. Delays handling a resize event until 50ms

after the last event.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-01-10 23:49:18 +00:00
parent 17991ec034
commit aec7c82991
2 changed files with 19 additions and 12 deletions

View File

@@ -1630,8 +1630,9 @@ class ScaledTextBox(DrawObject, TextObjectMixin):
## If so, limit it. Would it be better just to not draw it?
## note that this limit is dependent on how much memory you have, etc.
Size = min(Size, self.MaxFontSize)
dc.SetFont(self.SetFont(Size, self.Family, self.Style, self.Weight, self.Underline, self.FaceName))
font = self.SetFont(Size, self.Family, self.Style, self.Weight, self.Underline, self.FaceName)
dc.SetFont(font)
dc.SetTextForeground(self.Color)
dc.SetBackgroundMode(wx.TRANSPARENT)
@@ -1906,8 +1907,11 @@ class FloatCanvas(wx.Panel):
# called just to make sure everything is initialized
# this is a bug on OS-X, maybe it's not required?
self.OnSize(None)
self.SizeTimer = wx.PyTimer(self.OnSizeTimer) # timer to give a delay when re-sizing so that bufferes aren't re-built too many times.
self.InitializePanel()
self.MakeNewBuffers()
self.InHereNum = 0
self.CreateCursors()
@@ -2272,7 +2276,6 @@ class FloatCanvas(wx.Panel):
pass
def MakeNewBuffers(self):
#print "Making new buffers"
self._BackgroundDirty = True
# Make new offscreen bitmap:
self._Buffer = wx.EmptyBitmap(*self.PanelSize)
@@ -2308,7 +2311,15 @@ class FloatCanvas(wx.Panel):
else:
self._ForegroundHTdc = None
def OnSize(self,event):
def OnSize(self, event=None):
self.InitializePanel()
self.SizeTimer.Start(50, oneShot=True)
def OnSizeTimer(self, event=None):
self.MakeNewBuffers()
self.Draw()
def InitializePanel(self):
self.PanelSize = self.GetClientSizeTuple()
if self.PanelSize == (0,0):
## OS-X sometimes gives a Size event when the panel is size (0,0)
@@ -2319,8 +2330,6 @@ class FloatCanvas(wx.Panel):
self.AspectRatio = 1.0
else:
self.AspectRatio = float(self.PanelSize[0]) / self.PanelSize[1]
self.MakeNewBuffers()
self.Draw()
def OnPaint(self, event):
dc = wx.PaintDC(self)
@@ -2344,7 +2353,7 @@ class FloatCanvas(wx.Panel):
animation, for instance.
"""
if sometrue(self.PanelSize < 1 ): # it's possible for this to get called before being properly initialized.
if sometrue(self.PanelSize <= 2 ): # it's possible for this to get called before being properly initialized.
return
if self.Debug: start = clock()
ScreenDC = wx.ClientDC(self)
@@ -2457,8 +2466,6 @@ class FloatCanvas(wx.Panel):
pass
else:
raise FloatCanvasError('CoordType must be either "Panel", "Pixel", or "World"')
#print "shifting by:", shift
self.ViewPortCenter = self.ViewPortCenter + shift
self.MapProjectionVector = self.ProjectionFun(self.ViewPortCenter)

View File

@@ -93,6 +93,6 @@ Chris.Barker@noaa.gov
"""
__version__ = "0.9.9"
__version__ = "0.9.10"