]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/tbar95.h
resizeable dialogs support
[wxWidgets.git] / include / wx / msw / tbar95.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: tbar95.h
3// Purpose: wxToolBar95 (Windows 95 toolbar) class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_TBAR95_H_
13#define _WX_TBAR95_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "tbar95.h"
17#endif
18
47d67540 19#if wxUSE_BUTTONBAR && wxUSE_TOOLBAR
2bda0e17
KB
20#include "wx/tbarbase.h"
21
22WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr;
23
2bda0e17
KB
24class WXDLLEXPORT wxToolBar95: public wxToolBarBase
25{
26 DECLARE_DYNAMIC_CLASS(wxToolBar95)
27 public:
28 /*
29 * Public interface
30 */
31
32 wxToolBar95(void);
33
debe6624 34 inline wxToolBar95(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
81d66cf3
JS
35 long style = wxNO_BORDER|wxTB_HORIZONTAL,
36 const wxString& name = wxToolBarNameStr)
2bda0e17 37 {
81d66cf3 38 Create(parent, id, pos, size, style, name);
2bda0e17
KB
39 }
40 ~wxToolBar95(void);
41
debe6624 42 bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
81d66cf3
JS
43 long style = wxNO_BORDER|wxTB_HORIZONTAL,
44 const wxString& name = wxToolBarNameStr);
2bda0e17
KB
45
46 // Call default behaviour
57c208c5
JS
47 void OnPaint(wxPaintEvent& WXUNUSED(event)) { Default() ; }
48 void OnSize(wxSizeEvent& WXUNUSED(event)) { Default() ; }
49 void OnKillFocus(wxFocusEvent& WXUNUSED(event)) { Default() ; }
e6460682 50 void OnMouseEvent(wxMouseEvent& event);
2bda0e17
KB
51
52 // Handle wxToolBar95 events
53
54 // If pushedBitmap is NULL, a reversed version of bitmap is
55 // created and used as the pushed/toggled image.
56 // If toggle is TRUE, the button toggles between the two states.
debe6624
JS
57 wxToolBarTool *AddTool(int toolIndex, const wxBitmap& bitmap, const wxBitmap& pushedBitmap = wxNullBitmap,
58 bool toggle = FALSE, long xPos = -1, long yPos = -1, wxObject *clientData = NULL,
2bda0e17
KB
59 const wxString& helpString1 = "", const wxString& helpString2 = "");
60
2bda0e17 61 // Set default bitmap size
81d66cf3 62 void SetToolBitmapSize(const wxSize& size);
debe6624
JS
63 void EnableTool(int toolIndex, bool enable); // additional drawing on enabling
64 void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on
2bda0e17
KB
65 void ClearTools(void);
66
67 // The button size is bigger than the bitmap size
81d66cf3 68 wxSize GetToolSize(void) const;
2bda0e17
KB
69
70 wxSize GetMaxSize(void) const;
4fabb575 71
2bda0e17 72 void GetSize(int *w, int *y) const;
4fabb575 73 wxSize GetSize() const { return wxWindow::GetSize(); }
2bda0e17 74
14b72bf5
JS
75 virtual bool GetToolState(int toolIndex) const;
76
2bda0e17
KB
77 // Add all the buttons: required for Win95.
78 virtual bool CreateTools(void);
debe6624 79 virtual void SetRows(int nRows);
2bda0e17
KB
80 virtual void Layout(void) {}
81
81d66cf3
JS
82 // The post-tool-addition call
83 bool Realize() { return CreateTools(); };
84
2bda0e17 85 // IMPLEMENTATION
fd3f686c
VZ
86 virtual bool MSWCommand(WXUINT param, WXWORD id);
87 virtual bool MSWNotify(WXWPARAM wParam, WXLPARAM lParam, WXLPARAM *result);
2bda0e17
KB
88
89 // Responds to colour changes
90 void OnSysColourChanged(wxSysColourChangedEvent& event);
91
92protected:
93 WXHBITMAP m_hBitmap;
94
95DECLARE_EVENT_TABLE()
96};
97
47d67540 98#endif // wxUSE_TOOL/BUTTONBAR
2bda0e17 99#endif
bbcdf8bc 100 // _WX_TBAR95_H_