more MDI features tested

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-05-23 23:45:47 +00:00
parent 7f539e8a66
commit c52d95b412
2 changed files with 363 additions and 247 deletions

View File

@@ -6,35 +6,42 @@
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart and Markus Holzem
// Licence: wxWindows license
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#include <wx/toolbar.h>
// Define a new application
class MyApp: public wxApp
class MyApp : public wxApp
{
public:
bool OnInit(void);
public:
bool OnInit();
};
class MyCanvas: public wxScrolledWindow
class MyCanvas : public wxScrolledWindow
{
public:
public:
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
virtual void OnDraw(wxDC& dc);
bool IsDirty() const { return m_dirty; }
void OnEvent(wxMouseEvent& event);
private:
bool m_dirty;
DECLARE_EVENT_TABLE()
};
// Define a new frame
class MyFrame: public wxMDIParentFrame
class MyFrame : public wxMDIParentFrame
{
public:
public:
wxTextCtrl *textWindow;
MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title,
const wxPoint& pos, const wxSize& size, const long style);
void InitToolBar(wxToolBar* toolBar);
@@ -42,24 +49,33 @@ class MyFrame: public wxMDIParentFrame
void OnAbout(wxCommandEvent& event);
void OnNewWindow(wxCommandEvent& event);
void OnQuit(wxCommandEvent& event);
void OnClose(wxCloseEvent& event);
DECLARE_EVENT_TABLE()
DECLARE_EVENT_TABLE()
};
class MyChild: public wxMDIChildFrame
{
public:
public:
MyCanvas *canvas;
MyChild(wxMDIParentFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
~MyChild(void);
void OnActivate(wxActivateEvent& event);
void OnQuit(wxCommandEvent& event);
~MyChild();
DECLARE_EVENT_TABLE()
void OnActivate(wxActivateEvent& event);
void OnRefresh(wxCommandEvent& event);
void OnQuit(wxCommandEvent& event);
void OnClose(wxCloseEvent& event);
DECLARE_EVENT_TABLE()
};
#define MDI_QUIT 1
#define MDI_NEW_WINDOW 2
#define MDI_REFRESH 3
#define MDI_CHILD_QUIT 4
#define MDI_ABOUT 5
// menu items ids
enum
{
MDI_QUIT = 100,
MDI_NEW_WINDOW,
MDI_REFRESH,
MDI_CHILD_QUIT,
MDI_ABOUT
};