git-svn-id: svn://10.65.10.50/branches/R_10_00@23289 c028cbd2-c16b-5b4b-a496-9718f37d4682
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: contrib/samples/ogl/ogledit/ogledit.h
|
|
// Purpose: OGL sample
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 12/07/98
|
|
// RCS-ID: $Id: ogledit.h 37440 2006-02-10 11:59:52Z ABX $
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _OGLSAMPLE_OGLEDIT_H_
|
|
#define _OGLSAMPLE_OGLEDIT_H_
|
|
|
|
#include "wx/docview.h"
|
|
#include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
|
|
|
|
// Define a new application
|
|
class MyFrame;
|
|
class EditorToolPalette;
|
|
class MyApp: public wxApp
|
|
{
|
|
public:
|
|
MyFrame *frame;
|
|
wxDocManager* myDocManager;
|
|
|
|
MyApp(void);
|
|
bool OnInit(void);
|
|
int OnExit(void);
|
|
|
|
// Palette stuff
|
|
EditorToolPalette *CreatePalette(wxFrame *parent);
|
|
};
|
|
|
|
DECLARE_APP(MyApp)
|
|
|
|
// Define a new frame
|
|
class MyCanvas;
|
|
class MyFrame: public wxDocParentFrame
|
|
{
|
|
DECLARE_CLASS(MyFrame)
|
|
public:
|
|
wxMenu *editMenu;
|
|
|
|
MyCanvas *canvas;
|
|
EditorToolPalette *palette;
|
|
|
|
MyFrame(wxDocManager *manager, wxFrame *parent, const wxString& title,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxDEFAULT_FRAME_STYLE);
|
|
|
|
MyCanvas *CreateCanvas(wxView *view, wxFrame *parent);
|
|
void OnSize(wxSizeEvent& event);
|
|
void OnCloseWindow(wxCloseEvent& event);
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
extern MyFrame *GetMainFrame(void);
|
|
|
|
// Menu/undo/redo commands
|
|
|
|
enum
|
|
{
|
|
OGLEDIT_ADD_SHAPE = wxID_HIGHEST,
|
|
OGLEDIT_ADD_LINE,
|
|
OGLEDIT_EDIT_LABEL,
|
|
OGLEDIT_CHANGE_BACKGROUND_COLOUR,
|
|
OGLEDIT_ABOUT = wxID_ABOUT
|
|
};
|
|
|
|
#endif
|
|
// _OGLSAMPLE_OGLEDIT_H_
|