client area position is used in SetSize; changes for BC++ & VC++ 1.5; wxWindow::GetUpdateRegion added; removed wxUpdateIterator; some missing functions added to process.cpp; bad navigation key event cast fixed; MDI and toolbar samples updated; new wxMSW wxRegion constructor (WXHRGN) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// 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
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#include <wx/toolbar.h>
 | 
						|
 | 
						|
// 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()
 | 
						|
};
 | 
						|
 | 
						|
// Define a new frame
 | 
						|
class MyFrame: public wxMDIParentFrame
 | 
						|
{
 | 
						|
  public:
 | 
						|
    wxTextCtrl *textWindow;
 | 
						|
    
 | 
						|
    MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
 | 
						|
 | 
						|
    void InitToolBar(wxToolBar* toolBar);
 | 
						|
 | 
						|
    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);
 | 
						|
    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
 |