1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: layout.h
|
|
|
|
// Purpose: Layout sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Define a new application
|
|
|
|
class MyApp: public wxApp
|
|
|
|
{
|
1999-12-11 15:07:14 +00:00
|
|
|
public:
|
|
|
|
MyApp();
|
|
|
|
bool OnInit();
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame
|
|
|
|
class MyTextWindow;
|
|
|
|
class MyWindow;
|
|
|
|
|
|
|
|
class MyFrame: public wxFrame
|
|
|
|
{
|
1999-12-11 15:07:14 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
wxPanel *panel;
|
|
|
|
MyTextWindow *text_window;
|
|
|
|
MyWindow *canvas;
|
|
|
|
MyFrame(wxFrame *frame, char *title, int x, int y, int w, int h);
|
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
void Draw(wxDC& dc, bool draw_bitmaps = TRUE);
|
|
|
|
|
|
|
|
void LoadFile(wxCommandEvent& event);
|
|
|
|
void Quit(wxCommandEvent& event);
|
1999-12-11 15:07:14 +00:00
|
|
|
void TestSizers(wxCommandEvent& event);
|
|
|
|
void TestNotebookSizers(wxCommandEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
void About(wxCommandEvent& event);
|
|
|
|
|
1999-12-11 15:07:14 +00:00
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new text subwindow that can respond to drag-and-drop
|
|
|
|
class MyTextWindow: public wxTextCtrl
|
|
|
|
{
|
1999-12-11 15:07:14 +00:00
|
|
|
public:
|
|
|
|
MyTextWindow(wxFrame *frame, int x=-1, int y=-1, int width=-1, int height=-1,
|
1998-05-20 14:01:55 +00:00
|
|
|
long style=wxTE_MULTILINE):
|
|
|
|
wxTextCtrl(frame, -1, "", wxPoint(x, y), wxSize(width, height), style)
|
1999-12-11 15:07:14 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new canvas which can receive some events
|
|
|
|
class MyWindow: public wxWindow
|
|
|
|
{
|
1999-12-11 15:07:14 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
MyWindow(wxFrame *frame, int x, int y, int w, int h, long style = wxRETAINED);
|
1999-12-11 15:07:14 +00:00
|
|
|
~MyWindow();
|
1998-05-20 14:01:55 +00:00
|
|
|
void OnPaint(wxPaintEvent& event);
|
1999-12-11 15:07:14 +00:00
|
|
|
|
|
|
|
private:
|
1998-05-20 14:01:55 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
1999-12-11 15:07:14 +00:00
|
|
|
class MySizerFrame: public wxFrame
|
1999-08-08 16:45:57 +00:00
|
|
|
{
|
1999-12-11 15:07:14 +00:00
|
|
|
public:
|
1999-08-08 16:45:57 +00:00
|
|
|
wxPanel *panel;
|
1999-12-11 15:07:14 +00:00
|
|
|
MySizerFrame(wxFrame *frame, char *title, int x, int y );
|
1999-08-08 16:45:57 +00:00
|
|
|
};
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#define LAYOUT_QUIT 100
|
|
|
|
#define LAYOUT_TEST 101
|
|
|
|
#define LAYOUT_ABOUT 102
|
|
|
|
#define LAYOUT_LOAD_FILE 103
|
1999-12-11 15:07:14 +00:00
|
|
|
#define LAYOUT_TEST_SIZER 104
|
|
|
|
#define LAYOUT_TEST_NB 105
|