]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/tbargtk.h
adjust so that mono bitmaps don't get an alpha channel
[wxWidgets.git] / include / wx / gtk / tbargtk.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: tbargtk.h
3// Purpose: GTK toolbar
4// Author: Robert Roebling
c801d85f
KB
5// RCS-ID: $Id$
6// Copyright: (c) Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
8a0681f9
VZ
10#ifndef _WX_GTK_TBARGTK_H_
11#define _WX_GTK_TBARGTK_H_
c801d85f 12
dcf924a3
RR
13#if wxUSE_TOOLBAR
14
8a0681f9 15// ----------------------------------------------------------------------------
716b7364 16// wxToolBar
8a0681f9 17// ----------------------------------------------------------------------------
c801d85f 18
20123d49 19class WXDLLIMPEXP_CORE wxToolBar : public wxToolBarBase
c801d85f 20{
9b7e522a 21public:
8a0681f9
VZ
22 // construction/destruction
23 wxToolBar() { Init(); }
24 wxToolBar( wxWindow *parent,
25 wxWindowID id,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize,
6a1b3ead 28 long style = wxTB_HORIZONTAL,
8a0681f9
VZ
29 const wxString& name = wxToolBarNameStr )
30 {
31 Init();
32
33 Create(parent, id, pos, size, style, name);
34 }
35
36 bool Create( wxWindow *parent,
37 wxWindowID id,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = 0,
41 const wxString& name = wxToolBarNameStr );
42
43 virtual ~wxToolBar();
44
45 // override base class virtuals
debe6624 46 virtual void SetMargins(int x, int y);
debe6624 47 virtual void SetToolSeparation(int separation);
8a0681f9
VZ
48
49 virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
50
a1f79c1e
VZ
51 virtual void SetToolShortHelp(int id, const wxString& helpString);
52
e76c0b5f
VZ
53 virtual void SetWindowStyleFlag( long style );
54
9d522606
RD
55 static wxVisualAttributes
56 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
57
8a0681f9
VZ
58 // implementation from now on
59 // --------------------------
60
c801d85f 61 GtkToolbar *m_toolbar;
8a0681f9 62
9864c56d 63 bool m_blockEvent;
8a0681f9 64
9b7e522a 65 void OnInternalIdle();
8a0681f9
VZ
66
67protected:
68 // common part of all ctors
69 void Init();
70
e76c0b5f
VZ
71 // set the GTK toolbar style and orientation
72 void GtkSetStyle();
73
48468900
RR
74 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
75
8a0681f9
VZ
76 // implement base class pure virtuals
77 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
78 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
79
80 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
81 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
82 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
83
84 virtual wxToolBarToolBase *CreateTool(int id,
e76c0b5f 85 const wxString& label,
8a0681f9
VZ
86 const wxBitmap& bitmap1,
87 const wxBitmap& bitmap2,
e76c0b5f 88 wxItemKind kind,
8a0681f9
VZ
89 wxObject *clientData,
90 const wxString& shortHelpString,
91 const wxString& longHelpString);
92 virtual wxToolBarToolBase *CreateTool(wxControl *control);
93
9b7e522a 94private:
9b7e522a 95 DECLARE_DYNAMIC_CLASS(wxToolBar)
c801d85f
KB
96};
97
8a0681f9 98#endif // wxUSE_TOOLBAR
dcf924a3 99
c801d85f 100#endif
8a0681f9 101 // _WX_GTK_TBARGTK_H_