]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: docview.h | |
3 | // Purpose: Document/view demo | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __DOCVIEW_H__ | |
13 | #define __DOCVIEW_H__ | |
14 | ||
15 | #include "wx/mdi.h" | |
16 | #include "wx/docview.h" | |
17 | #include "wx/docmdi.h" | |
18 | ||
19 | class wxDocManager; | |
20 | ||
21 | // Define a new application | |
22 | class MyApp: public wxApp | |
23 | { | |
24 | public: | |
25 | MyApp(void); | |
26 | virtual bool OnInit(); | |
27 | virtual int OnExit(); | |
28 | ||
29 | wxMDIChildFrame* CreateChildFrame(wxDocument*, wxView*, bool isCanvas); | |
30 | ||
31 | protected: | |
32 | wxDocManager* m_docManager; | |
33 | }; | |
34 | ||
35 | DECLARE_APP(MyApp) | |
36 | ||
37 | // Define a new frame | |
38 | class MyCanvas; | |
39 | class DrawingView; | |
40 | class MyFrame: public wxDocMDIParentFrame | |
41 | { | |
42 | public: | |
43 | wxMenu* m_editMenu; | |
44 | ||
45 | MyFrame(wxDocManager*, wxFrame*, const wxString& title, const wxPoint&, const wxSize&, long type); | |
46 | ||
47 | MyCanvas* CreateCanvas(DrawingView*, wxMDIChildFrame*); | |
48 | ||
49 | protected: | |
50 | void OnAbout(wxCommandEvent&); | |
51 | ||
52 | DECLARE_EVENT_TABLE() | |
53 | DECLARE_CLASS(MyFrame) | |
54 | }; | |
55 | ||
56 | extern MyFrame* GetMainFrame(); | |
57 | ||
58 | #define DOCVIEW_CUT 1 | |
59 | #define DOCVIEW_ABOUT wxID_ABOUT | |
60 | ||
61 | extern bool singleWindowMode; | |
62 | ||
63 | #endif |