1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: mdi.cpp
|
|
|
|
// Purpose: MDI sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
2003-03-17 06:55:54 -05:00
|
|
|
// Copyright: (c) Julian Smart
|
2010-07-13 09:29:13 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-01-19 09:50:37 -05:00
|
|
|
#include "wx/toolbar.h"
|
1998-05-27 09:56:59 -04:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
// Define a new application
|
1999-05-23 19:45:47 -04:00
|
|
|
class MyApp : public wxApp
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-05-23 19:45:47 -04:00
|
|
|
public:
|
2008-11-03 21:46:19 -05:00
|
|
|
virtual bool OnInit();
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
class MyCanvas : public wxScrolledWindow
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-05-23 19:45:47 -04:00
|
|
|
public:
|
1998-05-20 10:01:55 -04:00
|
|
|
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
|
|
|
|
virtual void OnDraw(wxDC& dc);
|
1999-05-23 19:45:47 -04:00
|
|
|
|
|
|
|
bool IsDirty() const { return m_dirty; }
|
|
|
|
|
2006-07-24 09:36:22 -04:00
|
|
|
void SetText(const wxString& text) { m_text = text; Refresh(); }
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
private:
|
2008-11-03 21:46:19 -05:00
|
|
|
void OnEvent(wxMouseEvent& event);
|
|
|
|
|
2006-07-24 09:36:22 -04:00
|
|
|
wxString m_text;
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
bool m_dirty;
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame
|
1999-05-23 19:45:47 -04:00
|
|
|
class MyFrame : public wxMDIParentFrame
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-05-23 19:45:47 -04:00
|
|
|
public:
|
2008-11-03 21:46:19 -05:00
|
|
|
MyFrame();
|
|
|
|
virtual ~MyFrame();
|
1998-07-27 05:47:57 -04:00
|
|
|
|
2009-01-28 04:00:49 -05:00
|
|
|
static wxMenuBar *CreateMainMenubar();
|
|
|
|
|
2008-11-03 21:46:19 -05:00
|
|
|
private:
|
1998-07-27 05:47:57 -04:00
|
|
|
void InitToolBar(wxToolBar* toolBar);
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnNewWindow(wxCommandEvent& event);
|
2009-01-26 18:17:09 -05:00
|
|
|
void OnFullScreen(wxCommandEvent& event);
|
1998-05-20 10:01:55 -04:00
|
|
|
void OnQuit(wxCommandEvent& event);
|
2009-01-27 11:47:41 -05:00
|
|
|
void OnCloseAll(wxCommandEvent& event);
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
void OnClose(wxCloseEvent& event);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2008-11-03 21:46:19 -05:00
|
|
|
wxTextCtrl *m_textWindow;
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2008-11-03 21:46:19 -05:00
|
|
|
class MyChild : public wxMDIChildFrame
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-05-23 19:45:47 -04:00
|
|
|
public:
|
2008-11-03 21:46:19 -05:00
|
|
|
MyChild(wxMDIParentFrame *parent);
|
|
|
|
virtual ~MyChild();
|
1999-05-23 19:45:47 -04:00
|
|
|
|
2008-11-03 21:46:19 -05:00
|
|
|
static unsigned GetChildrenCount() { return ms_numChildren; }
|
|
|
|
|
|
|
|
private:
|
1998-05-20 10:01:55 -04:00
|
|
|
void OnActivate(wxActivateEvent& event);
|
1999-05-23 19:45:47 -04:00
|
|
|
|
|
|
|
void OnRefresh(wxCommandEvent& event);
|
2000-12-18 10:50:03 -05:00
|
|
|
void OnUpdateRefresh(wxUpdateUIEvent& event);
|
2000-07-15 15:51:35 -04:00
|
|
|
void OnChangeTitle(wxCommandEvent& event);
|
2000-12-18 10:50:03 -05:00
|
|
|
void OnChangePosition(wxCommandEvent& event);
|
|
|
|
void OnChangeSize(wxCommandEvent& event);
|
2008-11-03 21:46:19 -05:00
|
|
|
void OnClose(wxCommandEvent& event);
|
2000-12-18 10:50:03 -05:00
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void OnMove(wxMoveEvent& event);
|
2008-11-03 21:46:19 -05:00
|
|
|
void OnCloseWindow(wxCloseEvent& event);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2006-07-24 09:36:22 -04:00
|
|
|
#if wxUSE_CLIPBOARD
|
|
|
|
void OnPaste(wxCommandEvent& event);
|
|
|
|
void OnUpdatePaste(wxUpdateUIEvent& event);
|
|
|
|
#endif // wxUSE_CLIPBOARD
|
|
|
|
|
2008-11-03 21:46:19 -05:00
|
|
|
static unsigned ms_numChildren;
|
|
|
|
|
|
|
|
MyCanvas *m_canvas;
|
|
|
|
|
2010-05-09 10:55:33 -04:00
|
|
|
// simple test event handler class
|
|
|
|
class EventHandler : public wxEvtHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
EventHandler(unsigned numChild) : m_numChild(numChild) { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void OnRefresh(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
wxLogMessage("Child #%u refreshed.", m_numChild);
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsigned m_numChild;
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
wxDECLARE_NO_COPY_CLASS(EventHandler);
|
|
|
|
};
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
1999-05-23 19:45:47 -04:00
|
|
|
// menu items ids
|
|
|
|
enum
|
|
|
|
{
|
2009-03-01 10:03:02 -05:00
|
|
|
MDI_FULLSCREEN = 100,
|
1999-05-23 19:45:47 -04:00
|
|
|
MDI_REFRESH,
|
2000-07-15 15:51:35 -04:00
|
|
|
MDI_CHANGE_TITLE,
|
2000-12-18 10:50:03 -05:00
|
|
|
MDI_CHANGE_POSITION,
|
2008-11-03 21:46:19 -05:00
|
|
|
MDI_CHANGE_SIZE
|
1999-05-23 19:45:47 -04:00
|
|
|
};
|