]> git.saurik.com Git - wxWidgets.git/blob - include/wx/docmdi.h
refactor wxDocChildFrame and wxDocMDIChildFrame to use wxDocChildFrameAny intead...
[wxWidgets.git] / include / wx / docmdi.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: docmdi.h
3 // Purpose: Frame classes for MDI document/view applications
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_DOCMDI_H_
13 #define _WX_DOCMDI_H_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_MDI_ARCHITECTURE
18
19 #include "wx/docview.h"
20 #include "wx/mdi.h"
21
22 /*
23 * Use this instead of wxMDIParentFrame
24 */
25
26 class WXDLLIMPEXP_CORE wxDocMDIParentFrame: public wxMDIParentFrame
27 {
28 public:
29 wxDocMDIParentFrame();
30 wxDocMDIParentFrame(wxDocManager *manager, wxFrame *parent, wxWindowID id,
31 const wxString& title, const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr);
33
34 bool Create(wxDocManager *manager, wxFrame *parent, wxWindowID id,
35 const wxString& title, const wxPoint& pos = wxDefaultPosition,
36 const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr);
37
38 wxDocManager *GetDocumentManager(void) const { return m_docManager; }
39
40 void OnExit(wxCommandEvent& event);
41 void OnMRUFile(wxCommandEvent& event);
42 void OnCloseWindow(wxCloseEvent& event);
43
44 protected:
45 void Init();
46
47 virtual bool TryBefore(wxEvent& event);
48
49 wxDocManager *m_docManager;
50
51 private:
52 DECLARE_CLASS(wxDocMDIParentFrame)
53 DECLARE_EVENT_TABLE()
54 wxDECLARE_NO_COPY_CLASS(wxDocMDIParentFrame);
55 };
56
57 // ----------------------------------------------------------------------------
58 // An MDI document child frame: we need to define it as a class just for wxRTTI,
59 // otherwise we could simply typedef it
60 // ----------------------------------------------------------------------------
61
62 typedef
63 wxDocChildFrameAny<wxMDIChildFrame, wxMDIParentFrame> wxDocMDIChildFrameBase;
64
65 class WXDLLIMPEXP_CORE wxDocMDIChildFrame : public wxDocMDIChildFrameBase
66 {
67 public:
68 wxDocMDIChildFrame(wxDocument *doc,
69 wxView *view,
70 wxMDIParentFrame *parent,
71 wxWindowID id,
72 const wxString& title,
73 const wxPoint& pos = wxDefaultPosition,
74 const wxSize& size = wxDefaultSize,
75 long style = wxDEFAULT_FRAME_STYLE,
76 const wxString& name = wxFrameNameStr)
77 : wxDocMDIChildFrameBase(doc, view,
78 parent, id, title, pos, size, style, name)
79 {
80 }
81
82 private:
83 DECLARE_CLASS(wxDocMDIChildFrame)
84 wxDECLARE_NO_COPY_CLASS(wxDocMDIChildFrame);
85 };
86
87 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxDocMDIChildFrameBase )
88
89
90 #endif // wxUSE_MDI_ARCHITECTURE
91
92 #endif // _WX_DOCMDI_H_