]>
git.saurik.com Git - wxWidgets.git/blob - samples/docview/docview.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Document/view demo
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 // #pragma implementation "docview.h"
17 * Purpose: Document/view architecture demo for wxWindows class library
18 * Run with no arguments for multiple top-level windows, -single
19 * for a single window.
23 // For compilers that support precompilation, includes "wx/wx.h".
24 #include "wx/wxprec.h"
34 #if !wxUSE_DOC_VIEW_ARCHITECTURE
35 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
38 #include "wx/docview.h"
44 MyFrame
*frame
= (MyFrame
*) NULL
;
46 // In single window mode, don't have any child windows; use
48 bool singleWindowMode
= FALSE
;
54 m_docManager
= (wxDocManager
*) NULL
;
57 bool MyApp::OnInit(void)
59 //// Find out if we're:
60 //// multiple window: multiple windows, each view in a separate frame
61 //// single window: one view (within the main frame) and one document at a time, as in Windows Write.
62 //// In single window mode, we only allow one document type
65 if (wxStrcmp(argv
[1], _T("-single")) == 0)
67 singleWindowMode
= TRUE
;
71 //// Create a document manager
72 m_docManager
= new wxDocManager
;
74 //// Create a template relating drawing documents to their views
75 (void) new wxDocTemplate(m_docManager
, _T("Drawing"), _T("*.drw"), _T(""), _T("drw"), _T("Drawing Doc"), _T("Drawing View"),
76 CLASSINFO(DrawingDocument
), CLASSINFO(DrawingView
));
80 // If we've only got one window, we only get to edit
81 // one document at a time. Therefore no text editing, just
83 m_docManager
->SetMaxDocsOpen(1);
86 //// Create a template relating text documents to their views
87 (void) new wxDocTemplate(m_docManager
, _T("Text"), _T("*.txt"), _T(""), _T("txt"), _T("Text Doc"), _T("Text View"),
88 CLASSINFO(TextEditDocument
), CLASSINFO(TextEditView
));
90 //// Create the main frame window
91 frame
= new MyFrame(m_docManager
, (wxFrame
*) NULL
, -1, _T("DocView Demo"), wxPoint(0, 0), wxSize(500, 400), wxDEFAULT_FRAME_STYLE
);
93 //// Give it an icon (this is ignored in MDI mode: uses resources)
95 frame
->SetIcon(wxIcon(_T("doc_icn")));
99 wxMenu
*file_menu
= new wxMenu
;
100 wxMenu
*edit_menu
= (wxMenu
*) NULL
;
102 file_menu
->Append(wxID_NEW
, _T("&New..."));
103 file_menu
->Append(wxID_OPEN
, _T("&Open..."));
105 if (singleWindowMode
)
107 file_menu
->Append(wxID_CLOSE
, _T("&Close"));
108 file_menu
->Append(wxID_SAVE
, _T("&Save"));
109 file_menu
->Append(wxID_SAVEAS
, _T("Save &As..."));
110 file_menu
->AppendSeparator();
111 file_menu
->Append(wxID_PRINT
, _T("&Print..."));
112 file_menu
->Append(wxID_PRINT_SETUP
, _T("Print &Setup..."));
113 file_menu
->Append(wxID_PREVIEW
, _T("Print Pre&view"));
115 edit_menu
= new wxMenu
;
116 edit_menu
->Append(wxID_UNDO
, _T("&Undo"));
117 edit_menu
->Append(wxID_REDO
, _T("&Redo"));
118 edit_menu
->AppendSeparator();
119 edit_menu
->Append(DOCVIEW_CUT
, _T("&Cut last segment"));
121 frame
->editMenu
= edit_menu
;
124 file_menu
->AppendSeparator();
125 file_menu
->Append(wxID_EXIT
, _T("E&xit"));
127 // A nice touch: a history of files visited. Use this menu.
128 m_docManager
->FileHistoryUseMenu(file_menu
);
130 wxMenu
*help_menu
= new wxMenu
;
131 help_menu
->Append(DOCVIEW_ABOUT
, _T("&About"));
133 wxMenuBar
*menu_bar
= new wxMenuBar
;
135 menu_bar
->Append(file_menu
, _T("&File"));
137 menu_bar
->Append(edit_menu
, _T("&Edit"));
138 menu_bar
->Append(help_menu
, _T("&Help"));
140 if (singleWindowMode
)
141 frame
->canvas
= frame
->CreateCanvas((wxView
*) NULL
, frame
);
143 //// Associate the menu bar with the frame
144 frame
->SetMenuBar(menu_bar
);
146 frame
->Centre(wxBOTH
);
153 int MyApp::OnExit(void)
160 * Centralised code for creating a document frame.
161 * Called from view.cpp, when a view is created, but not used at all
162 * in 'single window' mode.
165 wxFrame
*MyApp::CreateChildFrame(wxDocument
*doc
, wxView
*view
, bool isCanvas
)
167 //// Make a child frame
168 wxDocChildFrame
*subframe
= new wxDocChildFrame(doc
, view
, GetMainFrame(), -1, _T("Child Frame"),
169 wxPoint(10, 10), wxSize(300, 300), wxDEFAULT_FRAME_STYLE
);
172 subframe
->SetIcon(wxString(isCanvas
? _T("chrt_icn") : _T("notepad_icn")));
176 wxMenu
*file_menu
= new wxMenu
;
178 file_menu
->Append(wxID_NEW
, _T("&New..."));
179 file_menu
->Append(wxID_OPEN
, _T("&Open..."));
180 file_menu
->Append(wxID_CLOSE
, _T("&Close"));
181 file_menu
->Append(wxID_SAVE
, _T("&Save"));
182 file_menu
->Append(wxID_SAVEAS
, _T("Save &As..."));
186 file_menu
->AppendSeparator();
187 file_menu
->Append(wxID_PRINT
, _T("&Print..."));
188 file_menu
->Append(wxID_PRINT_SETUP
, _T("Print &Setup..."));
189 file_menu
->Append(wxID_PREVIEW
, _T("Print Pre&view"));
192 wxMenu
*edit_menu
= (wxMenu
*) NULL
;
196 edit_menu
= new wxMenu
;
197 edit_menu
->Append(wxID_UNDO
, _T("&Undo"));
198 edit_menu
->Append(wxID_REDO
, _T("&Redo"));
199 edit_menu
->AppendSeparator();
200 edit_menu
->Append(DOCVIEW_CUT
, _T("&Cut last segment"));
202 doc
->GetCommandProcessor()->SetEditMenu(edit_menu
);
205 wxMenu
*help_menu
= new wxMenu
;
206 help_menu
->Append(DOCVIEW_ABOUT
, _T("&About"));
208 wxMenuBar
*menu_bar
= new wxMenuBar
;
210 menu_bar
->Append(file_menu
, _T("&File"));
212 menu_bar
->Append(edit_menu
, _T("&Edit"));
213 menu_bar
->Append(help_menu
, _T("&Help"));
215 //// Associate the menu bar with the frame
216 subframe
->SetMenuBar(menu_bar
);
218 subframe
->Centre(wxBOTH
);
224 * This is the top-level window of the application.
227 IMPLEMENT_CLASS(MyFrame
, wxDocParentFrame
)
228 BEGIN_EVENT_TABLE(MyFrame
, wxDocParentFrame
)
229 EVT_MENU(DOCVIEW_ABOUT
, MyFrame::OnAbout
)
232 MyFrame::MyFrame(wxDocManager
*manager
, wxFrame
*frame
, wxWindowID id
, const wxString
& title
,
233 const wxPoint
& pos
, const wxSize
& size
, const long type
):
234 wxDocParentFrame(manager
, frame
, id
, title
, pos
, size
, type
)
236 // This pointer only needed if in single window mode
237 canvas
= (MyCanvas
*) NULL
;
238 editMenu
= (wxMenu
*) NULL
;
241 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
243 (void)wxMessageBox(_T("DocView Demo\nAuthor: Julian Smart\nUsage: docview.exe [-single]"), _T("About DocView"));
246 // Creates a canvas. Called either from view.cc when a new drawing
247 // view is created, or in OnInit as a child of the main window,
248 // if in 'single window' mode.
249 MyCanvas
*MyFrame::CreateCanvas(wxView
*view
, wxFrame
*parent
)
252 parent
->GetClientSize(&width
, &height
);
254 // Non-retained canvas
255 MyCanvas
*canvas
= new MyCanvas(view
, parent
, wxPoint(0, 0), wxSize(width
, height
), 0);
256 canvas
->SetCursor(wxCursor(wxCURSOR_PENCIL
));
258 // Give it scrollbars
259 canvas
->SetScrollbars(20, 20, 50, 50);
260 canvas
->SetBackgroundColour(*wxWHITE
);
266 MyFrame
*GetMainFrame(void)