1999-07-07 22:04:58 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2009-02-08 01:20:35 +00:00
|
|
|
// Name: zip.cpp
|
|
|
|
// Purpose: wxHtml sample: Demonstrates embedded controls
|
|
|
|
// Author: ?
|
|
|
|
// Modified by:
|
|
|
|
// Created: ?
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) wxWidgets team
|
|
|
|
// Licence: wxWindows licence
|
1999-07-07 22:04:58 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
2001-10-30 13:33:34 +00:00
|
|
|
#include "wx/wxprec.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// for all others, include the necessary headers (this file is usually all you
|
2004-05-25 11:20:37 +00:00
|
|
|
// need because it includes almost all "standard" wxWidgets headers
|
1999-07-07 22:04:58 +00:00
|
|
|
#ifndef WX_PRECOMP
|
2002-01-13 17:41:56 +00:00
|
|
|
#include "wx/wx.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
#endif
|
|
|
|
|
2002-01-13 17:41:56 +00:00
|
|
|
#include "wx/html/htmlwin.h"
|
2005-03-18 09:46:49 +00:00
|
|
|
#include "../../sample.xpm"
|
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
|
2009-02-08 01:20:35 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// TAG HANDER FOR 'MYBIND' TAG
|
|
|
|
// ----------------------------------------------------------------------------
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2002-01-13 17:41:56 +00:00
|
|
|
#include "wx/html/m_templ.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
TAG_HANDLER_BEGIN(MYBIND, "MYBIND")
|
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
TAG_HANDLER_PROC(tag)
|
|
|
|
{
|
|
|
|
wxWindow *wnd;
|
|
|
|
int ax, ay;
|
|
|
|
int fl = 0;
|
|
|
|
|
|
|
|
tag.ScanParam(wxT("X"), wxT("%i"), &ax);
|
|
|
|
tag.ScanParam(wxT("Y"), wxT("%i"), &ay);
|
|
|
|
|
|
|
|
if (tag.HasParam(wxT("FLOAT"))) fl = ax;
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2006-04-14 21:02:54 +00:00
|
|
|
wnd = new wxTextCtrl
|
|
|
|
(
|
|
|
|
m_WParser->GetWindowInterface()->GetHTMLWindow(),
|
|
|
|
wxID_ANY,
|
|
|
|
tag.GetParam(wxT("NAME")),
|
|
|
|
wxPoint(0,0),
|
|
|
|
wxSize(ax, ay),
|
|
|
|
wxTE_MULTILINE
|
|
|
|
);
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2004-06-01 16:33:29 +00:00
|
|
|
wnd->Show(true);
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
m_WParser->GetContainer()->InsertCell(new wxHtmlWidgetCell(wnd, fl));
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2004-06-01 16:33:29 +00:00
|
|
|
return false;
|
2002-08-01 19:12:24 +00:00
|
|
|
}
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
TAG_HANDLER_END(MYBIND)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TAGS_MODULE_BEGIN(MyBind)
|
|
|
|
|
|
|
|
TAGS_MODULE_ADD(MYBIND)
|
|
|
|
|
|
|
|
TAGS_MODULE_END(MyBind)
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// private classes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Define a new application type, each program should derive a class from wxApp
|
2002-08-01 19:12:24 +00:00
|
|
|
class MyApp : public wxApp
|
|
|
|
{
|
|
|
|
public:
|
1999-07-07 22:04:58 +00:00
|
|
|
// override base class virtuals
|
|
|
|
// ----------------------------
|
2002-08-01 19:12:24 +00:00
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// this one is called on application startup and is a good place for the app
|
|
|
|
// initialization (doing it here and not in the ctor allows to have an error
|
|
|
|
// return: if OnInit() returns false, the application terminates)
|
2002-08-01 19:12:24 +00:00
|
|
|
virtual bool OnInit();
|
|
|
|
};
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// Define a new frame type: this is going to be our main frame
|
2002-08-01 19:12:24 +00:00
|
|
|
class MyFrame : public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
1999-07-07 22:04:58 +00:00
|
|
|
// ctor(s)
|
2002-08-01 19:12:24 +00:00
|
|
|
MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
|
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// event handlers (these functions should _not_ be virtual)
|
2002-08-01 19:12:24 +00:00
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnBack(wxCommandEvent& event);
|
|
|
|
void OnForward(wxCommandEvent& event);
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
private:
|
2004-05-25 11:20:37 +00:00
|
|
|
// any class wishing to process wxWidgets events must use this macro
|
1999-07-07 22:04:58 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2002-08-01 19:12:24 +00:00
|
|
|
};
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// IDs for the controls and the menu commands
|
2002-08-01 19:12:24 +00:00
|
|
|
enum
|
|
|
|
{
|
1999-07-07 22:04:58 +00:00
|
|
|
// menu items
|
2002-08-01 19:12:24 +00:00
|
|
|
Minimal_Quit = 1,
|
|
|
|
Minimal_Back,
|
|
|
|
Minimal_Forward,
|
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// controls start here (the numbers are, of course, arbitrary)
|
2006-08-13 01:17:53 +00:00
|
|
|
Minimal_Text = 1000
|
2002-08-01 19:12:24 +00:00
|
|
|
};
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2004-05-25 11:20:37 +00:00
|
|
|
// event tables and other macros for wxWidgets
|
1999-07-07 22:04:58 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-05-25 11:20:37 +00:00
|
|
|
// the event tables connect the wxWidgets events with the functions (event
|
1999-07-07 22:04:58 +00:00
|
|
|
// handlers) which process them. It can be also done at run-time, but for the
|
|
|
|
// simple menu events like this the static method is much simpler.
|
2002-08-01 19:12:24 +00:00
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
|
|
|
EVT_MENU(Minimal_Quit, MyFrame::OnQuit)
|
|
|
|
EVT_MENU(Minimal_Back, MyFrame::OnBack)
|
|
|
|
EVT_MENU(Minimal_Forward, MyFrame::OnForward)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
2004-05-25 11:20:37 +00:00
|
|
|
// Create a new application object: this macro will allow wxWidgets to create
|
2002-08-01 19:12:24 +00:00
|
|
|
// the application object during program execution (it's better than using a
|
|
|
|
// static object for many reasons) and also declares the accessor function
|
|
|
|
// wxGetApp() which will return the reference of the right type (i.e. MyApp and
|
|
|
|
// not wxApp)
|
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// implementation
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the application class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// `Main program' equivalent: the program execution "starts" here
|
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
2007-02-04 00:34:18 +00:00
|
|
|
if ( !wxApp::OnInit() )
|
|
|
|
return false;
|
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// Create the main application window
|
2002-12-04 14:11:26 +00:00
|
|
|
MyFrame *frame = new MyFrame( _("wxHtmlWindow testing application"),
|
2004-07-05 19:27:23 +00:00
|
|
|
wxDefaultPosition, wxSize(640, 480) );
|
2002-08-01 19:12:24 +00:00
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// Show it and tell the application that it's our main window
|
|
|
|
// @@@ what does it do exactly, in fact? is it necessary here?
|
2004-06-01 16:33:29 +00:00
|
|
|
frame->Show(true);
|
2002-08-01 19:12:24 +00:00
|
|
|
SetTopWindow(frame);
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// success: wxApp::OnRun() will be called which will enter the main message
|
2004-06-01 16:33:29 +00:00
|
|
|
// loop and the application will run. If we returned false here, the
|
1999-07-07 22:04:58 +00:00
|
|
|
// application would exit immediately.
|
2004-06-01 16:33:29 +00:00
|
|
|
return true;
|
2002-08-01 19:12:24 +00:00
|
|
|
}
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// main frame
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
wxHtmlWindow *html;
|
|
|
|
|
|
|
|
// frame constructor
|
2002-08-01 19:12:24 +00:00
|
|
|
MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
|
2009-02-08 01:20:35 +00:00
|
|
|
: wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size)
|
2002-08-01 19:12:24 +00:00
|
|
|
{
|
2009-02-08 01:20:35 +00:00
|
|
|
SetIcon(wxICON(sample));
|
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// create a menu bar
|
2002-08-01 19:12:24 +00:00
|
|
|
wxMenu *menuFile = new wxMenu;
|
|
|
|
wxMenu *menuNav = new wxMenu;
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
menuFile->Append(Minimal_Quit, _("E&xit"));
|
|
|
|
menuNav->Append(Minimal_Back, _("Go &BACK"));
|
|
|
|
menuNav->Append(Minimal_Forward, _("Go &FORWARD"));
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// now append the freshly created menu to the menu bar...
|
2002-08-01 19:12:24 +00:00
|
|
|
wxMenuBar *menuBar = new wxMenuBar;
|
2002-12-04 14:11:26 +00:00
|
|
|
menuBar->Append(menuFile, _("&File"));
|
|
|
|
menuBar->Append(menuNav, _("&Navigate"));
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// ... and attach this menu bar to the frame
|
2002-08-01 19:12:24 +00:00
|
|
|
SetMenuBar(menuBar);
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2005-03-18 09:46:49 +00:00
|
|
|
SetIcon(wxIcon(sample_xpm));
|
2009-02-08 01:20:35 +00:00
|
|
|
|
2004-07-19 15:36:01 +00:00
|
|
|
#if wxUSE_STATUSBAR
|
2002-08-01 19:12:24 +00:00
|
|
|
CreateStatusBar(2);
|
2004-07-19 15:36:01 +00:00
|
|
|
#endif // wxUSE_STATUSBAR
|
2002-08-01 19:12:24 +00:00
|
|
|
|
|
|
|
html = new wxHtmlWindow(this);
|
2005-03-18 09:46:49 +00:00
|
|
|
html -> SetRelatedFrame(this, _("wxHTML Demo: '%s'"));
|
2004-07-19 15:36:01 +00:00
|
|
|
#if wxUSE_STATUSBAR
|
2002-08-01 19:12:24 +00:00
|
|
|
html -> SetRelatedStatusBar(1);
|
2004-07-19 15:36:01 +00:00
|
|
|
#endif // wxUSE_STATUSBAR
|
2002-12-04 14:11:26 +00:00
|
|
|
html -> LoadPage(wxT("start.htm"));
|
2005-03-18 09:46:49 +00:00
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
}
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
// event handlers
|
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2004-06-01 16:33:29 +00:00
|
|
|
// true is to force the frame to close
|
|
|
|
Close(true);
|
2002-08-01 19:12:24 +00:00
|
|
|
}
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
void MyFrame::OnBack(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2002-12-04 14:11:26 +00:00
|
|
|
if (!html -> HistoryBack()) wxMessageBox(_("You reached prehistory era!"));
|
2002-08-01 19:12:24 +00:00
|
|
|
}
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
|
2002-08-01 19:12:24 +00:00
|
|
|
void MyFrame::OnForward(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2002-12-04 14:11:26 +00:00
|
|
|
if (!html -> HistoryForward()) wxMessageBox(_("No more items in history!"));
|
2002-08-01 19:12:24 +00:00
|
|
|
}
|