2002-02-24 14:49:36 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/toolbar.h
|
|
|
|
// Purpose: wxToolBar declaration
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10.09.00
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2002-02-24 14:49:36 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_TOOLBAR_H_
|
|
|
|
#define _WX_UNIV_TOOLBAR_H_
|
|
|
|
|
2002-02-27 16:42:48 -05:00
|
|
|
#include "wx/button.h" // for wxStdButtonInputHandler
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxToolBarTool;
|
2002-02-24 14:49:36 -05:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2002-02-27 16:42:48 -05:00
|
|
|
// the actions supported by this control
|
2002-02-24 14:49:36 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-02-27 16:42:48 -05:00
|
|
|
#define wxACTION_TOOLBAR_TOGGLE wxACTION_BUTTON_TOGGLE
|
|
|
|
#define wxACTION_TOOLBAR_PRESS wxACTION_BUTTON_PRESS
|
|
|
|
#define wxACTION_TOOLBAR_RELEASE wxACTION_BUTTON_RELEASE
|
|
|
|
#define wxACTION_TOOLBAR_CLICK wxACTION_BUTTON_CLICK
|
|
|
|
#define wxACTION_TOOLBAR_ENTER _T("enter") // highlight the tool
|
|
|
|
#define wxACTION_TOOLBAR_LEAVE _T("leave") // unhighlight the tool
|
2002-02-24 14:49:36 -05:00
|
|
|
|
2002-02-27 16:42:48 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxToolBar
|
|
|
|
// ----------------------------------------------------------------------------
|
2002-02-24 14:49:36 -05:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxToolBar : public wxToolBarBase
|
2006-09-14 15:36:47 -04:00
|
|
|
{
|
2002-02-24 14:49:36 -05:00
|
|
|
public:
|
|
|
|
// construction/destruction
|
2004-01-15 08:49:22 -05:00
|
|
|
wxToolBar() { Init(); }
|
2002-02-27 16:42:48 -05:00
|
|
|
wxToolBar(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
2004-01-15 08:49:22 -05:00
|
|
|
const wxString& name = wxToolBarNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
2002-02-24 14:49:36 -05:00
|
|
|
|
|
|
|
bool Create( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxToolBarNameStr );
|
2006-09-14 15:36:47 -04:00
|
|
|
|
2002-02-27 16:42:48 -05:00
|
|
|
virtual ~wxToolBar();
|
2002-02-24 14:49:36 -05:00
|
|
|
|
|
|
|
virtual bool Realize();
|
|
|
|
|
2006-05-31 14:15:42 -04:00
|
|
|
virtual void SetWindowStyleFlag( long style );
|
|
|
|
|
2002-02-24 14:49:36 -05:00
|
|
|
virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
|
|
|
|
|
|
|
|
virtual void SetToolShortHelp(int id, const wxString& helpString);
|
|
|
|
|
2002-03-30 16:18:39 -05:00
|
|
|
virtual void SetMargins(int x, int y);
|
|
|
|
void SetMargins(const wxSize& size)
|
|
|
|
{ SetMargins((int) size.x, (int) size.y); }
|
2006-02-08 16:47:09 -05:00
|
|
|
|
|
|
|
virtual bool PerformAction(const wxControlAction& action,
|
|
|
|
long numArg = -1,
|
|
|
|
const wxString& strArg = wxEmptyString);
|
2006-09-14 15:36:47 -04:00
|
|
|
static wxInputHandler *GetStdInputHandler(wxInputHandler *handlerDef);
|
|
|
|
virtual wxInputHandler *DoGetStdInputHandler(wxInputHandler *handlerDef)
|
|
|
|
{
|
|
|
|
return GetStdInputHandler(handlerDef);
|
|
|
|
}
|
|
|
|
|
2002-02-24 14:49:36 -05:00
|
|
|
protected:
|
|
|
|
// 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,
|
2002-03-26 06:30:45 -05:00
|
|
|
const wxString& label,
|
|
|
|
const wxBitmap& bmpNormal,
|
|
|
|
const wxBitmap& bmpDisabled,
|
|
|
|
wxItemKind kind,
|
2002-02-24 14:49:36 -05:00
|
|
|
wxObject *clientData,
|
2002-03-26 06:30:45 -05:00
|
|
|
const wxString& shortHelp,
|
|
|
|
const wxString& longHelp);
|
2007-03-18 19:13:18 -04:00
|
|
|
virtual wxToolBarToolBase *CreateTool(wxControl *control,
|
|
|
|
const wxString& label);
|
2002-02-24 18:04:46 -05:00
|
|
|
|
2002-02-27 16:42:48 -05:00
|
|
|
virtual wxSize DoGetBestClientSize() const;
|
2002-12-10 16:41:31 -05:00
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
2002-02-27 16:42:48 -05:00
|
|
|
virtual void DoDraw(wxControlRenderer *renderer);
|
|
|
|
|
|
|
|
// get the bounding rect for the given tool
|
|
|
|
wxRect GetToolRect(wxToolBarToolBase *tool) const;
|
|
|
|
|
|
|
|
// redraw the given tool
|
|
|
|
void RefreshTool(wxToolBarToolBase *tool);
|
|
|
|
|
|
|
|
// (re)calculate the tool positions, should only be called if it is
|
2004-08-10 09:08:43 -04:00
|
|
|
// necessary to do it, i.e. m_needsLayout == true
|
2002-02-27 16:42:48 -05:00
|
|
|
void DoLayout();
|
2006-09-14 15:36:47 -04:00
|
|
|
|
2002-02-27 16:42:48 -05:00
|
|
|
// get the rect limits depending on the orientation: top/bottom for a
|
|
|
|
// vertical toolbar, left/right for a horizontal one
|
|
|
|
void GetRectLimits(const wxRect& rect, wxCoord *start, wxCoord *end) const;
|
|
|
|
|
2002-02-24 14:49:36 -05:00
|
|
|
private:
|
2002-02-27 16:42:48 -05:00
|
|
|
// have we calculated the positions of our tools?
|
|
|
|
bool m_needsLayout;
|
|
|
|
|
|
|
|
// the width of a separator
|
|
|
|
wxCoord m_widthSeparator;
|
|
|
|
|
|
|
|
// the total size of all toolbar elements
|
|
|
|
wxCoord m_maxWidth,
|
|
|
|
m_maxHeight;
|
|
|
|
|
2002-03-30 16:18:39 -05:00
|
|
|
private:
|
2002-02-27 16:42:48 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBar)
|
|
|
|
};
|
|
|
|
|
2002-02-24 14:49:36 -05:00
|
|
|
#endif // _WX_UNIV_TOOLBAR_H_
|