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$
|
2003-03-17 11:55:54 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
1999-05-23 23:45:47 +00:00
|
|
|
// Licence: wxWindows license
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-01-19 14:50:37 +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
|
1999-05-23 23:45:47 +00:00
|
|
|
class MyApp : public wxApp
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
public:
|
2008-11-04 02:46:19 +00:00
|
|
|
virtual bool OnInit();
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
class MyCanvas : public wxScrolledWindow
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
|
|
|
|
virtual void OnDraw(wxDC& dc);
|
1999-05-23 23:45:47 +00:00
|
|
|
|
|
|
|
bool IsDirty() const { return m_dirty; }
|
|
|
|
|
2006-07-24 13:36:22 +00:00
|
|
|
void SetText(const wxString& text) { m_text = text; Refresh(); }
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
private:
|
2008-11-04 02:46:19 +00:00
|
|
|
void OnEvent(wxMouseEvent& event);
|
|
|
|
|
2006-07-24 13:36:22 +00:00
|
|
|
wxString m_text;
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
bool m_dirty;
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame
|
1999-05-23 23:45:47 +00:00
|
|
|
class MyFrame : public wxMDIParentFrame
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
public:
|
2008-11-04 02:46:19 +00:00
|
|
|
MyFrame();
|
|
|
|
virtual ~MyFrame();
|
1998-07-27 09:47:57 +00:00
|
|
|
|
2009-01-28 09:00:49 +00:00
|
|
|
static wxMenuBar *CreateMainMenubar();
|
|
|
|
|
2008-11-04 02:46:19 +00:00
|
|
|
private:
|
1998-07-27 09:47:57 +00:00
|
|
|
void InitToolBar(wxToolBar* toolBar);
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnNewWindow(wxCommandEvent& event);
|
2009-01-26 23:17:09 +00:00
|
|
|
void OnFullScreen(wxCommandEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnQuit(wxCommandEvent& event);
|
2009-01-27 16:47:41 +00:00
|
|
|
void OnCloseAll(wxCommandEvent& event);
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
void OnClose(wxCloseEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2008-11-04 02:46:19 +00:00
|
|
|
wxTextCtrl *m_textWindow;
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2008-11-04 02:46:19 +00:00
|
|
|
class MyChild : public wxMDIChildFrame
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
public:
|
2008-11-04 02:46:19 +00:00
|
|
|
MyChild(wxMDIParentFrame *parent);
|
|
|
|
virtual ~MyChild();
|
1999-05-23 23:45:47 +00:00
|
|
|
|
2008-11-04 02:46:19 +00:00
|
|
|
static unsigned GetChildrenCount() { return ms_numChildren; }
|
|
|
|
|
|
|
|
private:
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnActivate(wxActivateEvent& event);
|
1999-05-23 23:45:47 +00:00
|
|
|
|
|
|
|
void OnRefresh(wxCommandEvent& event);
|
2000-12-18 15:50:03 +00:00
|
|
|
void OnUpdateRefresh(wxUpdateUIEvent& event);
|
2000-07-15 19:51:35 +00:00
|
|
|
void OnChangeTitle(wxCommandEvent& event);
|
2000-12-18 15:50:03 +00:00
|
|
|
void OnChangePosition(wxCommandEvent& event);
|
|
|
|
void OnChangeSize(wxCommandEvent& event);
|
2008-11-04 02:46:19 +00:00
|
|
|
void OnClose(wxCommandEvent& event);
|
2000-12-18 15:50:03 +00:00
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void OnMove(wxMoveEvent& event);
|
2008-11-04 02:46:19 +00:00
|
|
|
void OnCloseWindow(wxCloseEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2006-07-24 13:36:22 +00:00
|
|
|
#if wxUSE_CLIPBOARD
|
|
|
|
void OnPaste(wxCommandEvent& event);
|
|
|
|
void OnUpdatePaste(wxUpdateUIEvent& event);
|
|
|
|
#endif // wxUSE_CLIPBOARD
|
|
|
|
|
2008-11-04 02:46:19 +00:00
|
|
|
static unsigned ms_numChildren;
|
|
|
|
|
|
|
|
MyCanvas *m_canvas;
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// menu items ids
|
|
|
|
enum
|
|
|
|
{
|
2009-03-01 15:03:02 +00:00
|
|
|
MDI_FULLSCREEN = 100,
|
1999-05-23 23:45:47 +00:00
|
|
|
MDI_REFRESH,
|
2000-07-15 19:51:35 +00:00
|
|
|
MDI_CHANGE_TITLE,
|
2000-12-18 15:50:03 +00:00
|
|
|
MDI_CHANGE_POSITION,
|
2008-11-04 02:46:19 +00:00
|
|
|
MDI_CHANGE_SIZE
|
1999-05-23 23:45:47 +00:00
|
|
|
};
|