]> git.saurik.com Git - wxWidgets.git/blob - samples/html/zip/zip.cpp
Always add libwxscintilla in monolithic mode.
[wxWidgets.git] / samples / html / zip / zip.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: zip.cpp
3 // Purpose: wxHtml sample
4 // Author: ?
5 // Modified by:
6 // Created: ?
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
14
15 #ifdef __BORLANDC__
16 #pragma hdrstop
17 #endif
18
19 // for all others, include the necessary headers (this file is usually all you
20 // need because it includes almost all "standard" wxWidgets headers
21 #ifndef WX_PRECOMP
22 #include "wx/wx.h"
23 #endif
24
25 #include "wx/image.h"
26 #include "wx/html/htmlwin.h"
27 #include "wx/fs_zip.h"
28
29 #ifndef wxHAS_IMAGES_IN_RESOURCES
30 #include "../../sample.xpm"
31 #endif
32
33 // ----------------------------------------------------------------------------
34 // private classes
35 // ----------------------------------------------------------------------------
36
37 // Define a new application type, each program should derive a class from wxApp
38 class MyApp : public wxApp
39 {
40 public:
41 // override base class virtuals
42 // ----------------------------
43
44 // this one is called on application startup and is a good place for the app
45 // initialization (doing it here and not in the ctor allows to have an error
46 // return: if OnInit() returns false, the application terminates)
47 virtual bool OnInit();
48 };
49
50 // Define a new frame type: this is going to be our main frame
51 class MyFrame : public wxFrame
52 {
53 public:
54 // ctor(s)
55 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
56
57 // event handlers (these functions should _not_ be virtual)
58 void OnQuit(wxCommandEvent& event);
59 void OnBack(wxCommandEvent& event);
60 void OnForward(wxCommandEvent& event);
61
62 private:
63 // any class wishing to process wxWidgets events must use this macro
64 DECLARE_EVENT_TABLE()
65 };
66
67 // ----------------------------------------------------------------------------
68 // constants
69 // ----------------------------------------------------------------------------
70
71 // IDs for the controls and the menu commands
72 enum
73 {
74 // menu items
75 Minimal_Quit = 1,
76 Minimal_Back,
77 Minimal_Forward
78 };
79
80 // ----------------------------------------------------------------------------
81 // event tables and other macros for wxWidgets
82 // ----------------------------------------------------------------------------
83
84 // the event tables connect the wxWidgets events with the functions (event
85 // handlers) which process them. It can be also done at run-time, but for the
86 // simple menu events like this the static method is much simpler.
87 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
88 EVT_MENU(Minimal_Quit, MyFrame::OnQuit)
89 EVT_MENU(Minimal_Back, MyFrame::OnBack)
90 EVT_MENU(Minimal_Forward, MyFrame::OnForward)
91 END_EVENT_TABLE()
92
93 // Create a new application object: this macro will allow wxWidgets to create
94 // the application object during program execution (it's better than using a
95 // static object for many reasons) and also declares the accessor function
96 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
97 // not wxApp)
98 IMPLEMENT_APP(MyApp)
99
100 // ============================================================================
101 // implementation
102 // ============================================================================
103
104 // ----------------------------------------------------------------------------
105 // the application class
106 // ----------------------------------------------------------------------------
107 // `Main program' equivalent: the program execution "starts" here
108 bool MyApp::OnInit()
109 {
110 if ( !wxApp::OnInit() )
111 return false;
112
113 #if wxUSE_LIBPNG
114 wxImage::AddHandler(new wxPNGHandler);
115 #endif
116 #if wxUSE_LIBJPEG
117 wxImage::AddHandler(new wxJPEGHandler);
118 #endif
119
120 wxFileSystem::AddHandler(new wxZipFSHandler);
121
122 // Create the main application window
123 MyFrame *frame = new MyFrame(_("wxHtmlWindow testing application"),
124 wxDefaultPosition, wxSize(640, 480) );
125
126 // Show it
127 frame->Show(true);
128
129 // success: wxApp::OnRun() will be called which will enter the main message
130 // loop and the application will run. If we returned false here, the
131 // application would exit immediately.
132
133 return true;
134 }
135
136 // ----------------------------------------------------------------------------
137 // main frame
138 // ----------------------------------------------------------------------------
139
140 wxHtmlWindow *html;
141
142 // frame constructor
143 MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
144 : wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size)
145 {
146 SetIcon(wxICON(sample));
147
148 // create a menu bar
149 wxMenu *menuFile = new wxMenu;
150 wxMenu *menuNav = new wxMenu;
151
152 menuFile->Append(Minimal_Quit, _("E&xit"));
153 menuNav->Append(Minimal_Back, _("Go &BACK"));
154 menuNav->Append(Minimal_Forward, _("Go &FORWARD"));
155
156 // now append the freshly created menu to the menu bar...
157 wxMenuBar *menuBar = new wxMenuBar;
158 menuBar->Append(menuFile, _("&File"));
159 menuBar->Append(menuNav, _("&Navigate"));
160
161 // ... and attach this menu bar to the frame
162 SetMenuBar(menuBar);
163
164 #if wxUSE_STATUSBAR
165 CreateStatusBar(1);
166 #endif // wxUSE_STATUSBAR
167
168 html = new wxHtmlWindow(this);
169 html -> SetRelatedFrame(this, _("HTML : %s"));
170 #if wxUSE_STATUSBAR
171 html -> SetRelatedStatusBar(0);
172 #endif // wxUSE_STATUSBAR
173 html -> LoadPage(wxT("start.htm"));
174 }
175
176
177 // event handlers
178
179 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
180 {
181 // true is to force the frame to close
182 Close(true);
183 }
184
185 void MyFrame::OnBack(wxCommandEvent& WXUNUSED(event))
186 {
187 if (!html -> HistoryBack()) wxMessageBox(_("You reached prehistory era!"));
188 }
189
190 void MyFrame::OnForward(wxCommandEvent& WXUNUSED(event))
191 {
192 if (!html -> HistoryForward()) wxMessageBox(_("No more items in history!"));
193 }