1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-12-15 14:47:54 -05:00
|
|
|
// Name: wx/motif/toolbar.h
|
1998-09-18 06:19:10 -04:00
|
|
|
// Purpose: wxToolBar class
|
|
|
|
// Author: Julian Smart
|
1999-12-15 14:47:54 -05:00
|
|
|
// Modified by: 13.12.99 by VZ during toolbar classes reorganization
|
1998-09-18 06:19:10 -04:00
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TOOLBAR_H_
|
|
|
|
#define _WX_TOOLBAR_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-12-15 14:47:54 -05:00
|
|
|
#pragma interface "toolbar.h"
|
1998-09-18 06:19:10 -04:00
|
|
|
#endif
|
|
|
|
|
1999-12-15 14:47:54 -05:00
|
|
|
class WXDLLEXPORT wxToolBar : public wxToolBarBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors and dtor
|
|
|
|
wxToolBar() { Init(); }
|
1998-09-18 06:19:10 -04:00
|
|
|
|
1999-12-15 14:47:54 -05:00
|
|
|
wxToolBar(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxNO_BORDER | wxTB_HORIZONTAL,
|
|
|
|
const wxString& name = wxToolBarNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
1998-09-18 06:19:10 -04:00
|
|
|
|
1999-12-15 14:47:54 -05:00
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxNO_BORDER | wxTB_HORIZONTAL,
|
|
|
|
const wxString& name = wxToolBarNameStr);
|
|
|
|
|
|
|
|
virtual ~wxToolBar();
|
|
|
|
|
|
|
|
// override/implement base class virtuals
|
|
|
|
virtual wxToolBarTool *FindToolForPosition(wxCoord x, wxCoord y) const;
|
|
|
|
|
|
|
|
virtual bool Realize();
|
|
|
|
|
|
|
|
// implementation from now on
|
|
|
|
|
|
|
|
// find tool by widget
|
|
|
|
wxToolBarTool *FindToolByWidget(WXWidget w) const;
|
1998-11-25 16:42:56 -05:00
|
|
|
|
1998-09-18 06:19:10 -04:00
|
|
|
protected:
|
1999-12-15 14:47:54 -05:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual bool DoInsertTool(size_t pos, wxToolBarTool *tool);
|
|
|
|
virtual bool DoDeleteTool(size_t pos, wxToolBarTool *tool);
|
1998-09-18 06:19:10 -04:00
|
|
|
|
1999-12-15 14:47:54 -05:00
|
|
|
virtual void DoEnableTool(wxToolBarTool *tool, bool enable);
|
|
|
|
virtual void DoToggleTool(wxToolBarTool *tool, bool toggle);
|
|
|
|
virtual void DoSetToggle(wxToolBarTool *tool, bool toggle);
|
1998-10-22 10:08:14 -04:00
|
|
|
|
1999-12-15 14:47:54 -05:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBar)
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_TOOLBAR_H_
|