1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: toolbar.h
|
|
|
|
// Purpose: wxToolBar class
|
|
|
|
// Author: AUTHOR
|
|
|
|
// Modified by:
|
|
|
|
// Created: ??/??/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) AUTHOR
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TOOLBAR_H_
|
|
|
|
#define _WX_TOOLBAR_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "toolbar.h"
|
|
|
|
#endif
|
|
|
|
|
1999-11-05 09:16:09 +00:00
|
|
|
#if wxUSE_TOOLBAR
|
|
|
|
|
1999-01-01 16:05:26 +00:00
|
|
|
#include "wx/tbarbase.h"
|
1999-11-05 09:16:09 +00:00
|
|
|
#include "wx/dynarray.h"
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxToolBar: public wxToolBarBase
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBar)
|
|
|
|
public:
|
|
|
|
/*
|
|
|
|
* Public interface
|
|
|
|
*/
|
|
|
|
|
2000-01-13 07:57:22 +00:00
|
|
|
wxToolBar() { Init(); }
|
|
|
|
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
inline wxToolBar(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxNO_BORDER|wxTB_HORIZONTAL,
|
|
|
|
const wxString& name = wxToolBarNameStr)
|
|
|
|
{
|
2000-01-13 07:57:22 +00:00
|
|
|
Init();
|
1999-01-01 16:05:26 +00:00
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
~wxToolBar();
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxNO_BORDER|wxTB_HORIZONTAL,
|
|
|
|
const wxString& name = wxToolBarNameStr);
|
|
|
|
|
2000-01-13 07:57:22 +00:00
|
|
|
// override/implement base class virtuals
|
|
|
|
virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2000-01-13 07:57:22 +00:00
|
|
|
virtual bool Realize();
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2000-01-13 07:57:22 +00:00
|
|
|
virtual void SetToolBitmapSize(const wxSize& size);
|
|
|
|
virtual wxSize GetToolSize() const;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2000-01-13 07:57:22 +00:00
|
|
|
virtual void SetRows(int nRows);
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
// Add all the buttons
|
|
|
|
|
1999-11-05 09:16:09 +00:00
|
|
|
virtual void MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ;
|
2000-08-09 11:02:59 +00:00
|
|
|
virtual wxString MacGetToolTipString( wxPoint &where ) ;
|
|
|
|
void OnPaint(wxPaintEvent& event) ;
|
|
|
|
void OnMouse(wxMouseEvent& event) ;
|
2001-05-29 14:37:43 +00:00
|
|
|
virtual void MacSuperChangedPosition() ;
|
1999-01-01 16:05:26 +00:00
|
|
|
protected:
|
2000-01-13 07:57:22 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
|
|
|
|
virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
|
|
|
|
|
|
|
|
virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
|
|
|
|
virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
|
|
|
|
virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
|
|
|
|
|
|
|
|
virtual wxToolBarToolBase *CreateTool(int id,
|
|
|
|
const wxBitmap& bitmap1,
|
|
|
|
const wxBitmap& bitmap2,
|
|
|
|
bool toggle,
|
|
|
|
wxObject *clientData,
|
|
|
|
const wxString& shortHelpString,
|
|
|
|
const wxString& longHelpString);
|
|
|
|
virtual wxToolBarToolBase *CreateTool(wxControl *control);
|
|
|
|
|
1999-11-05 09:16:09 +00:00
|
|
|
wxArrayPtrVoid m_macToolHandles ;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2000-01-13 07:57:22 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1999-01-01 16:05:26 +00:00
|
|
|
};
|
|
|
|
|
1999-11-05 09:16:09 +00:00
|
|
|
#endif // wxUSE_TOOLBAR
|
|
|
|
|
1999-01-01 16:05:26 +00:00
|
|
|
#endif
|
|
|
|
// _WX_TOOLBAR_H_
|