]> git.saurik.com Git - wxWidgets.git/blame - samples/docview/docview.h
technote about translations added
[wxWidgets.git] / samples / docview / docview.h
CommitLineData
457814b5
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$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13// #pragma interface "docview.h"
14#endif
15
16#ifndef __DOCVIEWSAMPLEH__
17#define __DOCVIEWSAMPLEH__
18
19#include "wx/docview.h"
20
21class wxDocManager;
22
23// Define a new application
24class MyApp: public wxApp
25{
26 public:
27 MyApp(void);
28 bool OnInit(void);
29 int OnExit(void);
30
31 wxFrame *CreateChildFrame(wxDocument *doc, wxView *view, bool isCanvas);
32
33 protected:
34 wxDocManager* m_docManager;
35};
36
37DECLARE_APP(MyApp)
38
39// Define a new frame
40class MyCanvas;
41class MyFrame: public wxDocParentFrame
42{
43 DECLARE_CLASS(MyFrame)
44 public:
45 wxMenu *editMenu;
46
47 // This pointer only needed if in single window mode
48 MyCanvas *canvas;
49
2108f33a 50 MyFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size,
457814b5
JS
51 const long type);
52
53 void OnAbout(wxCommandEvent& event);
54 MyCanvas *CreateCanvas(wxView *view, wxFrame *parent);
55
56DECLARE_EVENT_TABLE()
57};
58
59extern MyFrame *GetMainFrame(void);
60
61#define DOCVIEW_CUT 1
62#define DOCVIEW_ABOUT 2
63
64extern bool singleWindowMode;
65
66#endif