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
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        test.h
 | 
						|
// Purpose:     wxToolBar sample
 | 
						|
// Author:      Julian Smart
 | 
						|
// Modified by:
 | 
						|
// Created:     23/07/98
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) Julian Smart
 | 
						|
// Licence:   	wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
// Define a new application
 | 
						|
class MyApp: public wxApp
 | 
						|
{
 | 
						|
  public:
 | 
						|
    bool OnInit(void);
 | 
						|
    bool InitToolbar(wxToolBar* toolBar);
 | 
						|
};
 | 
						|
 | 
						|
// Define a new frame
 | 
						|
class MyFrame: public wxFrame
 | 
						|
{
 | 
						|
public:
 | 
						|
    MyFrame(wxFrame *parent, wxWindowID id = -1, const wxString& title = "wxToolBar Sample",
 | 
						|
        const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
 | 
						|
        long style = wxDEFAULT_FRAME_STYLE);
 | 
						|
 | 
						|
    void OnCloseWindow(wxCloseEvent& event);
 | 
						|
    void OnQuit(wxCommandEvent& event);
 | 
						|
    void OnAbout(wxCommandEvent& event);
 | 
						|
    void OnToolLeftClick(wxCommandEvent& event);
 | 
						|
    void OnToolEnter(wxCommandEvent& event);
 | 
						|
 | 
						|
private:
 | 
						|
    wxTextCtrl*         m_textWindow;
 | 
						|
 | 
						|
DECLARE_EVENT_TABLE()
 | 
						|
};
 | 
						|
 | 
						|
#define ID_TOOLBAR  500
 | 
						|
 |