]>
Commit | Line | Data |
---|---|---|
2108f33a JS |
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$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart |
2f6c54eb | 9 | // Licence: wxWindows license |
2108f33a JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | // #pragma interface "docview.h" | |
14 | #endif | |
15 | ||
16 | #ifndef __DOCVIEWSAMPLEH__ | |
17 | #define __DOCVIEWSAMPLEH__ | |
18 | ||
b9f933ab JS |
19 | #include "wx/mdi.h" |
20 | #include "wx/docview.h" | |
2108f33a JS |
21 | #include "wx/docmdi.h" |
22 | ||
23 | class wxDocManager; | |
24 | ||
25 | // Define a new application | |
26 | class MyApp: public wxApp | |
27 | { | |
28 | public: | |
29 | MyApp(void); | |
30 | bool OnInit(void); | |
31 | int OnExit(void); | |
32 | ||
9746a2ba | 33 | wxMDIChildFrame *CreateChildFrame(wxDocument *doc, wxView *view, bool isCanvas); |
2108f33a JS |
34 | |
35 | protected: | |
36 | wxDocManager* m_docManager; | |
37 | }; | |
38 | ||
39 | DECLARE_APP(MyApp) | |
40 | ||
41 | // Define a new frame | |
42 | class MyCanvas; | |
43 | class MyFrame: public wxDocMDIParentFrame | |
44 | { | |
45 | DECLARE_CLASS(MyFrame) | |
46 | public: | |
47 | wxMenu *editMenu; | |
48 | ||
49 | MyFrame(wxDocManager *manager, wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size, | |
acbd13a3 | 50 | long type); |
2108f33a JS |
51 | |
52 | void OnAbout(wxCommandEvent& event); | |
b9f933ab | 53 | MyCanvas *CreateCanvas(wxView *view, wxMDIChildFrame *parent); |
2108f33a JS |
54 | |
55 | DECLARE_EVENT_TABLE() | |
56 | }; | |
57 | ||
58 | extern MyFrame *GetMainFrame(void); | |
59 | ||
60 | #define DOCVIEW_CUT 1 | |
61 | #define DOCVIEW_ABOUT 2 | |
62 | ||
63 | extern bool singleWindowMode; | |
64 | ||
65 | #endif |