DocView patches from Morgen Hua: bug fixes, and additional SVN

commands, also added a default template that uses the text editor for
any unknown file type.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34473 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-05-31 21:41:11 +00:00
parent b81383bbd9
commit 26ee3a06e2
22 changed files with 1191 additions and 316 deletions

View File

@@ -48,8 +48,17 @@ class CanvasView(wx.lib.docview.View):
self._pt2 = None
self._needEraseLasso = False
self._propShape = None
self._maxWidth = 2000
self._maxHeight = 16000
def OnDraw(self, dc):
""" for Print Preview and Print """
dc.BeginDrawing()
self._canvas.Redraw(dc)
dc.EndDrawing()
def OnCreate(self, doc, flags):
frame = wx.GetApp().CreateDocumentFrame(self, doc, flags)
frame.Show()
@@ -130,9 +139,7 @@ class CanvasView(wx.lib.docview.View):
wx.EVT_KILL_FOCUS(self._canvas, self.OnKillFocus)
wx.EVT_SET_FOCUS(self._canvas, self.OnFocus)
maxWidth = 2000
maxHeight = 16000
self._canvas.SetScrollbars(20, 20, maxWidth / 20, maxHeight / 20)
self._canvas.SetScrollbars(20, 20, self._maxWidth / 20, self._maxHeight / 20)
self._canvas.SetBackgroundColour(wx.WHITE)
self._diagram = ogl.Diagram()
@@ -654,7 +661,16 @@ class EditorCanvasShapeEvtHandler(ogl.ShapeEvtHandler):
self._view.SetSelection(model, keys == self.SHIFT_KEY or keys == self.CONTROL_KEY)
def OnMovePre(self, dc, x, y, oldX, oldY, display):
""" Prevent objects from being dragged outside of viewable area """
if (x > self._view._maxWidth) or (y > self._view._maxHeight):
return False
return ogl.ShapeEvtHandler.OnMovePre(self, dc, x, y, oldX, oldY, display)
def OnMovePost(self, dc, x, y, oldX, oldY, display):
""" Update the model's record of where the shape should be. Also enable redo/undo. """
if x == oldX and y == oldY:
return
if not self._view.GetDocument():