]>
Commit | Line | Data |
---|---|---|
1fc25a89 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: cspalette.h | |
3 | // Purpose: OGL sample palette | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 12/07/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _STUDIO_CSPALETTE_H_ | |
13 | #define _STUDIO_CSPALETTE_H_ | |
14 | ||
ab7ce33c | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
1fc25a89 JS |
16 | // #pragma interface |
17 | #endif | |
18 | ||
19 | #include <wx/wx.h> | |
20 | #include <wx/string.h> | |
8a82c9ec | 21 | #include <wx/deprecated/tbarsmpl.h> |
1fc25a89 JS |
22 | |
23 | /* | |
24 | * Object editor tool palette | |
25 | * | |
26 | */ | |
27 | ||
28 | // TODO for wxWin: wxToolBar95 cannot be moved to a non-0,0 position! | |
29 | // Needs to have a parent window... | |
30 | // So use a simple toolbar at present. | |
1484b5cc VS |
31 | // ABX: Simple toolbar is not available in default compilation and is deprecated |
32 | // so I use wxToolBar anyway | |
33 | // #define TOOLPALETTECLASS wxToolBarSimple | |
34 | #define TOOLPALETTECLASS wxToolBar | |
1fc25a89 JS |
35 | |
36 | class csEditorToolPalette: public TOOLPALETTECLASS | |
37 | { | |
38 | public: | |
39 | ||
40 | csEditorToolPalette(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, | |
41 | const wxSize& size = wxDefaultSize, | |
42 | long style = wxTB_VERTICAL); | |
43 | ||
44 | bool OnLeftClick(int toolIndex, bool toggled); | |
45 | void OnMouseEnter(int toolIndex); | |
46 | ||
47 | inline int GetSelection() const { return m_currentlySelected; } | |
48 | void SetSelection(int sel); | |
49 | ||
50 | void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
51 | ||
52 | protected: | |
53 | int m_currentlySelected; | |
54 | }; | |
55 | ||
56 | #define PALETTE_ARROW 200 | |
57 | #define PALETTE_TEXT_TOOL 201 | |
58 | ||
59 | #endif | |
60 | // _STUDIO_CSPALETTE_H_ |