2001-05-02 16:59:28 -04:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
2001-05-03 13:33:55 -04:00
|
|
|
* wxWindows HTML Applet Package
|
2001-05-02 16:59:28 -04:00
|
|
|
*
|
2001-06-12 14:52:03 -04:00
|
|
|
* Copyright (C) 1991-2001 SciTech Software, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2001-05-02 16:59:28 -04:00
|
|
|
* ========================================================================
|
|
|
|
*
|
2001-06-12 14:52:03 -04:00
|
|
|
* The contents of this file are subject to the wxWindows License
|
|
|
|
* Version 3.0 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.wxwindows.org/licence3.txt
|
2001-05-02 16:59:28 -04:00
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* ========================================================================
|
|
|
|
*
|
2001-05-03 13:33:55 -04:00
|
|
|
* Language: ANSI C++
|
|
|
|
* Environment: Any
|
2001-05-02 16:59:28 -04:00
|
|
|
*
|
|
|
|
* Description: Main wxApplet sample program header file
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SAMPLE_H
|
|
|
|
|
|
|
|
/*------------------------------ Constants --------------------------------*/
|
|
|
|
|
|
|
|
enum {
|
2001-05-03 13:33:55 -04:00
|
|
|
// Menu items
|
|
|
|
Minimal_Quit = 1,
|
|
|
|
Minimal_About,
|
|
|
|
Minimal_Back,
|
|
|
|
Minimal_Forward,
|
2001-06-12 14:52:03 -04:00
|
|
|
|
2001-05-03 13:33:55 -04:00
|
|
|
// Controls start here (the numbers are, of course, arbitrary)
|
|
|
|
Minimal_Text = 1000,
|
|
|
|
};
|
2001-05-02 16:59:28 -04:00
|
|
|
|
|
|
|
/*--------------------------- Class Definitions ---------------------------*/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
REMARKS:
|
|
|
|
Define a new application type, each program should derive a class from wxApp
|
|
|
|
****************************************************************************/
|
|
|
|
class MyApp : public wxApp {
|
|
|
|
public:
|
2001-05-03 13:33:55 -04:00
|
|
|
// Initialise the application on startup
|
|
|
|
virtual bool OnInit();
|
|
|
|
};
|
2001-05-02 16:59:28 -04:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
REMARKS:
|
|
|
|
Define a new frame type: this is going to be our main frame
|
|
|
|
****************************************************************************/
|
|
|
|
class MyFrame : public wxFrame {
|
|
|
|
private:
|
2001-05-03 13:33:55 -04:00
|
|
|
DECLARE_EVENT_TABLE() // Declare event table
|
|
|
|
wxHtmlAppletWindow *html; // Pointer to the html applet window
|
2001-05-02 16:59:28 -04:00
|
|
|
|
|
|
|
public:
|
2001-05-03 13:33:55 -04:00
|
|
|
// Constructor
|
|
|
|
MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
|
2001-05-02 16:59:28 -04:00
|
|
|
|
2001-05-03 13:33:55 -04:00
|
|
|
// Event handlers
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnBack(wxCommandEvent& event);
|
|
|
|
void OnForward(wxCommandEvent& event);
|
|
|
|
};
|
2001-05-02 16:59:28 -04:00
|
|
|
|
2001-05-03 13:33:55 -04:00
|
|
|
#endif // __SAMPLE_H
|
2001-05-02 16:59:28 -04:00
|
|
|
|