]>
git.saurik.com Git - wxWidgets.git/blob - contrib/samples/ogl/studio/cspalette.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: contrib/samples/ogl/studio/cspalette.h
3 // Purpose: OGL sample palette
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _STUDIO_CSPALETTE_H_
13 #define _STUDIO_CSPALETTE_H_
16 #include "wx/string.h"
17 #include "wx/ogl/ogl.h" // base header of OGL, includes and adjusts wx/deprecated/setup.h
20 * Object editor tool palette
24 #define TOOLPALETTECLASS wxToolBar
26 class csEditorToolPalette
: public TOOLPALETTECLASS
30 csEditorToolPalette(wxWindow
*parent
, wxWindowID id
= wxID_ANY
, const wxPoint
& pos
= wxDefaultPosition
,
31 const wxSize
& size
= wxDefaultSize
,
32 long style
= wxTB_VERTICAL
);
34 bool OnLeftClick(int toolIndex
, bool toggled
);
35 void OnMouseEnter(int toolIndex
);
37 inline int GetSelection() const { return m_currentlySelected
; }
38 void SetSelection(int sel
);
40 void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
43 int m_currentlySelected
;
46 #define PALETTE_ARROW 200
47 #define PALETTE_TEXT_TOOL 201
50 // _STUDIO_CSPALETTE_H_