git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * File:	gui.h
 | 
						|
 * Purpose:	wxWindows plugin with a few GUI elements
 | 
						|
 * Author:	Julian Smart
 | 
						|
 * Created:	1997
 | 
						|
 * Updated:	
 | 
						|
 * Copyright:   (c) Julian Smart
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __GUIH__
 | 
						|
#define __GUIH__
 | 
						|
 | 
						|
// Define a new application type
 | 
						|
class MyApp: public wxPluginApp
 | 
						|
{ public:
 | 
						|
    virtual wxFrame *OnInit(void);
 | 
						|
    virtual wxPluginFrame* OnNewInstance(const wxPluginData& data);
 | 
						|
};
 | 
						|
 | 
						|
class MyApp;
 | 
						|
class MyFrame;
 | 
						|
class MyCanvas;
 | 
						|
 | 
						|
class MyFrame: public wxPluginFrame
 | 
						|
{
 | 
						|
public:
 | 
						|
	MyFrame(const wxPluginData& data);
 | 
						|
	virtual ~MyFrame();
 | 
						|
 | 
						|
	void OldOnMenuCommand(int id);
 | 
						|
 | 
						|
private:
 | 
						|
	wxMenu*		fileMenu;
 | 
						|
	wxMenuBar*	menuBar;
 | 
						|
	MyCanvas*	leftCanvas;
 | 
						|
	MyCanvas*	rightCanvas;
 | 
						|
    wxSplitterWindow* splitter;
 | 
						|
};
 | 
						|
 | 
						|
class MyCanvas: public wxScrolledWindow
 | 
						|
{
 | 
						|
public:
 | 
						|
	MyCanvas(wxWindow* parent, int x, int y, int w, int h);
 | 
						|
	virtual ~MyCanvas();
 | 
						|
 | 
						|
	void OnPaint(wxPaintEvent& event);
 | 
						|
 | 
						|
DECLARE_EVENT_TABLE()
 | 
						|
};
 | 
						|
 | 
						|
// ID for the menu quit command
 | 
						|
#define SPLIT_QUIT          1
 | 
						|
#define SPLIT_HORIZONTAL    2
 | 
						|
#define SPLIT_VERTICAL      3
 | 
						|
#define SPLIT_UNSPLIT       4
 | 
						|
 | 
						|
 | 
						|
#endif
 | 
						|
 |