1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tbargtk.h
|
|
|
|
// Purpose: GTK toolbar
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __TBARGTKH__
|
|
|
|
#define __TBARGTKH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/control.h"
|
1999-01-04 13:52:06 +00:00
|
|
|
#include "wx/bitmap.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxToolBarTool;
|
1998-07-22 22:13:31 +00:00
|
|
|
class wxToolBar;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define wxTOOL_STYLE_BUTTON 1
|
|
|
|
#define wxTOOL_STYLE_SEPARATOR 2
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern const char *wxToolBarNameStr;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxToolBarTool
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxToolBarTool: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBarTool)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxToolBarTool(void) {};
|
1998-07-22 22:13:31 +00:00
|
|
|
wxToolBarTool( wxToolBar *owner, int theIndex = 0,
|
1998-07-04 15:17:59 +00:00
|
|
|
const wxBitmap& bitmap1 = wxNullBitmap, const wxBitmap& bitmap2 = wxNullBitmap,
|
1998-08-23 03:22:56 +00:00
|
|
|
bool toggle = FALSE, wxObject *clientData = (wxObject *) NULL,
|
1998-08-13 09:11:23 +00:00
|
|
|
const wxString& shortHelpString = "", const wxString& longHelpString = "",
|
1998-08-23 03:22:56 +00:00
|
|
|
GtkWidget *item = (GtkWidget *) NULL );
|
1998-05-20 14:01:55 +00:00
|
|
|
~wxToolBarTool(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
int m_toolStyle;
|
|
|
|
wxObject *m_clientData;
|
|
|
|
int m_index;
|
|
|
|
bool m_toggleState;
|
|
|
|
bool m_isToggle;
|
|
|
|
bool m_deleteSecondBitmap;
|
|
|
|
bool m_enabled;
|
|
|
|
wxBitmap m_bitmap1;
|
|
|
|
wxBitmap m_bitmap2;
|
|
|
|
bool m_isMenuCommand;
|
|
|
|
wxString m_shortHelpString;
|
|
|
|
wxString m_longHelpString;
|
1998-07-22 22:13:31 +00:00
|
|
|
wxToolBar *m_owner;
|
1998-08-13 09:11:23 +00:00
|
|
|
GtkWidget *m_item;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
1998-07-22 22:13:31 +00:00
|
|
|
// wxToolBar
|
1998-05-20 14:01:55 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1998-07-22 22:13:31 +00:00
|
|
|
class wxToolBar: public wxControl
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-07-22 22:13:31 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxToolBar)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
1998-07-22 22:13:31 +00:00
|
|
|
wxToolBar(void);
|
|
|
|
wxToolBar( wxWindow *parent, wxWindowID id,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
long style = 0, const wxString& name = wxToolBarNameStr );
|
1998-07-22 22:13:31 +00:00
|
|
|
~wxToolBar(void);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
long style = 0, const wxString& name = wxToolBarNameStr);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Only allow toggle if returns TRUE. Call when left button up.
|
|
|
|
virtual bool OnLeftClick(int toolIndex, bool toggleDown);
|
|
|
|
|
|
|
|
// Call when right button down.
|
|
|
|
virtual void OnRightClick(int toolIndex, float x, float y);
|
|
|
|
|
|
|
|
// Called when the mouse cursor enters a tool bitmap.
|
|
|
|
// Argument is -1 if mouse is exiting the toolbar.
|
|
|
|
virtual void OnMouseEnter(int toolIndex);
|
|
|
|
|
|
|
|
// If pushedBitmap is NULL, a reversed version of bitmap is
|
|
|
|
// created and used as the pushed/toggled image.
|
|
|
|
// If toggle is TRUE, the button toggles between the two states.
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual wxToolBarTool *AddTool( int toolIndex, const wxBitmap& bitmap,
|
|
|
|
const wxBitmap& pushedBitmap = wxNullBitmap, bool toggle = FALSE,
|
1998-08-23 03:22:56 +00:00
|
|
|
float xPos = -1, float yPos = -1, wxObject *clientData = (wxObject *)NULL,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxString& helpString1 = "", const wxString& helpString2 = "");
|
|
|
|
virtual void AddSeparator(void);
|
|
|
|
virtual void ClearTools(void);
|
1998-07-24 19:05:25 +00:00
|
|
|
|
1998-12-16 12:17:14 +00:00
|
|
|
virtual bool Realize(void);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void EnableTool(int toolIndex, bool enable);
|
|
|
|
virtual void ToggleTool(int toolIndex, bool toggle); // toggle is TRUE if toggled on
|
|
|
|
virtual wxObject *GetToolClientData(int index) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual bool GetToolState(int toolIndex) const;
|
|
|
|
virtual bool GetToolEnabled(int toolIndex) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetMargins(int x, int y);
|
1998-05-20 14:01:55 +00:00
|
|
|
void SetMargins(const wxSize& size) { SetMargins(size.x, size.y); };
|
1998-12-16 12:17:14 +00:00
|
|
|
virtual wxSize GetToolMargins(void) { return wxSize(m_xMargin, m_yMargin); }
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetToolPacking(int packing);
|
|
|
|
virtual void SetToolSeparation(int separation);
|
1998-12-16 12:17:14 +00:00
|
|
|
virtual int GetToolPacking();
|
|
|
|
virtual int GetToolSeparation();
|
|
|
|
|
|
|
|
virtual wxString GetToolLongHelp(int toolIndex);
|
|
|
|
virtual wxString GetToolShortHelp(int toolIndex);
|
|
|
|
|
|
|
|
virtual void SetToolLongHelp(int toolIndex, const wxString& helpString);
|
|
|
|
virtual void SetToolShortHelp(int toolIndex, const wxString& helpString);
|
1998-07-04 15:17:59 +00:00
|
|
|
|
1998-12-13 09:14:35 +00:00
|
|
|
// implementation
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
GtkToolbar *m_toolbar;
|
1998-12-16 12:17:14 +00:00
|
|
|
int m_separation;
|
1998-05-20 14:01:55 +00:00
|
|
|
wxList m_tools;
|
1998-12-16 12:17:14 +00:00
|
|
|
|
1999-01-02 19:13:25 +00:00
|
|
|
GdkColor *m_fg;
|
|
|
|
GdkColor *m_bg;
|
1998-12-16 12:17:14 +00:00
|
|
|
int m_xMargin;
|
|
|
|
int m_yMargin;
|
|
|
|
bool m_hasToolAlready;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// __TBARGTKH__
|
|
|
|
|