1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-12-15 19:47:54 +00:00
|
|
|
// Name: wx/motif/toolbar.h
|
1998-09-18 10:19:10 +00:00
|
|
|
// Purpose: wxToolBar class
|
|
|
|
// Author: Julian Smart
|
1999-12-15 19:47:54 +00:00
|
|
|
// Modified by: 13.12.99 by VZ during toolbar classes reorganization
|
1998-09-18 10:19:10 +00:00
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TOOLBAR_H_
|
|
|
|
#define _WX_TOOLBAR_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-02-05 16:34:33 +00:00
|
|
|
#pragma interface "toolbar.h"
|
1998-09-18 10:19:10 +00:00
|
|
|
#endif
|
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
class WXDLLEXPORT wxToolBar : public wxToolBarBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors and dtor
|
|
|
|
wxToolBar() { Init(); }
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
wxToolBar(wxWindow *parent,
|
2002-02-05 16:34:33 +00:00
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxNO_BORDER | wxTB_HORIZONTAL,
|
|
|
|
const wxString& name = wxToolBarNameStr)
|
1999-12-15 19:47:54 +00:00
|
|
|
{
|
|
|
|
Init();
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
bool Create(wxWindow *parent,
|
2002-02-05 16:34:33 +00:00
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxNO_BORDER | wxTB_HORIZONTAL,
|
|
|
|
const wxString& name = wxToolBarNameStr);
|
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
virtual ~wxToolBar();
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
// override/implement base class virtuals
|
1999-12-16 18:10:38 +00:00
|
|
|
virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
virtual bool Realize();
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
// implementation from now on
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
// find tool by widget
|
1999-12-16 18:10:38 +00:00
|
|
|
wxToolBarToolBase *FindToolByWidget(WXWidget w) const;
|
2002-02-05 16:34:33 +00:00
|
|
|
|
2003-01-16 20:41:07 +00:00
|
|
|
private:
|
1999-12-15 19:47:54 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-15 19:47:54 +00:00
|
|
|
// implement base class pure virtuals
|
1999-12-16 18:10:38 +00:00
|
|
|
virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
|
|
|
|
virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-16 18:10:38 +00:00
|
|
|
virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
|
|
|
|
virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
|
|
|
|
virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
|
2002-02-05 16:34:33 +00:00
|
|
|
|
1999-12-16 18:10:38 +00:00
|
|
|
virtual wxToolBarToolBase *CreateTool(int id,
|
2002-03-26 11:26:04 +00:00
|
|
|
const wxString& label,
|
|
|
|
const wxBitmap& bmpNormal,
|
|
|
|
const wxBitmap& bmpDisabled,
|
|
|
|
wxItemKind kind,
|
|
|
|
wxObject *clientData,
|
|
|
|
const wxString& shortHelp,
|
|
|
|
const wxString& longHelp);
|
1999-12-16 18:10:38 +00:00
|
|
|
virtual wxToolBarToolBase *CreateTool(wxControl *control);
|
2003-01-16 20:41:07 +00:00
|
|
|
|
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
1999-12-15 19:47:54 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBar)
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 16:34:33 +00:00
|
|
|
// _WX_TOOLBAR_H_
|