]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: printimg.cpp | |
3 | // Purpose: wxHtmlEasyPrinting testing example | |
4 | ///////////////////////////////////////////////////////////////////////////// | |
5 | ||
6 | ||
7 | // For compilers that support precompilation, includes "wx/wx.h". | |
8 | #include "wx/wxprec.h" | |
9 | ||
10 | #ifdef __BORLANDC__ | |
11 | #pragma hdrstop | |
12 | #endif | |
13 | ||
14 | // for all others, include the necessary headers (this file is usually all you | |
15 | // need because it includes almost all "standard" wxWindows headers | |
16 | #ifndef WX_PRECOMP | |
17 | #include "wx/wx.h" | |
18 | #endif | |
19 | ||
20 | #include "wx/image.h" | |
21 | #include "wx/html/htmlwin.h" | |
22 | #include "wx/html/htmprint.h" | |
23 | ||
24 | ||
25 | // ---------------------------------------------------------------------------- | |
26 | // private classes | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
29 | // Define a new application type, each program should derive a class from wxApp | |
30 | class MyApp : public wxApp | |
31 | { | |
32 | public: | |
33 | // override base class virtuals | |
34 | // ---------------------------- | |
35 | ||
36 | // this one is called on application startup and is a good place for the app | |
37 | // initialization (doing it here and not in the ctor allows to have an error | |
38 | // return: if OnInit() returns false, the application terminates) | |
39 | ||
40 | virtual bool OnInit(); | |
41 | }; | |
42 | ||
43 | // Define a new frame type: this is going to be our main frame | |
44 | class MyFrame : public wxFrame | |
45 | { | |
46 | public: | |
47 | // ctor(s) | |
48 | ||
49 | MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size); | |
50 | ||
51 | // event handlers (these functions should _not_ be virtual) | |
52 | void OnQuit(wxCommandEvent& event); | |
53 | void OnAbout(wxCommandEvent& event); | |
54 | ||
55 | void OnPrintSetup(wxCommandEvent& event); | |
56 | void OnPageSetup(wxCommandEvent& event); | |
57 | void OnPrint(wxCommandEvent& event); | |
58 | void OnPreview(wxCommandEvent& event); | |
59 | void OnOpen(wxCommandEvent& event); | |
60 | ||
61 | ||
62 | private: | |
63 | wxHtmlWindow *m_Html; | |
64 | wxHtmlEasyPrinting *m_Prn; | |
65 | wxString m_Name; | |
66 | // any class wishing to process wxWindows events must use this macro | |
67 | DECLARE_EVENT_TABLE() | |
68 | }; | |
69 | ||
70 | // ---------------------------------------------------------------------------- | |
71 | // constants | |
72 | // ---------------------------------------------------------------------------- | |
73 | ||
74 | // IDs for the controls and the menu commands | |
75 | enum | |
76 | { | |
77 | // menu items | |
78 | Minimal_Quit = 1, | |
79 | Minimal_About, | |
80 | Minimal_Print, | |
81 | Minimal_Preview, | |
82 | Minimal_PageSetup, | |
83 | Minimal_PrintSetup, | |
84 | Minimal_Open | |
85 | ||
86 | }; | |
87 | ||
88 | // ---------------------------------------------------------------------------- | |
89 | // event tables and other macros for wxWindows | |
90 | // ---------------------------------------------------------------------------- | |
91 | ||
92 | // the event tables connect the wxWindows events with the functions (event | |
93 | // handlers) which process them. It can be also done at run-time, but for the | |
94 | // simple menu events like this the static method is much simpler. | |
95 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
96 | EVT_MENU(Minimal_Quit, MyFrame::OnQuit) | |
97 | EVT_MENU(Minimal_About, MyFrame::OnAbout) | |
98 | EVT_MENU(Minimal_Print, MyFrame::OnPrint) | |
99 | EVT_MENU(Minimal_Preview, MyFrame::OnPreview) | |
100 | EVT_MENU(Minimal_PageSetup, MyFrame::OnPageSetup) | |
101 | EVT_MENU(Minimal_PrintSetup, MyFrame::OnPrintSetup) | |
102 | EVT_MENU(Minimal_Open, MyFrame::OnOpen) | |
103 | END_EVENT_TABLE() | |
104 | ||
105 | // Create a new application object: this macro will allow wxWindows to create | |
106 | // the application object during program execution (it's better than using a | |
107 | // static object for many reasons) and also declares the accessor function | |
108 | // wxGetApp() which will return the reference of the right type (i.e. MyApp and | |
109 | // not wxApp) | |
110 | IMPLEMENT_APP(MyApp) | |
111 | ||
112 | // ============================================================================ | |
113 | // implementation | |
114 | // ============================================================================ | |
115 | ||
116 | // ---------------------------------------------------------------------------- | |
117 | // the application class | |
118 | // ---------------------------------------------------------------------------- | |
119 | // `Main program' equivalent: the program execution "starts" here | |
120 | bool MyApp::OnInit() | |
121 | { | |
122 | #if wxUSE_LIBPNG | |
123 | wxImage::AddHandler(new wxPNGHandler); | |
124 | #endif | |
125 | #if wxUSE_LIBJPEG | |
126 | wxImage::AddHandler(new wxJPEGHandler); | |
127 | #endif | |
128 | #if wxUSE_GIF | |
129 | wxImage::AddHandler(new wxGIFHandler); | |
130 | #endif | |
131 | ||
132 | MyFrame *frame = new MyFrame("Printing test", | |
133 | wxPoint(150, 50), wxSize(640, 480)); | |
134 | ||
135 | // Show it and tell the application that it's our main window | |
136 | // @@@ what does it do exactly, in fact? is it necessary here? | |
137 | frame->Show(TRUE); | |
138 | SetTopWindow(frame); | |
139 | ||
140 | ||
141 | // success: wxApp::OnRun() will be called which will enter the main message | |
142 | // loop and the application will run. If we returned FALSE here, the | |
143 | // application would exit immediately. | |
144 | return TRUE; | |
145 | } | |
146 | ||
147 | // ---------------------------------------------------------------------------- | |
148 | // main frame | |
149 | // ---------------------------------------------------------------------------- | |
150 | ||
151 | ||
152 | // frame constructor | |
153 | MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) | |
154 | : wxFrame((wxFrame *)NULL, -1, title, pos, size) | |
155 | { | |
156 | // create a menu bar | |
157 | wxMenu *menuFile = new wxMenu; | |
158 | menuFile->Append(Minimal_Open, "Open...\tCtrl-O"); | |
159 | menuFile->AppendSeparator(); | |
160 | menuFile->Append(Minimal_PageSetup, "Page Setup"); | |
161 | menuFile->Append(Minimal_PrintSetup, "Printer Setup"); | |
162 | menuFile->Append(Minimal_Print, "Print..."); | |
163 | menuFile->Append(Minimal_Preview, "Preview..."); | |
164 | menuFile->AppendSeparator(); | |
165 | menuFile->Append(Minimal_About, "&About"); | |
166 | menuFile->AppendSeparator(); | |
167 | menuFile->Append(Minimal_Quit, "&Exit"); | |
168 | ||
169 | // now append the freshly created menu to the menu bar... | |
170 | wxMenuBar *menuBar = new wxMenuBar; | |
171 | menuBar->Append(menuFile, "&File"); | |
172 | ||
173 | // ... and attach this menu bar to the frame | |
174 | SetMenuBar(menuBar); | |
175 | ||
176 | CreateStatusBar(1); | |
177 | ||
178 | m_Html = new wxHtmlWindow(this); | |
179 | m_Html -> SetRelatedFrame(this, "HTML : %s"); | |
180 | m_Html -> SetRelatedStatusBar(0); | |
181 | m_Name = "test.htm"; | |
182 | m_Html -> LoadPage(m_Name); | |
183 | ||
184 | m_Prn = new wxHtmlEasyPrinting("Easy Printing Demo", this); | |
185 | m_Prn -> SetHeader(m_Name + "(@PAGENUM@/@PAGESCNT@)<hr>", wxPAGE_ALL); | |
186 | } | |
187 | ||
188 | ||
189 | // event handlers | |
190 | ||
191 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
192 | { | |
193 | delete m_Prn; | |
194 | // TRUE is to force the frame to close | |
195 | Close(TRUE); | |
196 | } | |
197 | ||
198 | ||
199 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
200 | { | |
201 | wxMessageBox("HTML printing sample\n\n(c) Vaclav Slavik, 1999"); | |
202 | } | |
203 | ||
204 | ||
205 | void MyFrame::OnPrintSetup(wxCommandEvent& WXUNUSED(event)) | |
206 | { | |
207 | m_Prn -> PrinterSetup(); | |
208 | } | |
209 | ||
210 | ||
211 | void MyFrame::OnPageSetup(wxCommandEvent& WXUNUSED(event)) | |
212 | { | |
213 | m_Prn -> PageSetup(); | |
214 | } | |
215 | ||
216 | ||
217 | void MyFrame::OnPrint(wxCommandEvent& WXUNUSED(event)) | |
218 | { | |
219 | m_Prn -> PrintFile(m_Name); | |
220 | } | |
221 | ||
222 | ||
223 | void MyFrame::OnPreview(wxCommandEvent& WXUNUSED(event)) | |
224 | { | |
225 | m_Prn -> PreviewFile(m_Name); | |
226 | } | |
227 | ||
228 | ||
229 | void MyFrame::OnOpen(wxCommandEvent& WXUNUSED(event)) | |
230 | { | |
231 | wxFileDialog dialog(this, "Open HTML page", "", "", "*.htm", 0); | |
232 | ||
233 | if (dialog.ShowModal() == wxID_OK) | |
234 | { | |
235 | m_Name = dialog.GetPath(); | |
236 | m_Html -> LoadPage(m_Name); | |
237 | m_Prn -> SetHeader(m_Name + "(@PAGENUM@/@PAGESCNT@)<hr>", wxPAGE_ALL); | |
238 | } | |
239 | } | |
240 | ||
241 |