2002-02-24 19:49:36 +00: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
|
2003-03-17 10:34:04 +00:00
|
|
|
// Licence: wxWindows licence
|
2002-02-24 19:49:36 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_TOOLBAR_H_
|
|
|
|
#define _WX_UNIV_TOOLBAR_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-02-24 19:49:36 +00:00
|
|
|
#pragma interface "univtoolbar.h"
|
|
|
|
#endif
|
|
|
|
|
2002-02-27 21:42:48 +00:00
|
|
|
#include "wx/button.h" // for wxStdButtonInputHandler
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxToolBarTool;
|
2002-02-24 19:49:36 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2002-02-27 21:42:48 +00:00
|
|
|
// the actions supported by this control
|
2002-02-24 19:49:36 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-02-27 21:42:48 +00: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 19:49:36 +00:00
|
|
|
|
2002-02-27 21:42:48 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxToolBar
|
|
|
|
// ----------------------------------------------------------------------------
|
2002-02-24 19:49:36 +00:00
|
|
|
|
2002-02-27 21:42:48 +00:00
|
|
|
class WXDLLEXPORT wxToolBar : public wxToolBarBase
|
2002-02-24 19:49:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// construction/destruction
|
2004-01-15 13:49:22 +00:00
|
|
|
wxToolBar() { Init(); }
|
2002-02-27 21:42:48 +00:00
|
|
|
wxToolBar(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
2004-01-15 13:49:22 +00:00
|
|
|
const wxString& name = wxToolBarNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
2002-02-24 19:49:36 +00:00
|
|
|
|
|
|
|
bool Create( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxToolBarNameStr );
|
|
|
|
|
2002-02-27 21:42:48 +00:00
|
|
|
virtual ~wxToolBar();
|
2002-02-24 19:49:36 +00:00
|
|
|
|
|
|
|
virtual bool Realize();
|
|
|
|
|
|
|
|
virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
|
|
|
|
|
|
|
|
virtual void SetToolShortHelp(int id, const wxString& helpString);
|
|
|
|
|
2002-03-30 21:18:39 +00:00
|
|
|
virtual void SetMargins(int x, int y);
|
|
|
|
void SetMargins(const wxSize& size)
|
|
|
|
{ SetMargins((int) size.x, (int) size.y); }
|
|
|
|
|
2002-02-24 19:49:36 +00: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 11:30:45 +00:00
|
|
|
const wxString& label,
|
|
|
|
const wxBitmap& bmpNormal,
|
|
|
|
const wxBitmap& bmpDisabled,
|
|
|
|
wxItemKind kind,
|
2002-02-24 19:49:36 +00:00
|
|
|
wxObject *clientData,
|
2002-03-26 11:30:45 +00:00
|
|
|
const wxString& shortHelp,
|
|
|
|
const wxString& longHelp);
|
2002-02-24 19:49:36 +00:00
|
|
|
virtual wxToolBarToolBase *CreateTool(wxControl *control);
|
2002-02-24 23:04:46 +00:00
|
|
|
|
2002-02-27 21:42:48 +00:00
|
|
|
// implement wxUniversal methods
|
|
|
|
virtual bool PerformAction(const wxControlAction& action,
|
|
|
|
long numArg = -1,
|
|
|
|
const wxString& strArg = wxEmptyString);
|
|
|
|
virtual wxSize DoGetBestClientSize() const;
|
2002-12-10 21:41:31 +00:00
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
2002-02-27 21:42:48 +00: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
|
|
|
|
// necessary to do it, i.e. m_needsLayout == TRUE
|
|
|
|
void DoLayout();
|
2002-02-24 19:49:36 +00:00
|
|
|
|
2002-02-27 21:42:48 +00: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 19:49:36 +00:00
|
|
|
private:
|
2002-02-27 21:42:48 +00: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 21:18:39 +00:00
|
|
|
private:
|
2002-02-27 21:42:48 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBar)
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStdToolbarInputHandler: translates SPACE and ENTER keys and the left mouse
|
|
|
|
// click into button press/release actions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-03-30 21:18:39 +00:00
|
|
|
class WXDLLEXPORT wxStdToolbarInputHandler : public wxStdInputHandler
|
2002-02-27 21:42:48 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStdToolbarInputHandler(wxInputHandler *inphand);
|
|
|
|
|
|
|
|
virtual bool HandleKey(wxInputConsumer *consumer,
|
|
|
|
const wxKeyEvent& event,
|
|
|
|
bool pressed);
|
2002-02-28 21:11:41 +00:00
|
|
|
virtual bool HandleMouse(wxInputConsumer *consumer,
|
|
|
|
const wxMouseEvent& event);
|
2002-02-27 21:42:48 +00:00
|
|
|
virtual bool HandleMouseMove(wxInputConsumer *consumer, const wxMouseEvent& event);
|
|
|
|
virtual bool HandleFocus(wxInputConsumer *consumer, const wxFocusEvent& event);
|
|
|
|
virtual bool HandleActivation(wxInputConsumer *consumer, bool activated);
|
2002-03-30 21:18:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxWindow *m_winCapture;
|
|
|
|
wxToolBarToolBase *m_toolCapture;
|
|
|
|
wxToolBarToolBase *m_toolLast;
|
2002-02-24 19:49:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_TOOLBAR_H_
|