1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: mdi.cpp
|
|
|
|
// Purpose: MDI sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-07-24 20:47:43 +00:00
|
|
|
#include <wx/toolbar.h>
|
1998-05-27 13:56:59 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Define a new application
|
|
|
|
class MyApp: public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool OnInit(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
class MyCanvas: public wxScrolledWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
|
|
|
|
virtual void OnDraw(wxDC& dc);
|
|
|
|
void OnEvent(wxMouseEvent& event);
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
1998-05-27 13:56:59 +00:00
|
|
|
class TestRibbon: public wxToolBar
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestRibbon(wxFrame *frame, int x = 0, int y = 0, int w = -1, int h = -1,
|
|
|
|
long style = wxNO_BORDER, int direction = wxVERTICAL, int RowsOrColumns = 2);
|
|
|
|
bool OnLeftClick(int toolIndex, bool toggled);
|
|
|
|
void OnMouseEnter(int toolIndex);
|
|
|
|
void OnPaint(wxPaintEvent& event);
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame
|
|
|
|
class MyFrame: public wxMDIParentFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxTextCtrl *textWindow;
|
|
|
|
|
|
|
|
TestRibbon* toolBar;
|
|
|
|
|
|
|
|
MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
|
|
|
|
bool OnClose(void);
|
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnNewWindow(wxCommandEvent& event);
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
class MyChild: public wxMDIChildFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyCanvas *canvas;
|
|
|
|
MyChild(wxMDIParentFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
|
|
|
|
~MyChild(void);
|
|
|
|
bool OnClose(void);
|
1998-07-13 23:30:59 +00:00
|
|
|
void OnSize(wxSizeEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnActivate(wxActivateEvent& event);
|
|
|
|
void OnQuit(wxCommandEvent& 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
|