1 #----------------------------------------------------------------------------
3 # Purpose: Port of the wxWindows docview classes
9 # Copyright: (c) 2003-2006 ActiveGrid, Inc. (Port of wxWindows classes by Julian Smart et al)
10 # License: wxWindows license
11 #----------------------------------------------------------------------------
22 #----------------------------------------------------------------------
24 #----------------------------------------------------------------------
32 DEFAULT_DOCMAN_FLAGS
= DOC_SDI
& DOC_OPEN_ONCE
35 TEMPLATE_INVISIBLE
= 2
36 TEMPLATE_NO_CREATE
= (4 | TEMPLATE_VISIBLE
)
37 DEFAULT_TEMPLATE_FLAGS
= TEMPLATE_VISIBLE
42 #----------------------------------------------------------------------
43 # Convenience functions from wxWindows used in docview
44 #----------------------------------------------------------------------
47 def FileNameFromPath(path
):
49 Returns the filename for a full path.
51 return os
.path
.split(path
)[1]
53 def FindExtension(path
):
55 Returns the extension of a filename for a full path.
57 return os
.path
.splitext(path
)[1].lower()
61 Returns True if the path exists.
63 return os
.path
.isfile(path
)
67 Returns the path of a full path without the filename.
69 return os
.path
.split(path
)[0]
72 #----------------------------------------------------------------------
73 # Document/View Classes
74 #----------------------------------------------------------------------
77 class Document(wx
.EvtHandler
):
79 The document class can be used to model an application's file-based data. It
80 is part of the document/view framework supported by wxWindows, and cooperates
81 with the wxView, wxDocTemplate and wxDocManager classes.
83 Note this wxPython version also keeps track of the modification date of the
84 document and if it changes on disk outside of the application, we will warn the
85 user before saving to avoid clobbering the file.
89 def __init__(self
, parent
=None):
91 Constructor. Define your own default constructor to initialize
92 application-specific data.
94 wx
.EvtHandler
.__init
__(self
)
96 self
._documentParent
= parent
97 self
._documentTemplate
= None
98 self
._commandProcessor
= None
99 self
._savedYet
= False
100 self
._writeable
= True
102 self
._documentTitle
= None
103 self
._documentFile
= None
104 self
._documentTypeName
= None
105 self
._documentModified
= False
106 self
._documentModificationDate
= None
107 self
._documentViews
= []
110 def ProcessEvent(self
, event
):
112 Processes an event, searching event tables and calling zero or more
113 suitable event handler function(s). Note that the ProcessEvent
114 method is called from the wxPython docview framework directly since
115 wxPython does not have a virtual ProcessEvent function.
120 def GetFilename(self
):
122 Gets the filename associated with this document, or "" if none is
125 return self
._documentFile
130 Gets the title for this document. The document title is used for an
131 associated frame (if any), and is usually constructed by the framework
134 return self
._documentTitle
137 def SetTitle(self
, title
):
139 Sets the title for this document. The document title is used for an
140 associated frame (if any), and is usually constructed by the framework
143 self
._documentTitle
= title
146 def GetDocumentName(self
):
148 The document type name given to the wxDocTemplate constructor,
149 copied to this document when the document is created. If several
150 document templates are created that use the same document type, this
151 variable is used in wxDocManager::CreateView to collate a list of
152 alternative view types that can be used on this kind of document.
154 return self
._documentTypeName
157 def SetDocumentName(self
, name
):
159 Sets he document type name given to the wxDocTemplate constructor,
160 copied to this document when the document is created. If several
161 document templates are created that use the same document type, this
162 variable is used in wxDocManager::CreateView to collate a list of
163 alternative view types that can be used on this kind of document. Do
164 not change the value of this variable.
166 self
._documentTypeName
= name
169 def GetDocumentSaved(self
):
171 Returns True if the document has been saved. This method has been
172 added to wxPython and is not in wxWindows.
174 return self
._savedYet
177 def SetDocumentSaved(self
, saved
=True):
179 Sets whether the document has been saved. This method has been
180 added to wxPython and is not in wxWindows.
182 self
._savedYet
= saved
185 def GetCommandProcessor(self
):
187 Returns the command processor associated with this document.
189 return self
._commandProcessor
192 def SetCommandProcessor(self
, processor
):
194 Sets the command processor to be used for this document. The document
195 will then be responsible for its deletion. Normally you should not
196 call this; override OnCreateCommandProcessor instead.
198 self
._commandProcessor
= processor
201 def IsModified(self
):
203 Returns true if the document has been modified since the last save,
204 false otherwise. You may need to override this if your document view
205 maintains its own record of being modified (for example if using
206 wxTextWindow to view and edit the document).
208 return self
._documentModified
211 def Modify(self
, modify
):
213 Call with true to mark the document as modified since the last save,
214 false otherwise. You may need to override this if your document view
215 maintains its own record of being modified (for example if using
216 xTextWindow to view and edit the document).
217 This method has been extended to notify its views that the dirty flag has changed.
219 self
._documentModified
= modify
220 self
.UpdateAllViews(hint
=("modify", self
, self
._documentModified
))
223 def SetDocumentModificationDate(self
):
225 Saves the file's last modification date.
226 This is used to check if the file has been modified outside of the application.
227 This method has been added to wxPython and is not in wxWindows.
229 self
._documentModificationDate
= os
.path
.getmtime(self
.GetFilename())
232 def GetDocumentModificationDate(self
):
234 Returns the file's modification date when it was loaded from disk.
235 This is used to check if the file has been modified outside of the application.
236 This method has been added to wxPython and is not in wxWindows.
238 return self
._documentModificationDate
241 def IsDocumentModificationDateCorrect(self
):
243 Returns False if the file has been modified outside of the application.
244 This method has been added to wxPython and is not in wxWindows.
246 if not os
.path
.exists(self
.GetFilename()): # document must be in memory only and can't be out of date
248 return self
._documentModificationDate
== os
.path
.getmtime(self
.GetFilename())
253 Returns the list whose elements are the views on the document.
255 return self
._documentViews
258 def GetDocumentTemplate(self
):
260 Returns the template that created the document.
262 return self
._documentTemplate
265 def SetDocumentTemplate(self
, template
):
267 Sets the template that created the document. Should only be called by
270 self
._documentTemplate
= template
273 def DeleteContents(self
):
275 Deletes the contents of the document. Override this method as
283 Destructor. Removes itself from the document manager.
285 self
.DeleteContents()
286 self
._documentModificationDate
= None
287 if self
.GetDocumentManager():
288 self
.GetDocumentManager().RemoveDocument(self
)
289 wx
.EvtHandler
.Destroy(self
)
294 Closes the document, by calling OnSaveModified and then (if this true)
295 OnCloseDocument. This does not normally delete the document object:
296 use DeleteAllViews to do this implicitly.
298 if self
.OnSaveModified():
299 if self
.OnCloseDocument():
307 def OnCloseDocument(self
):
309 The default implementation calls DeleteContents (an empty
310 implementation) sets the modified flag to false. Override this to
311 supply additional behaviour when the document is closed with Close.
314 self
.DeleteContents()
319 def DeleteAllViews(self
):
321 Calls wxView.Close and deletes each view. Deleting the final view will
322 implicitly delete the document itself, because the wxView destructor
323 calls RemoveView. This in turns calls wxDocument::OnChangedViewList,
324 whose default implemention is to save and delete the document if no
327 manager
= self
.GetDocumentManager()
328 for view
in self
._documentViews
:
331 if self
in manager
.GetDocuments():
336 def GetFirstView(self
):
338 A convenience function to get the first view for a document, because
339 in many cases a document will only have a single view.
341 if len(self
._documentViews
) == 0:
343 return self
._documentViews
[0]
346 def GetDocumentManager(self
):
348 Returns the associated document manager.
350 if self
._documentTemplate
:
351 return self
._documentTemplate
.GetDocumentManager()
355 def OnNewDocument(self
):
357 The default implementation calls OnSaveModified and DeleteContents,
358 makes a default title for the document, and notifies the views that
359 the filename (in fact, the title) has changed.
361 if not self
.OnSaveModified() or not self
.OnCloseDocument():
363 self
.DeleteContents()
365 self
.SetDocumentSaved(False)
366 name
= self
.GetDocumentManager().MakeDefaultName()
368 self
.SetFilename(name
, notifyViews
= True)
373 Saves the document by calling OnSaveDocument if there is an associated
374 filename, or SaveAs if there is no filename.
376 if not self
.IsModified(): # and self._savedYet: This was here, but if it is not modified who cares if it hasn't been saved yet?
379 """ check for file modification outside of application """
380 if not self
.IsDocumentModificationDateCorrect():
381 msgTitle
= wx
.GetApp().GetAppName()
383 msgTitle
= _("Application")
384 res
= wx
.MessageBox(_("'%s' has been modified outside of %s. Overwrite '%s' with current changes?") % (self
.GetPrintableName(), msgTitle
, self
.GetPrintableName()),
386 wx
.YES_NO | wx
.CANCEL | wx
.ICON_QUESTION
,
387 self
.GetDocumentWindow())
393 else: # elif res == wx.CANCEL:
396 if not self
._documentFile
or not self
._savedYet
:
398 return self
.OnSaveDocument(self
._documentFile
)
403 Prompts the user for a file to save to, and then calls OnSaveDocument.
405 docTemplate
= self
.GetDocumentTemplate()
409 descr
= docTemplate
.GetDescription() + _(" (") + docTemplate
.GetFileFilter() + _(") |") + docTemplate
.GetFileFilter() # spacing is important, make sure there is no space after the "|", it causes a bug on wx_gtk
410 filename
= wx
.FileSelector(_("Save As"),
411 docTemplate
.GetDirectory(),
412 FileNameFromPath(self
.GetFilename()),
413 docTemplate
.GetDefaultExtension(),
415 flags
= wx
.SAVE | wx
.OVERWRITE_PROMPT
,
416 parent
= self
.GetDocumentWindow())
420 name
, ext
= os
.path
.splitext(filename
)
422 filename
+= '.' + docTemplate
.GetDefaultExtension()
424 self
.SetFilename(filename
)
425 self
.SetTitle(FileNameFromPath(filename
))
427 for view
in self
._documentViews
:
428 view
.OnChangeFilename()
430 if not self
.OnSaveDocument(filename
):
433 if docTemplate
.FileMatchesTemplate(filename
):
434 self
.GetDocumentManager().AddFileToHistory(filename
)
439 def OnSaveDocument(self
, filename
):
441 Constructs an output file for the given filename (which must
442 not be empty), and calls SaveObject. If SaveObject returns true, the
443 document is set to unmodified; otherwise, an error message box is
449 msgTitle
= wx
.GetApp().GetAppName()
451 msgTitle
= _("File Error")
453 backupFilename
= None
457 # if current file exists, move it to a safe place temporarily
458 if os
.path
.exists(filename
):
460 # Check if read-only.
461 if not os
.access(filename
, os
.W_OK
):
462 wx
.MessageBox("Could not save '%s'. No write permission to overwrite existing file." % FileNameFromPath(filename
),
464 wx
.OK | wx
.ICON_EXCLAMATION
,
465 self
.GetDocumentWindow())
469 backupFilename
= "%s.bak%s" % (filename
, i
)
470 while os
.path
.exists(backupFilename
):
472 backupFilename
= "%s.bak%s" % (filename
, i
)
473 shutil
.copy(filename
, backupFilename
)
476 fileObject
= file(filename
, 'w')
477 self
.SaveObject(fileObject
)
482 os
.remove(backupFilename
)
484 # for debugging purposes
486 traceback
.print_exc()
489 fileObject
.close() # file is still open, close it, need to do this before removal
491 # save failed, remove copied file
492 if backupFilename
and copied
:
493 os
.remove(backupFilename
)
495 wx
.MessageBox("Could not save '%s'. %s" % (FileNameFromPath(filename
), sys
.exc_value
),
497 wx
.OK | wx
.ICON_EXCLAMATION
,
498 self
.GetDocumentWindow())
501 self
.SetDocumentModificationDate()
502 self
.SetFilename(filename
, True)
504 self
.SetDocumentSaved(True)
505 #if wx.Platform == '__WXMAC__': # Not yet implemented in wxPython
506 # wx.FileName(file).MacSetDefaultTypeAndCreator()
510 def OnOpenDocument(self
, filename
):
512 Constructs an input file for the given filename (which must not
513 be empty), and calls LoadObject. If LoadObject returns true, the
514 document is set to unmodified; otherwise, an error message box is
515 displayed. The document's views are notified that the filename has
516 changed, to give windows an opportunity to update their titles. All of
517 the document's views are then updated.
519 if not self
.OnSaveModified():
522 msgTitle
= wx
.GetApp().GetAppName()
524 msgTitle
= _("File Error")
526 fileObject
= file(filename
, 'r')
528 self
.LoadObject(fileObject
)
532 # for debugging purposes
534 traceback
.print_exc()
537 fileObject
.close() # file is still open, close it
539 wx
.MessageBox("Could not open '%s'. %s" % (FileNameFromPath(filename
), sys
.exc_value
),
541 wx
.OK | wx
.ICON_EXCLAMATION
,
542 self
.GetDocumentWindow())
545 self
.SetDocumentModificationDate()
546 self
.SetFilename(filename
, True)
548 self
.SetDocumentSaved(True)
549 self
.UpdateAllViews()
553 def LoadObject(self
, file):
555 Override this function and call it from your own LoadObject before
556 loading your own data. LoadObject is called by the framework
557 automatically when the document contents need to be loaded.
559 Note that the wxPython version simply sends you a Python file object,
560 so you can use pickle.
565 def SaveObject(self
, file):
567 Override this function and call it from your own SaveObject before
568 saving your own data. SaveObject is called by the framework
569 automatically when the document contents need to be saved.
571 Note that the wxPython version simply sends you a Python file object,
572 so you can use pickle.
579 Override this function to revert the document to its last saved state.
584 def GetPrintableName(self
):
586 Copies a suitable document name into the supplied name buffer.
587 The default function uses the title, or if there is no title, uses the
588 filename; or if no filename, the string 'Untitled'.
590 if self
._documentTitle
:
591 return self
._documentTitle
592 elif self
._documentFile
:
593 return FileNameFromPath(self
._documentFile
)
598 def GetDocumentWindow(self
):
600 Intended to return a suitable window for using as a parent for
601 document-related dialog boxes. By default, uses the frame associated
604 if len(self
._documentViews
) > 0:
605 return self
._documentViews
[0].GetFrame()
607 return wx
.GetApp().GetTopWindow()
610 def OnCreateCommandProcessor(self
):
612 Override this function if you want a different (or no) command
613 processor to be created when the document is created. By default, it
614 returns an instance of wxCommandProcessor.
616 return CommandProcessor()
619 def OnSaveModified(self
):
621 If the document has been modified, prompts the user to ask if the
622 changes should be changed. If the user replies Yes, the Save function
623 is called. If No, the document is marked as unmodified and the
624 function succeeds. If Cancel, the function fails.
626 if not self
.IsModified():
629 """ check for file modification outside of application """
630 if not self
.IsDocumentModificationDateCorrect():
631 msgTitle
= wx
.GetApp().GetAppName()
633 msgTitle
= _("Warning")
634 res
= wx
.MessageBox(_("'%s' has been modified outside of %s. Overwrite '%s' with current changes?") % (self
.GetPrintableName(), msgTitle
, self
.GetPrintableName()),
636 wx
.YES_NO | wx
.CANCEL | wx
.ICON_QUESTION
,
637 self
.GetDocumentWindow())
643 return wx
.lib
.docview
.Document
.Save(self
)
644 else: # elif res == wx.CANCEL:
647 msgTitle
= wx
.GetApp().GetAppName()
649 msgTitle
= _("Warning")
651 res
= wx
.MessageBox(_("Save changes to '%s'?") % self
.GetPrintableName(),
653 wx
.YES_NO | wx
.CANCEL | wx
.ICON_QUESTION
,
654 self
.GetDocumentWindow())
661 else: # elif res == wx.CANCEL:
667 Called by printing framework to draw the view.
672 def AddView(self
, view
):
674 If the view is not already in the list of views, adds the view and
675 calls OnChangedViewList.
677 if not view
in self
._documentViews
:
678 self
._documentViews
.append(view
)
679 self
.OnChangedViewList()
683 def RemoveView(self
, view
):
685 Removes the view from the document's list of views, and calls
688 if view
in self
._documentViews
:
689 self
._documentViews
.remove(view
)
690 self
.OnChangedViewList()
694 def OnCreate(self
, path
, flags
):
696 The default implementation calls DeleteContents (an empty
697 implementation) sets the modified flag to false. Override this to
698 supply additional behaviour when the document is opened with Open.
700 if flags
& DOC_NO_VIEW
:
702 return self
.GetDocumentTemplate().CreateView(self
, flags
)
705 def OnChangedViewList(self
):
707 Called when a view is added to or deleted from this document. The
708 default implementation saves and deletes the document if no views
709 exist (the last one has just been removed).
711 if len(self
._documentViews
) == 0:
712 if self
.OnSaveModified():
713 pass # C version does a delete but Python will garbage collect
716 def UpdateAllViews(self
, sender
= None, hint
= None):
718 Updates all views. If sender is non-NULL, does not update this view.
719 hint represents optional information to allow a view to optimize its
722 for view
in self
._documentViews
:
724 view
.OnUpdate(sender
, hint
)
727 def NotifyClosing(self
):
729 Notifies the views that the document is going to close.
731 for view
in self
._documentViews
:
732 view
.OnClosingDocument()
735 def SetFilename(self
, filename
, notifyViews
= False):
737 Sets the filename for this document. Usually called by the framework.
738 If notifyViews is true, wxView.OnChangeFilename is called for all
741 self
._documentFile
= filename
743 for view
in self
._documentViews
:
744 view
.OnChangeFilename()
747 def GetWriteable(self
):
749 Returns true if the document can be written to its accociated file path.
750 This method has been added to wxPython and is not in wxWindows.
752 if not self
._writeable
:
754 if not self
._documentFile
: # Doesn't exist, do a save as
757 return os
.access(self
._documentFile
, os
.W_OK
)
760 def SetWriteable(self
, writeable
):
762 Set to False if the document can not be saved. This will disable the ID_SAVE_AS
763 event and is useful for custom documents that should not be saveable. The ID_SAVE
764 event can be disabled by never Modifying the document. This method has been added
765 to wxPython and is not in wxWindows.
767 self
._writeable
= writeable
770 class View(wx
.EvtHandler
):
772 The view class can be used to model the viewing and editing component of
773 an application's file-based data. It is part of the document/view
774 framework supported by wxWindows, and cooperates with the wxDocument,
775 wxDocTemplate and wxDocManager classes.
780 Constructor. Define your own default constructor to initialize
781 application-specific data.
783 wx
.EvtHandler
.__init
__(self
)
784 self
._viewDocument
= None
785 self
._viewFrame
= None
790 Destructor. Removes itself from the document's list of views.
792 if self
._viewDocument
:
793 self
._viewDocument
.RemoveView(self
)
794 wx
.EvtHandler
.Destroy(self
)
797 def ProcessEvent(self
, event
):
799 Processes an event, searching event tables and calling zero or more
800 suitable event handler function(s). Note that the ProcessEvent
801 method is called from the wxPython docview framework directly since
802 wxPython does not have a virtual ProcessEvent function.
804 if not self
.GetDocument() or not self
.GetDocument().ProcessEvent(event
):
810 def ProcessUpdateUIEvent(self
, event
):
812 Processes a UI event, searching event tables and calling zero or more
813 suitable event handler function(s). Note that the ProcessEvent
814 method is called from the wxPython docview framework directly since
815 wxPython does not have a virtual ProcessEvent function.
820 def OnActivateView(self
, activate
, activeView
, deactiveView
):
822 Called when a view is activated by means of wxView::Activate. The
823 default implementation does nothing.
828 def OnClosingDocument(self
):
830 Override this to clean up the view when the document is being closed.
831 The default implementation does nothing.
836 def OnDraw(self
, dc
):
838 Override this to draw the view for the printing framework. The
839 default implementation does nothing.
844 def OnPrint(self
, dc
, info
):
846 Override this to print the view for the printing framework. The
847 default implementation calls View.OnDraw.
852 def OnUpdate(self
, sender
, hint
):
854 Called when the view should be updated. sender is a pointer to the
855 view that sent the update request, or NULL if no single view requested
856 the update (for instance, when the document is opened). hint is as yet
857 unused but may in future contain application-specific information for
858 making updating more efficient.
861 if hint
[0] == "modify": # if dirty flag changed, update the view's displayed title
862 frame
= self
.GetFrame()
863 if frame
and hasattr(frame
, "OnTitleIsModified"):
864 frame
.OnTitleIsModified()
869 def OnChangeFilename(self
):
871 Called when the filename has changed. The default implementation
872 constructs a suitable title and sets the title of the view frame (if
876 appName
= wx
.GetApp().GetAppName()
877 if not self
.GetDocument():
883 if appName
and isinstance(self
.GetFrame(), DocChildFrame
): # Only need app name in title for SDI
884 title
= appName
+ _(" - ")
887 self
.GetFrame().SetTitle(title
+ self
.GetDocument().GetPrintableName())
890 def GetDocument(self
):
892 Returns the document associated with the view.
894 return self
._viewDocument
897 def SetDocument(self
, doc
):
899 Associates the given document with the view. Normally called by the
902 self
._viewDocument
= doc
907 def GetViewName(self
):
909 Gets the name associated with the view (passed to the wxDocTemplate
910 constructor). Not currently used by the framework.
912 return self
._viewTypeName
915 def SetViewName(self
, name
):
917 Sets the view type name. Should only be called by the framework.
919 self
._viewTypeName
= name
922 def Close(self
, deleteWindow
=True):
924 Closes the view by calling OnClose. If deleteWindow is true, this
925 function should delete the window associated with the view.
927 if self
.OnClose(deleteWindow
= deleteWindow
):
933 def Activate(self
, activate
=True):
935 Call this from your view frame's OnActivate member to tell the
936 framework which view is currently active. If your windowing system
937 doesn't call OnActivate, you may need to call this function from
938 OnMenuCommand or any place where you know the view must be active, and
939 the framework will need to get the current view.
941 The prepackaged view frame wxDocChildFrame calls wxView.Activate from
942 its OnActivate member and from its OnMenuCommand member.
944 if self
.GetDocument() and self
.GetDocumentManager():
945 self
.OnActivateView(activate
, self
, self
.GetDocumentManager().GetCurrentView())
946 self
.GetDocumentManager().ActivateView(self
, activate
)
949 def OnClose(self
, deleteWindow
=True):
951 Implements closing behaviour. The default implementation calls
952 wxDocument.Close to close the associated document. Does not delete the
953 view. The application may wish to do some cleaning up operations in
954 this function, if a call to wxDocument::Close succeeded. For example,
955 if your application's all share the same window, you need to
956 disassociate the window from the view and perhaps clear the window. If
957 deleteWindow is true, delete the frame associated with the view.
959 if self
.GetDocument():
960 return self
.GetDocument().Close()
965 def OnCreate(self
, doc
, flags
):
967 wxDocManager or wxDocument creates a wxView via a wxDocTemplate. Just
968 after the wxDocTemplate creates the wxView, it calls wxView::OnCreate.
969 In its OnCreate member function, the wxView can create a
970 wxDocChildFrame or a derived class. This wxDocChildFrame provides user
971 interface elements to view and/or edit the contents of the wxDocument.
973 By default, simply returns true. If the function returns false, the
974 view will be deleted.
979 def OnCreatePrintout(self
):
981 Returns a wxPrintout object for the purposes of printing. It should
982 create a new object every time it is called; the framework will delete
985 By default, this function returns an instance of wxDocPrintout, which
986 prints and previews one page by calling wxView.OnDraw.
988 Override to return an instance of a class other than wxDocPrintout.
990 return DocPrintout(self
, self
.GetDocument().GetPrintableName())
995 Gets the frame associated with the view (if any). Note that this
996 "frame" is not a wxFrame at all in the generic MDI implementation
997 which uses the notebook pages instead of the frames and this is why
998 this method returns a wxWindow and not a wxFrame.
1000 return self
._viewFrame
1003 def SetFrame(self
, frame
):
1005 Sets the frame associated with this view. The application should call
1006 this if possible, to tell the view about the frame. See GetFrame for
1007 the explanation about the mismatch between the "Frame" in the method
1008 name and the type of its parameter.
1010 self
._viewFrame
= frame
1013 def GetDocumentManager(self
):
1015 Returns the document manager instance associated with this view.
1017 if self
._viewDocument
:
1018 return self
.GetDocument().GetDocumentManager()
1023 class DocTemplate(wx
.Object
):
1025 The wxDocTemplate class is used to model the relationship between a
1026 document class and a view class.
1030 def __init__(self
, manager
, description
, filter, dir, ext
, docTypeName
, viewTypeName
, docType
, viewType
, flags
=DEFAULT_TEMPLATE_FLAGS
, icon
=None):
1032 Constructor. Create instances dynamically near the start of your
1033 application after creating a wxDocManager instance, and before doing
1034 any document or view operations.
1036 manager is the document manager object which manages this template.
1038 description is a short description of what the template is for. This
1039 string will be displayed in the file filter list of Windows file
1042 filter is an appropriate file filter such as \*.txt.
1044 dir is the default directory to use for file selectors.
1046 ext is the default file extension (such as txt).
1048 docTypeName is a name that should be unique for a given type of
1049 document, used for gathering a list of views relevant to a
1050 particular document.
1052 viewTypeName is a name that should be unique for a given view.
1054 docClass is a Python class. If this is not supplied, you will need to
1055 derive a new wxDocTemplate class and override the CreateDocument
1056 member to return a new document instance on demand.
1058 viewClass is a Python class. If this is not supplied, you will need to
1059 derive a new wxDocTemplate class and override the CreateView member to
1060 return a new view instance on demand.
1062 flags is a bit list of the following:
1063 wx.TEMPLATE_VISIBLE The template may be displayed to the user in
1066 wx.TEMPLATE_INVISIBLE The template may not be displayed to the user in
1069 wx.DEFAULT_TEMPLATE_FLAGS Defined as wxTEMPLATE_VISIBLE.
1071 self
._docManager
= manager
1072 self
._description
= description
1073 self
._fileFilter
= filter
1074 self
._directory
= dir
1075 self
._defaultExt
= ext
1076 self
._docTypeName
= docTypeName
1077 self
._viewTypeName
= viewTypeName
1078 self
._docType
= docType
1079 self
._viewType
= viewType
1083 self
._docManager
.AssociateTemplate(self
)
1086 def GetDefaultExtension(self
):
1088 Returns the default file extension for the document data, as passed to
1089 the document template constructor.
1091 return self
._defaultExt
1094 def SetDefaultExtension(self
, defaultExt
):
1096 Sets the default file extension.
1098 self
._defaultExt
= defaultExt
1101 def GetDescription(self
):
1103 Returns the text description of this template, as passed to the
1104 document template constructor.
1106 return self
._description
1109 def SetDescription(self
, description
):
1111 Sets the template description.
1113 self
._description
= description
1116 def GetDirectory(self
):
1118 Returns the default directory, as passed to the document template
1121 return self
._directory
1124 def SetDirectory(self
, dir):
1126 Sets the default directory.
1128 self
._directory
= dir
1131 def GetDocumentManager(self
):
1133 Returns the document manager instance for which this template was
1136 return self
._docManager
1139 def SetDocumentManager(self
, manager
):
1141 Sets the document manager instance for which this template was
1142 created. Should not be called by the application.
1144 self
._docManager
= manager
1147 def GetFileFilter(self
):
1149 Returns the file filter, as passed to the document template
1152 return self
._fileFilter
1155 def SetFileFilter(self
, filter):
1157 Sets the file filter.
1159 self
._fileFilter
= filter
1164 Returns the flags, as passed to the document template constructor.
1165 (see the constructor description for more details).
1170 def SetFlags(self
, flags
):
1172 Sets the internal document template flags (see the constructor
1173 description for more details).
1180 Returns the icon, as passed to the document template
1181 constructor. This method has been added to wxPython and is
1187 def SetIcon(self
, flags
):
1189 Sets the icon. This method has been added to wxPython and is not
1195 def GetDocumentType(self
):
1197 Returns the Python document class, as passed to the document template
1200 return self
._docType
1203 def GetViewType(self
):
1205 Returns the Python view class, as passed to the document template
1208 return self
._viewType
1211 def IsVisible(self
):
1213 Returns true if the document template can be shown in user dialogs,
1216 return (self
._flags
& TEMPLATE_VISIBLE
) == TEMPLATE_VISIBLE
1219 def IsNewable(self
):
1221 Returns true if the document template can be shown in "New" dialogs,
1224 This method has been added to wxPython and is not in wxWindows.
1226 return (self
._flags
& TEMPLATE_NO_CREATE
) != TEMPLATE_NO_CREATE
1229 def GetDocumentName(self
):
1231 Returns the document type name, as passed to the document template
1234 return self
._docTypeName
1237 def GetViewName(self
):
1239 Returns the view type name, as passed to the document template
1242 return self
._viewTypeName
1245 def CreateDocument(self
, path
, flags
):
1247 Creates a new instance of the associated document class. If you have
1248 not supplied a class to the template constructor, you will need to
1249 override this function to return an appropriate document instance.
1251 doc
= self
._docType
()
1252 doc
.SetFilename(path
)
1253 doc
.SetDocumentTemplate(self
)
1254 self
.GetDocumentManager().AddDocument(doc
)
1255 doc
.SetCommandProcessor(doc
.OnCreateCommandProcessor())
1256 if doc
.OnCreate(path
, flags
):
1259 if doc
in self
.GetDocumentManager().GetDocuments():
1260 doc
.DeleteAllViews()
1264 def CreateView(self
, doc
, flags
):
1266 Creates a new instance of the associated document view. If you have
1267 not supplied a class to the template constructor, you will need to
1268 override this function to return an appropriate view instance.
1270 view
= self
._viewType
()
1271 view
.SetDocument(doc
)
1272 if view
.OnCreate(doc
, flags
):
1279 def FileMatchesTemplate(self
, path
):
1281 Returns True if the path's extension matches one of this template's
1282 file filter extensions.
1284 ext
= FindExtension(path
)
1285 if not ext
: return False
1287 extList
= self
.GetFileFilter().replace('*','').split(';')
1288 return ext
in extList
1291 class DocManager(wx
.EvtHandler
):
1293 The wxDocManager class is part of the document/view framework supported by
1294 wxWindows, and cooperates with the wxView, wxDocument and wxDocTemplate
1298 def __init__(self
, flags
=DEFAULT_DOCMAN_FLAGS
, initialize
=True):
1300 Constructor. Create a document manager instance dynamically near the
1301 start of your application before doing any document or view operations.
1303 flags is used in the Python version to indicate whether the document
1304 manager is in DOC_SDI or DOC_MDI mode.
1306 If initialize is true, the Initialize function will be called to
1307 create a default history list object. If you derive from wxDocManager,
1308 you may wish to call the base constructor with false, and then call
1309 Initialize in your own constructor, to allow your own Initialize or
1310 OnCreateFileHistory functions to be called.
1313 wx
.EvtHandler
.__init
__(self
)
1315 self
._defaultDocumentNameCounter
= 1
1317 self
._currentView
= None
1318 self
._lastActiveView
= None
1319 self
._maxDocsOpen
= 10000
1320 self
._fileHistory
= None
1321 self
._templates
= []
1323 self
._lastDirectory
= ""
1328 wx
.EVT_MENU(self
, wx
.ID_OPEN
, self
.OnFileOpen
)
1329 wx
.EVT_MENU(self
, wx
.ID_CLOSE
, self
.OnFileClose
)
1330 wx
.EVT_MENU(self
, wx
.ID_CLOSE_ALL
, self
.OnFileCloseAll
)
1331 wx
.EVT_MENU(self
, wx
.ID_REVERT
, self
.OnFileRevert
)
1332 wx
.EVT_MENU(self
, wx
.ID_NEW
, self
.OnFileNew
)
1333 wx
.EVT_MENU(self
, wx
.ID_SAVE
, self
.OnFileSave
)
1334 wx
.EVT_MENU(self
, wx
.ID_SAVEAS
, self
.OnFileSaveAs
)
1335 wx
.EVT_MENU(self
, wx
.ID_UNDO
, self
.OnUndo
)
1336 wx
.EVT_MENU(self
, wx
.ID_REDO
, self
.OnRedo
)
1337 wx
.EVT_MENU(self
, wx
.ID_PRINT
, self
.OnPrint
)
1338 wx
.EVT_MENU(self
, wx
.ID_PRINT_SETUP
, self
.OnPrintSetup
)
1339 wx
.EVT_MENU(self
, wx
.ID_PREVIEW
, self
.OnPreview
)
1341 wx
.EVT_UPDATE_UI(self
, wx
.ID_OPEN
, self
.OnUpdateFileOpen
)
1342 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE
, self
.OnUpdateFileClose
)
1343 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE_ALL
, self
.OnUpdateFileCloseAll
)
1344 wx
.EVT_UPDATE_UI(self
, wx
.ID_REVERT
, self
.OnUpdateFileRevert
)
1345 wx
.EVT_UPDATE_UI(self
, wx
.ID_NEW
, self
.OnUpdateFileNew
)
1346 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVE
, self
.OnUpdateFileSave
)
1347 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVEAS
, self
.OnUpdateFileSaveAs
)
1348 wx
.EVT_UPDATE_UI(self
, wx
.ID_UNDO
, self
.OnUpdateUndo
)
1349 wx
.EVT_UPDATE_UI(self
, wx
.ID_REDO
, self
.OnUpdateRedo
)
1350 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT
, self
.OnUpdatePrint
)
1351 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT_SETUP
, self
.OnUpdatePrintSetup
)
1352 wx
.EVT_UPDATE_UI(self
, wx
.ID_PREVIEW
, self
.OnUpdatePreview
)
1360 wx
.EvtHandler
.Destroy(self
)
1365 Returns the document manager's flags. This method has been
1366 added to wxPython and is not in wxWindows.
1371 def CloseDocument(self
, doc
, force
=True):
1373 Closes the specified document.
1375 if doc
.Close() or force
:
1376 doc
.DeleteAllViews()
1377 if doc
in self
._docs
:
1383 def CloseDocuments(self
, force
=True):
1385 Closes all currently opened documents.
1387 for document
in self
._docs
[::-1]: # Close in lifo (reverse) order. We clone the list to make sure we go through all docs even as they are deleted
1388 if not self
.CloseDocument(document
, force
):
1391 document
.DeleteAllViews() # Implicitly delete the document when the last view is removed
1395 def Clear(self
, force
=True):
1397 Closes all currently opened document by callling CloseDocuments and
1398 clears the document manager's templates.
1400 if not self
.CloseDocuments(force
):
1402 self
._templates
= []
1406 def Initialize(self
):
1408 Initializes data; currently just calls OnCreateFileHistory. Some data
1409 cannot always be initialized in the constructor because the programmer
1410 must be given the opportunity to override functionality. In fact
1411 Initialize is called from the wxDocManager constructor, but this can
1412 be vetoed by passing false to the second argument, allowing the
1413 derived class's constructor to call Initialize, possibly calling a
1414 different OnCreateFileHistory from the default.
1416 The bottom line: if you're not deriving from Initialize, forget it and
1417 construct wxDocManager with no arguments.
1419 self
.OnCreateFileHistory()
1423 def OnCreateFileHistory(self
):
1425 A hook to allow a derived class to create a different type of file
1426 history. Called from Initialize.
1428 self
._fileHistory
= wx
.FileHistory()
1431 def OnFileClose(self
, event
):
1433 Closes and deletes the currently active document.
1435 doc
= self
.GetCurrentDocument()
1437 doc
.DeleteAllViews()
1438 if doc
in self
._docs
:
1439 self
._docs
.remove(doc
)
1442 def OnFileCloseAll(self
, event
):
1444 Closes and deletes all the currently opened documents.
1446 return self
.CloseDocuments(force
= False)
1449 def OnFileNew(self
, event
):
1451 Creates a new document and reads in the selected file.
1453 self
.CreateDocument('', DOC_NEW
)
1456 def OnFileOpen(self
, event
):
1458 Creates a new document and reads in the selected file.
1460 if not self
.CreateDocument('', DEFAULT_DOCMAN_FLAGS
):
1461 self
.OnOpenFileFailure()
1464 def OnFileRevert(self
, event
):
1466 Reverts the current document by calling wxDocument.Save for the current
1469 doc
= self
.GetCurrentDocument()
1475 def OnFileSave(self
, event
):
1477 Saves the current document by calling wxDocument.Save for the current
1480 doc
= self
.GetCurrentDocument()
1486 def OnFileSaveAs(self
, event
):
1488 Calls wxDocument.SaveAs for the current document.
1490 doc
= self
.GetCurrentDocument()
1496 def OnPrint(self
, event
):
1498 Prints the current document by calling its View's OnCreatePrintout
1501 view
= self
.GetCurrentView()
1505 printout
= view
.OnCreatePrintout()
1507 if not hasattr(self
, "printData"):
1508 self
.printData
= wx
.PrintData()
1509 self
.printData
.SetPaperId(wx
.PAPER_LETTER
)
1510 self
.printData
.SetPrintMode(wx
.PRINT_MODE_PRINTER
)
1512 pdd
= wx
.PrintDialogData(self
.printData
)
1513 printer
= wx
.Printer(pdd
)
1514 printer
.Print(view
.GetFrame(), printout
)
1517 def OnPrintSetup(self
, event
):
1519 Presents the print setup dialog.
1521 view
= self
.GetCurrentView()
1523 parentWin
= view
.GetFrame()
1525 parentWin
= wx
.GetApp().GetTopWindow()
1527 if not hasattr(self
, "printData"):
1528 self
.printData
= wx
.PrintData()
1529 self
.printData
.SetPaperId(wx
.PAPER_LETTER
)
1531 data
= wx
.PrintDialogData(self
.printData
)
1532 printDialog
= wx
.PrintDialog(parentWin
, data
)
1533 printDialog
.GetPrintDialogData().SetSetupDialog(True)
1534 printDialog
.ShowModal()
1536 # this makes a copy of the wx.PrintData instead of just saving
1537 # a reference to the one inside the PrintDialogData that will
1538 # be destroyed when the dialog is destroyed
1539 self
.printData
= wx
.PrintData(printDialog
.GetPrintDialogData().GetPrintData())
1541 printDialog
.Destroy()
1544 def OnPreview(self
, event
):
1546 Previews the current document by calling its View's OnCreatePrintout
1549 view
= self
.GetCurrentView()
1553 printout
= view
.OnCreatePrintout()
1555 if not hasattr(self
, "printData"):
1556 self
.printData
= wx
.PrintData()
1557 self
.printData
.SetPaperId(wx
.PAPER_LETTER
)
1558 self
.printData
.SetPrintMode(wx
.PRINT_MODE_PREVIEW
)
1560 data
= wx
.PrintDialogData(self
.printData
)
1561 # Pass two printout objects: for preview, and possible printing.
1562 preview
= wx
.PrintPreview(printout
, view
.OnCreatePrintout(), data
)
1563 if not preview
.Ok():
1564 wx
.MessageBox(_("Unable to display print preview."))
1566 # wxWindows source doesn't use base frame's pos, size, and icon, but did it this way so it would work like MS Office etc.
1567 mimicFrame
= wx
.GetApp().GetTopWindow()
1568 frame
= wx
.PreviewFrame(preview
, mimicFrame
, _("Print Preview"), mimicFrame
.GetPosition(), mimicFrame
.GetSize())
1569 frame
.SetIcon(mimicFrame
.GetIcon())
1570 frame
.SetTitle(_("%s - %s - Preview") % (mimicFrame
.GetTitle(), view
.GetDocument().GetPrintableName()))
1575 def OnUndo(self
, event
):
1577 Issues an Undo command to the current document's command processor.
1579 doc
= self
.GetCurrentDocument()
1582 if doc
.GetCommandProcessor():
1583 doc
.GetCommandProcessor().Undo()
1586 def OnRedo(self
, event
):
1588 Issues a Redo command to the current document's command processor.
1590 doc
= self
.GetCurrentDocument()
1593 if doc
.GetCommandProcessor():
1594 doc
.GetCommandProcessor().Redo()
1597 def OnUpdateFileOpen(self
, event
):
1599 Updates the user interface for the File Open command.
1604 def OnUpdateFileClose(self
, event
):
1606 Updates the user interface for the File Close command.
1608 event
.Enable(self
.GetCurrentDocument() != None)
1611 def OnUpdateFileCloseAll(self
, event
):
1613 Updates the user interface for the File Close All command.
1615 event
.Enable(self
.GetCurrentDocument() != None)
1618 def OnUpdateFileRevert(self
, event
):
1620 Updates the user interface for the File Revert command.
1622 event
.Enable(self
.GetCurrentDocument() != None)
1625 def OnUpdateFileNew(self
, event
):
1627 Updates the user interface for the File New command.
1632 def OnUpdateFileSave(self
, event
):
1634 Updates the user interface for the File Save command.
1636 doc
= self
.GetCurrentDocument()
1637 event
.Enable(doc
!= None and doc
.IsModified())
1640 def OnUpdateFileSaveAs(self
, event
):
1642 Updates the user interface for the File Save As command.
1644 event
.Enable(self
.GetCurrentDocument() != None and self
.GetCurrentDocument().GetWriteable())
1647 def OnUpdateUndo(self
, event
):
1649 Updates the user interface for the Undo command.
1651 doc
= self
.GetCurrentDocument()
1652 event
.Enable(doc
!= None and doc
.GetCommandProcessor() != None and doc
.GetCommandProcessor().CanUndo())
1653 if doc
and doc
.GetCommandProcessor():
1654 doc
.GetCommandProcessor().SetMenuStrings()
1656 event
.SetText(_("&Undo\tCtrl+Z"))
1659 def OnUpdateRedo(self
, event
):
1661 Updates the user interface for the Redo command.
1663 doc
= self
.GetCurrentDocument()
1664 event
.Enable(doc
!= None and doc
.GetCommandProcessor() != None and doc
.GetCommandProcessor().CanRedo())
1665 if doc
and doc
.GetCommandProcessor():
1666 doc
.GetCommandProcessor().SetMenuStrings()
1668 event
.SetText(_("&Redo\tCtrl+Y"))
1671 def OnUpdatePrint(self
, event
):
1673 Updates the user interface for the Print command.
1675 event
.Enable(self
.GetCurrentDocument() != None)
1678 def OnUpdatePrintSetup(self
, event
):
1680 Updates the user interface for the Print Setup command.
1685 def OnUpdatePreview(self
, event
):
1687 Updates the user interface for the Print Preview command.
1689 event
.Enable(self
.GetCurrentDocument() != None)
1692 def GetCurrentView(self
):
1694 Returns the currently active view.
1696 if self
._currentView
:
1697 return self
._currentView
1698 if len(self
._docs
) == 1:
1699 return self
._docs
[0].GetFirstView()
1703 def GetLastActiveView(self
):
1705 Returns the last active view. This is used in the SDI framework where dialogs can be mistaken for a view
1706 and causes the framework to deactivete the current view. This happens when something like a custom dialog box used
1707 to operate on the current view is shown.
1709 if len(self
._docs
) >= 1:
1710 return self
._lastActiveView
1715 def ProcessEvent(self
, event
):
1717 Processes an event, searching event tables and calling zero or more
1718 suitable event handler function(s). Note that the ProcessEvent
1719 method is called from the wxPython docview framework directly since
1720 wxPython does not have a virtual ProcessEvent function.
1722 view
= self
.GetCurrentView()
1724 if view
.ProcessEvent(event
):
1727 if id == wx
.ID_OPEN
:
1728 self
.OnFileOpen(event
)
1730 elif id == wx
.ID_CLOSE
:
1731 self
.OnFileClose(event
)
1733 elif id == wx
.ID_CLOSE_ALL
:
1734 self
.OnFileCloseAll(event
)
1736 elif id == wx
.ID_REVERT
:
1737 self
.OnFileRevert(event
)
1739 elif id == wx
.ID_NEW
:
1740 self
.OnFileNew(event
)
1742 elif id == wx
.ID_SAVE
:
1743 self
.OnFileSave(event
)
1745 elif id == wx
.ID_SAVEAS
:
1746 self
.OnFileSaveAs(event
)
1748 elif id == wx
.ID_UNDO
:
1751 elif id == wx
.ID_REDO
:
1754 elif id == wx
.ID_PRINT
:
1757 elif id == wx
.ID_PRINT_SETUP
:
1758 self
.OnPrintSetup(event
)
1760 elif id == wx
.ID_PREVIEW
:
1761 self
.OnPreview(event
)
1767 def ProcessUpdateUIEvent(self
, event
):
1769 Processes a UI event, searching event tables and calling zero or more
1770 suitable event handler function(s). Note that the ProcessEvent
1771 method is called from the wxPython docview framework directly since
1772 wxPython does not have a virtual ProcessEvent function.
1775 view
= self
.GetCurrentView()
1777 if view
.ProcessUpdateUIEvent(event
):
1779 if id == wx
.ID_OPEN
:
1780 self
.OnUpdateFileOpen(event
)
1782 elif id == wx
.ID_CLOSE
:
1783 self
.OnUpdateFileClose(event
)
1785 elif id == wx
.ID_CLOSE_ALL
:
1786 self
.OnUpdateFileCloseAll(event
)
1788 elif id == wx
.ID_REVERT
:
1789 self
.OnUpdateFileRevert(event
)
1791 elif id == wx
.ID_NEW
:
1792 self
.OnUpdateFileNew(event
)
1794 elif id == wx
.ID_SAVE
:
1795 self
.OnUpdateFileSave(event
)
1797 elif id == wx
.ID_SAVEAS
:
1798 self
.OnUpdateFileSaveAs(event
)
1800 elif id == wx
.ID_UNDO
:
1801 self
.OnUpdateUndo(event
)
1803 elif id == wx
.ID_REDO
:
1804 self
.OnUpdateRedo(event
)
1806 elif id == wx
.ID_PRINT
:
1807 self
.OnUpdatePrint(event
)
1809 elif id == wx
.ID_PRINT_SETUP
:
1810 self
.OnUpdatePrintSetup(event
)
1812 elif id == wx
.ID_PREVIEW
:
1813 self
.OnUpdatePreview(event
)
1819 def CreateDocument(self
, path
, flags
=0):
1821 Creates a new document in a manner determined by the flags parameter,
1824 wx.lib.docview.DOC_NEW Creates a fresh document.
1825 wx.lib.docview.DOC_SILENT Silently loads the given document file.
1827 If wx.lib.docview.DOC_NEW is present, a new document will be created and returned,
1828 possibly after asking the user for a template to use if there is more
1829 than one document template. If wx.lib.docview.DOC_SILENT is present, a new document
1830 will be created and the given file loaded into it. If neither of these
1831 flags is present, the user will be presented with a file selector for
1832 the file to load, and the template to use will be determined by the
1833 extension (Windows) or by popping up a template choice list (other
1836 If the maximum number of documents has been reached, this function
1837 will delete the oldest currently loaded document before creating a new
1840 wxPython version supports the document manager's wx.lib.docview.DOC_OPEN_ONCE
1841 and wx.lib.docview.DOC_NO_VIEW flag.
1843 if wx.lib.docview.DOC_OPEN_ONCE is present, trying to open the same file multiple
1844 times will just return the same document.
1845 if wx.lib.docview.DOC_NO_VIEW is present, opening a file will generate the document,
1846 but not generate a corresponding view.
1849 for temp
in self
._templates
:
1850 if temp
.IsVisible():
1851 templates
.append(temp
)
1852 if len(templates
) == 0:
1855 if len(self
.GetDocuments()) >= self
._maxDocsOpen
:
1856 doc
= self
.GetDocuments()[0]
1857 if not self
.CloseDocument(doc
, False):
1861 for temp
in templates
[:]:
1862 if not temp
.IsNewable():
1863 templates
.remove(temp
)
1864 if len(templates
) == 1:
1867 temp
= self
.SelectDocumentType(templates
)
1869 newDoc
= temp
.CreateDocument(path
, flags
)
1871 newDoc
.SetDocumentName(temp
.GetDocumentName())
1872 newDoc
.SetDocumentTemplate(temp
)
1873 newDoc
.OnNewDocument()
1878 if path
and flags
& DOC_SILENT
:
1879 temp
= self
.FindTemplateForPath(path
)
1881 temp
, path
= self
.SelectDocumentPath(templates
, path
, flags
)
1884 if path
and self
.GetFlags() & DOC_OPEN_ONCE
:
1885 for document
in self
._docs
:
1886 if document
.GetFilename() and os
.path
.normcase(document
.GetFilename()) == os
.path
.normcase(path
):
1887 """ check for file modification outside of application """
1888 if not document
.IsDocumentModificationDateCorrect():
1889 msgTitle
= wx
.GetApp().GetAppName()
1891 msgTitle
= _("Warning")
1892 shortName
= document
.GetPrintableName()
1893 res
= wx
.MessageBox(_("'%s' has been modified outside of %s. Reload '%s' from file system?") % (shortName
, msgTitle
, shortName
),
1895 wx
.YES_NO | wx
.ICON_QUESTION
,
1896 self
.FindSuitableParent())
1898 if not self
.CloseDocument(document
, False):
1899 wx
.MessageBox(_("Couldn't reload '%s'. Unable to close current '%s'.") % (shortName
, shortName
))
1901 return self
.CreateDocument(path
, flags
)
1902 elif res
== wx
.NO
: # don't ask again
1903 document
.SetDocumentModificationDate()
1905 firstView
= document
.GetFirstView()
1906 if not firstView
and not (flags
& DOC_NO_VIEW
):
1907 document
.GetDocumentTemplate().CreateView(document
, flags
)
1908 document
.UpdateAllViews()
1909 firstView
= document
.GetFirstView()
1911 if firstView
and firstView
.GetFrame() and not (flags
& DOC_NO_VIEW
):
1912 firstView
.GetFrame().SetFocus() # Not in wxWindows code but useful nonetheless
1913 if hasattr(firstView
.GetFrame(), "IsIconized") and firstView
.GetFrame().IsIconized(): # Not in wxWindows code but useful nonetheless
1914 firstView
.GetFrame().Iconize(False)
1918 newDoc
= temp
.CreateDocument(path
, flags
)
1920 newDoc
.SetDocumentName(temp
.GetDocumentName())
1921 newDoc
.SetDocumentTemplate(temp
)
1922 if not newDoc
.OnOpenDocument(path
):
1923 newDoc
.DeleteAllViews() # Implicitly deleted by DeleteAllViews
1924 frame
= newDoc
.GetFirstView().GetFrame()
1926 frame
.Destroy() # DeleteAllViews doesn't get rid of the frame, so we'll explicitly destroy it.
1928 self
.AddFileToHistory(path
)
1934 def CreateView(self
, doc
, flags
=0):
1936 Creates a new view for the given document. If more than one view is
1937 allowed for the document (by virtue of multiple templates mentioning
1938 the same document type), a choice of view is presented to the user.
1941 for temp
in self
._templates
:
1942 if temp
.IsVisible():
1943 if temp
.GetDocumentName() == doc
.GetDocumentName():
1944 templates
.append(temp
)
1945 if len(templates
) == 0:
1948 if len(templates
) == 1:
1950 view
= temp
.CreateView(doc
, flags
)
1952 view
.SetViewName(temp
.GetViewName())
1955 temp
= SelectViewType(templates
)
1957 view
= temp
.CreateView(doc
, flags
)
1959 view
.SetViewName(temp
.GetViewName())
1965 def DeleteTemplate(self
, template
, flags
):
1967 Placeholder, not yet implemented in wxWindows.
1972 def FlushDoc(self
, doc
):
1974 Placeholder, not yet implemented in wxWindows.
1979 def MatchTemplate(self
, path
):
1981 Placeholder, not yet implemented in wxWindows.
1986 def GetCurrentDocument(self
):
1988 Returns the document associated with the currently active view (if any).
1990 view
= self
.GetCurrentView()
1992 return view
.GetDocument()
1997 def MakeDefaultName(self
):
1999 Returns a suitable default name. This is implemented by appending an
2000 integer counter to the string "Untitled" and incrementing the counter.
2002 name
= _("Untitled %d") % self
._defaultDocumentNameCounter
2003 self
._defaultDocumentNameCounter
= self
._defaultDocumentNameCounter
+ 1
2007 def MakeFrameTitle(self
):
2009 Returns a suitable title for a document frame. This is implemented by
2010 appending the document name to the application name.
2012 appName
= wx
.GetApp().GetAppName()
2016 docName
= doc
.GetPrintableName()
2017 title
= docName
+ _(" - ") + appName
2021 def AddFileToHistory(self
, fileName
):
2023 Adds a file to the file history list, if we have a pointer to an
2024 appropriate file menu.
2026 if self
._fileHistory
:
2027 self
._fileHistory
.AddFileToHistory(fileName
)
2030 def RemoveFileFromHistory(self
, i
):
2032 Removes a file from the file history list, if we have a pointer to an
2033 appropriate file menu.
2035 if self
._fileHistory
:
2036 self
._fileHistory
.RemoveFileFromHistory(i
)
2039 def GetFileHistory(self
):
2041 Returns the file history.
2043 return self
._fileHistory
2046 def GetHistoryFile(self
, i
):
2048 Returns the file at index i from the file history.
2050 if self
._fileHistory
:
2051 return self
._fileHistory
.GetHistoryFile(i
)
2056 def FileHistoryUseMenu(self
, menu
):
2058 Use this menu for appending recently-visited document filenames, for
2059 convenient access. Calling this function with a valid menu enables the
2060 history list functionality.
2062 Note that you can add multiple menus using this function, to be
2063 managed by the file history object.
2065 if self
._fileHistory
:
2066 self
._fileHistory
.UseMenu(menu
)
2069 def FileHistoryRemoveMenu(self
, menu
):
2071 Removes the given menu from the list of menus managed by the file
2074 if self
._fileHistory
:
2075 self
._fileHistory
.RemoveMenu(menu
)
2078 def FileHistoryLoad(self
, config
):
2080 Loads the file history from a config object.
2082 if self
._fileHistory
:
2083 self
._fileHistory
.Load(config
)
2086 def FileHistorySave(self
, config
):
2088 Saves the file history into a config object. This must be called
2089 explicitly by the application.
2091 if self
._fileHistory
:
2092 self
._fileHistory
.Save(config
)
2095 def FileHistoryAddFilesToMenu(self
, menu
=None):
2097 Appends the files in the history list, to all menus managed by the
2098 file history object.
2100 If menu is specified, appends the files in the history list to the
2103 if self
._fileHistory
:
2105 self
._fileHistory
.AddFilesToThisMenu(menu
)
2107 self
._fileHistory
.AddFilesToMenu()
2110 def GetHistoryFilesCount(self
):
2112 Returns the number of files currently stored in the file history.
2114 if self
._fileHistory
:
2115 return self
._fileHistory
.GetNoHistoryFiles()
2120 def FindTemplateForPath(self
, path
):
2122 Given a path, try to find template that matches the extension. This is
2123 only an approximate method of finding a template for creating a
2126 Note this wxPython verson looks for and returns a default template if no specific template is found.
2129 for temp
in self
._templates
:
2130 if temp
.FileMatchesTemplate(path
):
2133 if "*.*" in temp
.GetFileFilter():
2138 def FindSuitableParent(self
):
2140 Returns a parent frame or dialog, either the frame with the current
2141 focus or if there is no current focus the application's top frame.
2143 parent
= wx
.GetApp().GetTopWindow()
2144 focusWindow
= wx
.Window_FindFocus()
2146 while focusWindow
and not isinstance(focusWindow
, wx
.Dialog
) and not isinstance(focusWindow
, wx
.Frame
):
2147 focusWindow
= focusWindow
.GetParent()
2149 parent
= focusWindow
2153 def SelectDocumentPath(self
, templates
, flags
, save
):
2155 Under Windows, pops up a file selector with a list of filters
2156 corresponding to document templates. The wxDocTemplate corresponding
2157 to the selected file's extension is returned.
2159 On other platforms, if there is more than one document template a
2160 choice list is popped up, followed by a file selector.
2162 This function is used in wxDocManager.CreateDocument.
2164 if wx
.Platform
== "__WXMSW__" or wx
.Platform
== "__WXGTK__" or wx
.Platform
== "__WXMAC__":
2166 for temp
in templates
:
2167 if temp
.IsVisible():
2169 descr
= descr
+ _('|')
2170 descr
= descr
+ temp
.GetDescription() + _(" (") + temp
.GetFileFilter() + _(") |") + temp
.GetFileFilter() # spacing is important, make sure there is no space after the "|", it causes a bug on wx_gtk
2171 descr
= _("All|*.*|%s") % descr
# spacing is important, make sure there is no space after the "|", it causes a bug on wx_gtk
2175 dlg
= wx
.FileDialog(self
.FindSuitableParent(),
2178 style
=wx
.OPEN|wx
.FILE_MUST_EXIST|wx
.CHANGE_DIR
)
2179 # dlg.CenterOnParent() # wxBug: caused crash with wx.FileDialog
2180 if dlg
.ShowModal() == wx
.ID_OK
:
2181 path
= dlg
.GetPath()
2187 theTemplate
= self
.FindTemplateForPath(path
)
2188 return (theTemplate
, path
)
2193 def OnOpenFileFailure(self
):
2195 Called when there is an error opening a file.
2200 def SelectDocumentType(self
, temps
, sort
=False):
2202 Returns a document template by asking the user (if there is more than
2203 one template). This function is used in wxDocManager.CreateDocument.
2207 templates - list of templates from which to choose a desired template.
2209 sort - If more than one template is passed in in templates, then this
2210 parameter indicates whether the list of templates that the user will
2211 have to choose from is sorted or not when shown the choice box dialog.
2216 if temp
.IsVisible():
2218 for temp2
in templates
:
2219 if temp
.GetDocumentName() == temp2
.GetDocumentName() and temp
.GetViewName() == temp2
.GetViewName():
2223 templates
.append(temp
)
2225 if len(templates
) == 0:
2227 elif len(templates
) == 1:
2232 return cmp(a
.GetDescription(), b
.GetDescription())
2233 templates
.sort(tempcmp
)
2236 for temp
in templates
:
2237 strings
.append(temp
.GetDescription())
2239 res
= wx
.GetSingleChoiceIndex(_("Select a document type:"),
2242 self
.FindSuitableParent())
2245 return templates
[res
]
2248 def SelectViewType(self
, temps
, sort
=False):
2250 Returns a document template by asking the user (if there is more than one template), displaying a list of valid views. This function is used in wxDocManager::CreateView. The dialog normally will not appear because the array of templates only contains those relevant to the document in question, and often there will only be one such.
2255 if temp
.IsVisible() and temp
.GetViewTypeName():
2256 if temp
.GetViewName() not in strings
:
2257 templates
.append(temp
)
2258 strings
.append(temp
.GetViewTypeName())
2260 if len(templates
) == 0:
2262 elif len(templates
) == 1:
2267 return cmp(a
.GetViewTypeName(), b
.GetViewTypeName())
2268 templates
.sort(tempcmp
)
2270 res
= wx
.GetSingleChoiceIndex(_("Select a document view:"),
2273 self
.FindSuitableParent())
2276 return templates
[res
]
2279 def GetTemplates(self
):
2281 Returns the document manager's template list. This method has been added to
2282 wxPython and is not in wxWindows.
2284 return self
._templates
2287 def AssociateTemplate(self
, docTemplate
):
2289 Adds the template to the document manager's template list.
2291 if docTemplate
not in self
._templates
:
2292 self
._templates
.append(docTemplate
)
2295 def DisassociateTemplate(self
, docTemplate
):
2297 Removes the template from the list of templates.
2299 self
._templates
.remove(docTemplate
)
2302 def AddDocument(self
, document
):
2304 Adds the document to the list of documents.
2306 if document
not in self
._docs
:
2307 self
._docs
.append(document
)
2310 def RemoveDocument(self
, doc
):
2312 Removes the document from the list of documents.
2314 if doc
in self
._docs
:
2315 self
._docs
.remove(doc
)
2318 def ActivateView(self
, view
, activate
=True, deleting
=False):
2320 Sets the current view.
2323 self
._currentView
= view
2324 self
._lastActiveView
= view
2326 self
._currentView
= None
2329 def GetMaxDocsOpen(self
):
2331 Returns the number of documents that can be open simultaneously.
2333 return self
._maxDocsOpen
2336 def SetMaxDocsOpen(self
, maxDocsOpen
):
2338 Sets the maximum number of documents that can be open at a time. By
2339 default, this is 10,000. If you set it to 1, existing documents will
2340 be saved and deleted when the user tries to open or create a new one
2341 (similar to the behaviour of Windows Write, for example). Allowing
2342 multiple documents gives behaviour more akin to MS Word and other
2343 Multiple Document Interface applications.
2345 self
._maxDocsOpen
= maxDocsOpen
2348 def GetDocuments(self
):
2350 Returns the list of documents.
2355 class DocParentFrame(wx
.Frame
):
2357 The wxDocParentFrame class provides a default top-level frame for
2358 applications using the document/view framework. This class can only be
2359 used for SDI (not MDI) parent frames.
2361 It cooperates with the wxView, wxDocument, wxDocManager and wxDocTemplates
2365 def __init__(self
, manager
, frame
, id, title
, pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
, style
=wx
.DEFAULT_FRAME_STYLE
, name
="frame"):
2367 Constructor. Note that the event table must be rebuilt for the
2368 frame since the EvtHandler is not virtual.
2370 wx
.Frame
.__init
__(self
, frame
, id, title
, pos
, size
, style
)
2371 self
._docManager
= manager
2373 wx
.EVT_CLOSE(self
, self
.OnCloseWindow
)
2375 wx
.EVT_MENU(self
, wx
.ID_EXIT
, self
.OnExit
)
2376 wx
.EVT_MENU_RANGE(self
, wx
.ID_FILE1
, wx
.ID_FILE9
, self
.OnMRUFile
)
2378 wx
.EVT_MENU(self
, wx
.ID_NEW
, self
.ProcessEvent
)
2379 wx
.EVT_MENU(self
, wx
.ID_OPEN
, self
.ProcessEvent
)
2380 wx
.EVT_MENU(self
, wx
.ID_CLOSE_ALL
, self
.ProcessEvent
)
2381 wx
.EVT_MENU(self
, wx
.ID_CLOSE
, self
.ProcessEvent
)
2382 wx
.EVT_MENU(self
, wx
.ID_REVERT
, self
.ProcessEvent
)
2383 wx
.EVT_MENU(self
, wx
.ID_SAVE
, self
.ProcessEvent
)
2384 wx
.EVT_MENU(self
, wx
.ID_SAVEAS
, self
.ProcessEvent
)
2385 wx
.EVT_MENU(self
, wx
.ID_UNDO
, self
.ProcessEvent
)
2386 wx
.EVT_MENU(self
, wx
.ID_REDO
, self
.ProcessEvent
)
2387 wx
.EVT_MENU(self
, wx
.ID_PRINT
, self
.ProcessEvent
)
2388 wx
.EVT_MENU(self
, wx
.ID_PRINT_SETUP
, self
.ProcessEvent
)
2389 wx
.EVT_MENU(self
, wx
.ID_PREVIEW
, self
.ProcessEvent
)
2391 wx
.EVT_UPDATE_UI(self
, wx
.ID_NEW
, self
.ProcessUpdateUIEvent
)
2392 wx
.EVT_UPDATE_UI(self
, wx
.ID_OPEN
, self
.ProcessUpdateUIEvent
)
2393 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE_ALL
, self
.ProcessUpdateUIEvent
)
2394 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE
, self
.ProcessUpdateUIEvent
)
2395 wx
.EVT_UPDATE_UI(self
, wx
.ID_REVERT
, self
.ProcessUpdateUIEvent
)
2396 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVE
, self
.ProcessUpdateUIEvent
)
2397 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVEAS
, self
.ProcessUpdateUIEvent
)
2398 wx
.EVT_UPDATE_UI(self
, wx
.ID_UNDO
, self
.ProcessUpdateUIEvent
)
2399 wx
.EVT_UPDATE_UI(self
, wx
.ID_REDO
, self
.ProcessUpdateUIEvent
)
2400 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT
, self
.ProcessUpdateUIEvent
)
2401 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT_SETUP
, self
.ProcessUpdateUIEvent
)
2402 wx
.EVT_UPDATE_UI(self
, wx
.ID_PREVIEW
, self
.ProcessUpdateUIEvent
)
2405 def ProcessEvent(self
, event
):
2407 Processes an event, searching event tables and calling zero or more
2408 suitable event handler function(s). Note that the ProcessEvent
2409 method is called from the wxPython docview framework directly since
2410 wxPython does not have a virtual ProcessEvent function.
2412 return self
._docManager
and self
._docManager
.ProcessEvent(event
)
2415 def ProcessUpdateUIEvent(self
, event
):
2417 Processes a UI event, searching event tables and calling zero or more
2418 suitable event handler function(s). Note that the ProcessEvent
2419 method is called from the wxPython docview framework directly since
2420 wxPython does not have a virtual ProcessEvent function.
2422 return self
._docManager
and self
._docManager
.ProcessUpdateUIEvent(event
)
2425 def OnExit(self
, event
):
2427 Called when File/Exit is chosen and closes the window.
2432 def OnMRUFile(self
, event
):
2434 Opens the appropriate file when it is selected from the file history
2437 n
= event
.GetId() - wx
.ID_FILE1
2438 filename
= self
._docManager
.GetHistoryFile(n
)
2440 self
._docManager
.CreateDocument(filename
, DOC_SILENT
)
2442 self
._docManager
.RemoveFileFromHistory(n
)
2443 msgTitle
= wx
.GetApp().GetAppName()
2445 msgTitle
= _("File Error")
2446 wx
.MessageBox("The file '%s' doesn't exist and couldn't be opened.\nIt has been removed from the most recently used files list" % FileNameFromPath(file),
2448 wx
.OK | wx
.ICON_EXCLAMATION
,
2452 def OnCloseWindow(self
, event
):
2454 Deletes all views and documents. If no user input cancelled the
2455 operation, the frame will be destroyed and the application will exit.
2457 if self
._docManager
.Clear(not event
.CanVeto()):
2463 class DocChildFrame(wx
.Frame
):
2465 The wxDocChildFrame class provides a default frame for displaying
2466 documents on separate windows. This class can only be used for SDI (not
2469 The class is part of the document/view framework supported by wxWindows,
2470 and cooperates with the wxView, wxDocument, wxDocManager and wxDocTemplate
2475 def __init__(self
, doc
, view
, frame
, id, title
, pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
, style
=wx
.DEFAULT_FRAME_STYLE
, name
="frame"):
2477 Constructor. Note that the event table must be rebuilt for the
2478 frame since the EvtHandler is not virtual.
2480 wx
.Frame
.__init
__(self
, frame
, id, title
, pos
, size
, style
, name
)
2481 wx
.EVT_ACTIVATE(self
, self
.OnActivate
)
2482 wx
.EVT_CLOSE(self
, self
.OnCloseWindow
)
2483 self
._childDocument
= doc
2484 self
._childView
= view
2488 wx
.EVT_MENU(self
, wx
.ID_NEW
, self
.ProcessEvent
)
2489 wx
.EVT_MENU(self
, wx
.ID_OPEN
, self
.ProcessEvent
)
2490 wx
.EVT_MENU(self
, wx
.ID_CLOSE_ALL
, self
.ProcessEvent
)
2491 wx
.EVT_MENU(self
, wx
.ID_CLOSE
, self
.ProcessEvent
)
2492 wx
.EVT_MENU(self
, wx
.ID_REVERT
, self
.ProcessEvent
)
2493 wx
.EVT_MENU(self
, wx
.ID_SAVE
, self
.ProcessEvent
)
2494 wx
.EVT_MENU(self
, wx
.ID_SAVEAS
, self
.ProcessEvent
)
2495 wx
.EVT_MENU(self
, wx
.ID_UNDO
, self
.ProcessEvent
)
2496 wx
.EVT_MENU(self
, wx
.ID_REDO
, self
.ProcessEvent
)
2497 wx
.EVT_MENU(self
, wx
.ID_PRINT
, self
.ProcessEvent
)
2498 wx
.EVT_MENU(self
, wx
.ID_PRINT_SETUP
, self
.ProcessEvent
)
2499 wx
.EVT_MENU(self
, wx
.ID_PREVIEW
, self
.ProcessEvent
)
2501 wx
.EVT_UPDATE_UI(self
, wx
.ID_NEW
, self
.ProcessUpdateUIEvent
)
2502 wx
.EVT_UPDATE_UI(self
, wx
.ID_OPEN
, self
.ProcessUpdateUIEvent
)
2503 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE_ALL
, self
.ProcessUpdateUIEvent
)
2504 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE
, self
.ProcessUpdateUIEvent
)
2505 wx
.EVT_UPDATE_UI(self
, wx
.ID_REVERT
, self
.ProcessUpdateUIEvent
)
2506 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVE
, self
.ProcessUpdateUIEvent
)
2507 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVEAS
, self
.ProcessUpdateUIEvent
)
2508 wx
.EVT_UPDATE_UI(self
, wx
.ID_UNDO
, self
.ProcessUpdateUIEvent
)
2509 wx
.EVT_UPDATE_UI(self
, wx
.ID_REDO
, self
.ProcessUpdateUIEvent
)
2510 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT
, self
.ProcessUpdateUIEvent
)
2511 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT_SETUP
, self
.ProcessUpdateUIEvent
)
2512 wx
.EVT_UPDATE_UI(self
, wx
.ID_PREVIEW
, self
.ProcessUpdateUIEvent
)
2515 def ProcessEvent(self
, event
):
2517 Processes an event, searching event tables and calling zero or more
2518 suitable event handler function(s). Note that the ProcessEvent
2519 method is called from the wxPython docview framework directly since
2520 wxPython does not have a virtual ProcessEvent function.
2523 self
._childView
.Activate(True)
2524 if not self
._childView
or not self
._childView
.ProcessEvent(event
):
2525 # IsInstance not working, but who cares just send all the commands up since this isn't a real ProcessEvent like wxWindows
2526 # if not isinstance(event, wx.CommandEvent) or not self.GetParent() or not self.GetParent().ProcessEvent(event):
2527 if not self
.GetParent() or not self
.GetParent().ProcessEvent(event
):
2535 def ProcessUpdateUIEvent(self
, event
):
2537 Processes a UI event, searching event tables and calling zero or more
2538 suitable event handler function(s). Note that the ProcessEvent
2539 method is called from the wxPython docview framework directly since
2540 wxPython does not have a virtual ProcessEvent function.
2542 if self
.GetParent():
2543 self
.GetParent().ProcessUpdateUIEvent(event
)
2548 def OnActivate(self
, event
):
2550 Activates the current view.
2552 # wx.Frame.OnActivate(event) This is in the wxWindows docview demo but there is no such method in wxPython, so do a Raise() instead
2554 self
._childView
.Activate(event
.GetActive())
2557 def OnCloseWindow(self
, event
):
2559 Closes and deletes the current view and document.
2563 if not event
.CanVeto():
2566 ans
= self
._childView
.Close(deleteWindow
= False)
2569 self
._childView
.Activate(False)
2570 self
._childView
.Destroy()
2571 self
._childView
= None
2572 if self
._childDocument
:
2573 self
._childDocument
.Destroy() # This isn't in the wxWindows codebase but the document needs to be disposed of somehow
2574 self
._childDocument
= None
2582 def GetDocument(self
):
2584 Returns the document associated with this frame.
2586 return self
._childDocument
2589 def SetDocument(self
, document
):
2591 Sets the document for this frame.
2593 self
._childDocument
= document
2598 Returns the view associated with this frame.
2600 return self
._childView
2603 def SetView(self
, view
):
2605 Sets the view for this frame.
2607 self
._childView
= view
2610 class DocMDIParentFrame(wx
.MDIParentFrame
):
2612 The wxDocMDIParentFrame class provides a default top-level frame for
2613 applications using the document/view framework. This class can only be
2614 used for MDI parent frames.
2616 It cooperates with the wxView, wxDocument, wxDocManager and wxDocTemplate
2621 def __init__(self
, manager
, frame
, id, title
, pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
, style
=wx
.DEFAULT_FRAME_STYLE
, name
="frame"):
2623 Constructor. Note that the event table must be rebuilt for the
2624 frame since the EvtHandler is not virtual.
2626 wx
.MDIParentFrame
.__init
__(self
, frame
, id, title
, pos
, size
, style
, name
)
2627 self
._docManager
= manager
2629 wx
.EVT_CLOSE(self
, self
.OnCloseWindow
)
2631 wx
.EVT_MENU(self
, wx
.ID_EXIT
, self
.OnExit
)
2632 wx
.EVT_MENU_RANGE(self
, wx
.ID_FILE1
, wx
.ID_FILE9
, self
.OnMRUFile
)
2634 wx
.EVT_MENU(self
, wx
.ID_NEW
, self
.ProcessEvent
)
2635 wx
.EVT_MENU(self
, wx
.ID_OPEN
, self
.ProcessEvent
)
2636 wx
.EVT_MENU(self
, wx
.ID_CLOSE_ALL
, self
.ProcessEvent
)
2637 wx
.EVT_MENU(self
, wx
.ID_CLOSE
, self
.ProcessEvent
)
2638 wx
.EVT_MENU(self
, wx
.ID_REVERT
, self
.ProcessEvent
)
2639 wx
.EVT_MENU(self
, wx
.ID_SAVE
, self
.ProcessEvent
)
2640 wx
.EVT_MENU(self
, wx
.ID_SAVEAS
, self
.ProcessEvent
)
2641 wx
.EVT_MENU(self
, wx
.ID_UNDO
, self
.ProcessEvent
)
2642 wx
.EVT_MENU(self
, wx
.ID_REDO
, self
.ProcessEvent
)
2643 wx
.EVT_MENU(self
, wx
.ID_PRINT
, self
.ProcessEvent
)
2644 wx
.EVT_MENU(self
, wx
.ID_PRINT_SETUP
, self
.ProcessEvent
)
2645 wx
.EVT_MENU(self
, wx
.ID_PREVIEW
, self
.ProcessEvent
)
2647 wx
.EVT_UPDATE_UI(self
, wx
.ID_NEW
, self
.ProcessUpdateUIEvent
)
2648 wx
.EVT_UPDATE_UI(self
, wx
.ID_OPEN
, self
.ProcessUpdateUIEvent
)
2649 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE_ALL
, self
.ProcessUpdateUIEvent
)
2650 wx
.EVT_UPDATE_UI(self
, wx
.ID_CLOSE
, self
.ProcessUpdateUIEvent
)
2651 wx
.EVT_UPDATE_UI(self
, wx
.ID_REVERT
, self
.ProcessUpdateUIEvent
)
2652 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVE
, self
.ProcessUpdateUIEvent
)
2653 wx
.EVT_UPDATE_UI(self
, wx
.ID_SAVEAS
, self
.ProcessUpdateUIEvent
)
2654 wx
.EVT_UPDATE_UI(self
, wx
.ID_UNDO
, self
.ProcessUpdateUIEvent
)
2655 wx
.EVT_UPDATE_UI(self
, wx
.ID_REDO
, self
.ProcessUpdateUIEvent
)
2656 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT
, self
.ProcessUpdateUIEvent
)
2657 wx
.EVT_UPDATE_UI(self
, wx
.ID_PRINT_SETUP
, self
.ProcessUpdateUIEvent
)
2658 wx
.EVT_UPDATE_UI(self
, wx
.ID_PREVIEW
, self
.ProcessUpdateUIEvent
)
2661 def ProcessEvent(self
, event
):
2663 Processes an event, searching event tables and calling zero or more
2664 suitable event handler function(s). Note that the ProcessEvent
2665 method is called from the wxPython docview framework directly since
2666 wxPython does not have a virtual ProcessEvent function.
2668 return self
._docManager
and self
._docManager
.ProcessEvent(event
)
2671 def ProcessUpdateUIEvent(self
, event
):
2673 Processes a UI event, searching event tables and calling zero or more
2674 suitable event handler function(s). Note that the ProcessEvent
2675 method is called from the wxPython docview framework directly since
2676 wxPython does not have a virtual ProcessEvent function.
2678 return self
._docManager
and self
._docManager
.ProcessUpdateUIEvent(event
)
2681 def OnExit(self
, event
):
2683 Called when File/Exit is chosen and closes the window.
2688 def OnMRUFile(self
, event
):
2690 Opens the appropriate file when it is selected from the file history
2693 n
= event
.GetId() - wx
.ID_FILE1
2694 filename
= self
._docManager
.GetHistoryFile(n
)
2696 self
._docManager
.CreateDocument(filename
, DOC_SILENT
)
2698 self
._docManager
.RemoveFileFromHistory(n
)
2699 msgTitle
= wx
.GetApp().GetAppName()
2701 msgTitle
= _("File Error")
2702 wx
.MessageBox("The file '%s' doesn't exist and couldn't be opened.\nIt has been removed from the most recently used files list" % FileNameFromPath(file),
2704 wx
.OK | wx
.ICON_EXCLAMATION
,
2708 def OnCloseWindow(self
, event
):
2710 Deletes all views and documents. If no user input cancelled the
2711 operation, the frame will be destroyed and the application will exit.
2713 if self
._docManager
.Clear(not event
.CanVeto()):
2719 class DocMDIChildFrame(wx
.MDIChildFrame
):
2721 The wxDocMDIChildFrame class provides a default frame for displaying
2722 documents on separate windows. This class can only be used for MDI child
2725 The class is part of the document/view framework supported by wxWindows,
2726 and cooperates with the wxView, wxDocument, wxDocManager and wxDocTemplate
2731 def __init__(self
, doc
, view
, frame
, id, title
, pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
, style
=wx
.DEFAULT_FRAME_STYLE
, name
="frame"):
2733 Constructor. Note that the event table must be rebuilt for the
2734 frame since the EvtHandler is not virtual.
2736 wx
.MDIChildFrame
.__init
__(self
, frame
, id, title
, pos
, size
, style
, name
)
2737 self
._childDocument
= doc
2738 self
._childView
= view
2741 # self.Create(doc, view, frame, id, title, pos, size, style, name)
2742 self
._activeEvent
= None
2744 wx
.EVT_ACTIVATE(self
, self
.OnActivate
)
2745 wx
.EVT_CLOSE(self
, self
.OnCloseWindow
)
2747 if frame
: # wxBug: For some reason the EVT_ACTIVATE event is not getting triggered for the first mdi client window that is opened so we have to do it manually
2748 mdiChildren
= filter(lambda x
: isinstance(x
, wx
.MDIChildFrame
), frame
.GetChildren())
2749 if len(mdiChildren
) == 1:
2753 ## # Couldn't get this to work, but seems to work fine with single stage construction
2754 ## def Create(self, doc, view, frame, id, title, pos, size, style, name):
2755 ## self._childDocument = doc
2756 ## self._childView = view
2757 ## if wx.MDIChildFrame.Create(self, frame, id, title, pos, size, style, name):
2759 ## view.SetFrame(self)
2765 def Activate(self
): # Need this in case there are embedded sash windows and such, OnActivate is not getting called
2767 Activates the current view.
2770 self
._childView
.Activate(True)
2773 def ProcessEvent(event
):
2775 Processes an event, searching event tables and calling zero or more
2776 suitable event handler function(s). Note that the ProcessEvent
2777 method is called from the wxPython docview framework directly since
2778 wxPython does not have a virtual ProcessEvent function.
2780 if self
._activeEvent
== event
:
2783 self
._activeEvent
= event
# Break recursion loops
2786 self
._childView
.Activate(True)
2788 if not self
._childView
or not self
._childView
.ProcessEvent(event
):
2789 if not isinstance(event
, wx
.CommandEvent
) or not self
.GetParent() or not self
.GetParent().ProcessEvent(event
):
2796 self
._activeEvent
= None
2800 def OnActivate(self
, event
):
2802 Sets the currently active view to be the frame's view. You may need to
2803 override (but still call) this function in order to set the keyboard
2804 focus for your subwindow.
2806 if self
._activated
!= 0:
2808 self
._activated
+= 1
2809 wx
.MDIChildFrame
.Activate(self
)
2810 if event
.GetActive() and self
._childView
:
2811 self
._childView
.Activate(event
.GetActive())
2815 def OnCloseWindow(self
, event
):
2817 Closes and deletes the current view and document.
2821 if not event
.CanVeto():
2824 ans
= self
._childView
.Close(deleteWindow
= False)
2827 self
._childView
.Activate(False)
2828 self
._childView
.Destroy()
2829 self
._childView
= None
2830 if self
._childDocument
: # This isn't in the wxWindows codebase but the document needs to be disposed of somehow
2831 self
._childDocument
.DeleteContents()
2832 if self
._childDocument
.GetDocumentManager():
2833 self
._childDocument
.GetDocumentManager().RemoveDocument(self
._childDocument
)
2834 self
._childDocument
= None
2842 def GetDocument(self
):
2844 Returns the document associated with this frame.
2846 return self
._childDocument
2849 def SetDocument(self
, document
):
2851 Sets the document for this frame.
2853 self
._childDocument
= document
2858 Returns the view associated with this frame.
2860 return self
._childView
2863 def SetView(self
, view
):
2865 Sets the view for this frame.
2867 self
._childView
= view
2870 def OnTitleIsModified(self
):
2872 Add/remove to the frame's title an indication that the document is dirty.
2873 If the document is dirty, an '*' is appended to the title
2874 This method has been added to wxPython and is not in wxWindows.
2876 title
= self
.GetTitle()
2878 if self
.GetDocument().IsModified():
2879 if title
.endswith("*"):
2883 self
.SetTitle(title
)
2885 if title
.endswith("*"):
2887 self
.SetTitle(title
)
2892 class DocPrintout(wx
.Printout
):
2894 DocPrintout is a default Printout that prints the first page of a document
2899 def __init__(self
, view
, title
="Printout"):
2903 wx
.Printout
.__init
__(self
, title
)
2904 self
._printoutView
= view
2909 Returns the DocPrintout's view.
2911 return self
._printoutView
2914 def OnPrintPage(self
, page
):
2916 Prints the first page of the view.
2919 ppiScreenX
, ppiScreenY
= self
.GetPPIScreen()
2920 ppiPrinterX
, ppiPrinterY
= self
.GetPPIPrinter()
2921 scale
= ppiPrinterX
/ppiScreenX
2923 pageWidth
, pageHeight
= self
.GetPageSizePixels()
2924 overallScale
= scale
* w
/ pageWidth
2925 dc
.SetUserScale(overallScale
, overallScale
)
2926 if self
._printoutView
:
2927 self
._printoutView
.OnDraw(dc
)
2931 def HasPage(self
, pageNum
):
2933 Indicates that the DocPrintout only has a single page.
2938 def GetPageInfo(self
):
2940 Indicates that the DocPrintout only has a single page.
2946 return (minPage
, maxPage
, selPageFrom
, selPageTo
)
2949 #----------------------------------------------------------------------
2951 #----------------------------------------------------------------------
2953 class Command(wx
.Object
):
2955 wxCommand is a base class for modelling an application command, which is
2956 an action usually performed by selecting a menu item, pressing a toolbar
2957 button or any other means provided by the application to change the data
2962 def __init__(self
, canUndo
= False, name
= None):
2964 Constructor. wxCommand is an abstract class, so you will need to
2965 derive a new class and call this constructor from your own constructor.
2967 canUndo tells the command processor whether this command is undo-able.
2968 You can achieve the same functionality by overriding the CanUndo member
2969 function (if for example the criteria for undoability is context-
2972 name must be supplied for the command processor to display the command
2973 name in the application's edit menu.
2975 self
._canUndo
= canUndo
2981 Returns true if the command can be undone, false otherwise.
2983 return self
._canUndo
2988 Returns the command name.
2995 Override this member function to execute the appropriate action when
2996 called. Return true to indicate that the action has taken place, false
2997 otherwise. Returning false will indicate to the command processor that
2998 the action is not undoable and should not be added to the command
3006 Override this member function to un-execute a previous Do. Return true
3007 to indicate that the action has taken place, false otherwise. Returning
3008 false will indicate to the command processor that the action is not
3009 redoable and no change should be made to the command history.
3011 How you implement this command is totally application dependent, but
3012 typical strategies include:
3014 Perform an inverse operation on the last modified piece of data in the
3015 document. When redone, a copy of data stored in command is pasted back
3016 or some operation reapplied. This relies on the fact that you know the
3017 ordering of Undos; the user can never Undo at an arbitrary position in
3020 Restore the entire document state (perhaps using document
3021 transactioning). Potentially very inefficient, but possibly easier to
3022 code if the user interface and data are complex, and an 'inverse
3023 execute' operation is hard to write.
3028 class CommandProcessor(wx
.Object
):
3030 wxCommandProcessor is a class that maintains a history of wxCommands, with
3031 undo/redo functionality built-in. Derive a new class from this if you want
3032 different behaviour.
3036 def __init__(self
, maxCommands
=-1):
3038 Constructor. maxCommands may be set to a positive integer to limit
3039 the number of commands stored to it, otherwise (and by default) the
3040 list of commands can grow arbitrarily.
3042 self
._maxCommands
= maxCommands
3043 self
._editMenu
= None
3044 self
._undoAccelerator
= _("Ctrl+Z")
3045 self
._redoAccelerator
= _("Ctrl+Y")
3046 self
.ClearCommands()
3049 def _GetCurrentCommand(self
):
3050 if len(self
._commands
) == 0:
3053 return self
._commands
[-1]
3056 def _GetCurrentRedoCommand(self
):
3057 if len(self
._redoCommands
) == 0:
3060 return self
._redoCommands
[-1]
3063 def GetMaxCommands(self
):
3065 Returns the maximum number of commands that the command processor
3069 return self
._maxCommands
3072 def GetCommands(self
):
3074 Returns the list of commands.
3076 return self
._commands
3079 def ClearCommands(self
):
3081 Deletes all the commands in the list and sets the current command
3085 self
._redoCommands
= []
3088 def GetEditMenu(self
):
3090 Returns the edit menu associated with the command processor.
3092 return self
._editMenu
3095 def SetEditMenu(self
, menu
):
3097 Tells the command processor to update the Undo and Redo items on this
3098 menu as appropriate. Set this to NULL if the menu is about to be
3099 destroyed and command operations may still be performed, or the
3100 command processor may try to access an invalid pointer.
3102 self
._editMenu
= menu
3105 def GetUndoAccelerator(self
):
3107 Returns the string that will be appended to the Undo menu item.
3109 return self
._undoAccelerator
3112 def SetUndoAccelerator(self
, accel
):
3114 Sets the string that will be appended to the Redo menu item.
3116 self
._undoAccelerator
= accel
3119 def GetRedoAccelerator(self
):
3121 Returns the string that will be appended to the Redo menu item.
3123 return self
._redoAccelerator
3126 def SetRedoAccelerator(self
, accel
):
3128 Sets the string that will be appended to the Redo menu item.
3130 self
._redoAccelerator
= accel
3133 def SetEditMenu(self
, menu
):
3135 Tells the command processor to update the Undo and Redo items on this
3136 menu as appropriate. Set this to NULL if the menu is about to be
3137 destroyed and command operations may still be performed, or the
3138 command processor may try to access an invalid pointer.
3140 self
._editMenu
= menu
3143 def SetMenuStrings(self
):
3145 Sets the menu labels according to the currently set menu and the
3146 current command state.
3148 if self
.GetEditMenu() != None:
3149 undoCommand
= self
._GetCurrentCommand
()
3150 redoCommand
= self
._GetCurrentRedoCommand
()
3151 undoItem
= self
.GetEditMenu().FindItemById(wx
.ID_UNDO
)
3152 redoItem
= self
.GetEditMenu().FindItemById(wx
.ID_REDO
)
3153 if self
.GetUndoAccelerator():
3154 undoAccel
= '\t' + self
.GetUndoAccelerator()
3157 if self
.GetRedoAccelerator():
3158 redoAccel
= '\t' + self
.GetRedoAccelerator()
3161 if undoCommand
and undoItem
and undoCommand
.CanUndo():
3162 undoItem
.SetText(_("&Undo ") + undoCommand
.GetName() + undoAccel
)
3163 #elif undoCommand and not undoCommand.CanUndo():
3164 # undoItem.SetText(_("Can't Undo") + undoAccel)
3166 undoItem
.SetText(_("&Undo" + undoAccel
))
3167 if redoCommand
and redoItem
:
3168 redoItem
.SetText(_("&Redo ") + redoCommand
.GetName() + redoAccel
)
3170 redoItem
.SetText(_("&Redo") + redoAccel
)
3175 Returns true if the currently-active command can be undone, false
3178 if self
._GetCurrentCommand
() == None:
3180 return self
._GetCurrentCommand
().CanUndo()
3185 Returns true if the currently-active command can be redone, false
3188 return self
._GetCurrentRedoCommand
() != None
3191 def Submit(self
, command
, storeIt
=True):
3193 Submits a new command to the command processor. The command processor
3194 calls wxCommand::Do to execute the command; if it succeeds, the
3195 command is stored in the history list, and the associated edit menu
3196 (if any) updated appropriately. If it fails, the command is deleted
3197 immediately. Once Submit has been called, the passed command should
3198 not be deleted directly by the application.
3200 storeIt indicates whether the successful command should be stored in
3205 del self
._redoCommands
[:]
3207 self
._commands
.append(command
)
3208 if self
._maxCommands
> -1:
3209 if len(self
._commands
) > self
._maxCommands
:
3210 del self
._commands
[0]
3216 Redoes the command just undone.
3218 cmd
= self
._GetCurrentRedoCommand
()
3223 self
._commands
.append(self
._redoCommands
.pop())
3229 Undoes the command just executed.
3231 cmd
= self
._GetCurrentCommand
()
3236 self
._redoCommands
.append(self
._commands
.pop())