1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: control.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKCONTROLH__
|
|
|
|
#define __GTKCONTROLH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-05-20 14:01:55 +00:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/window.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxControl;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxControl
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-10-18 15:45:28 +00:00
|
|
|
class wxControl : public wxControlBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-07-23 16:05:14 +00:00
|
|
|
public:
|
1999-07-26 23:02:32 +00:00
|
|
|
wxControl();
|
2000-01-04 17:20:21 +00:00
|
|
|
wxControl(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxControlNameStr)
|
|
|
|
{
|
2000-01-06 16:47:48 +00:00
|
|
|
Create(parent, id, pos, size, style, validator, name);
|
2000-01-04 17:20:21 +00:00
|
|
|
}
|
1999-12-23 19:23:13 +00:00
|
|
|
|
2000-01-04 17:20:21 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxControlNameStr);
|
1998-07-23 16:05:14 +00:00
|
|
|
|
|
|
|
// this function will filter out '&' characters and will put the accelerator
|
1999-07-26 23:02:32 +00:00
|
|
|
// char (the one immediately after '&') into m_chAccel (TODO not yet)
|
|
|
|
virtual void SetLabel( const wxString &label );
|
|
|
|
virtual wxString GetLabel() const;
|
2004-06-19 01:35:10 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
virtual wxVisualAttributes GetDefaultAttributes() const;
|
|
|
|
|
1998-07-23 16:05:14 +00:00
|
|
|
protected:
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
2004-05-04 07:09:32 +00:00
|
|
|
void PostCreation(const wxSize& size);
|
|
|
|
|
2003-03-04 23:34:52 +00:00
|
|
|
#ifdef __WXGTK20__
|
|
|
|
wxString PrepareLabelMnemonics( const wxString &label ) const;
|
|
|
|
#endif
|
1999-11-19 21:01:20 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
// These are used by GetDefaultAttributes
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetDefaultAttributesFromGTKWidget(GtkWidget* widget,
|
|
|
|
bool useBase = false,
|
|
|
|
int state = -1);
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(void),
|
|
|
|
bool useBase = false,
|
|
|
|
int state = -1);
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(const gchar*),
|
|
|
|
bool useBase = false,
|
|
|
|
int state = -1);
|
|
|
|
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(GtkAdjustment*),
|
|
|
|
bool useBase = false,
|
|
|
|
int state = -1);
|
|
|
|
|
|
|
|
// Widgets that use the style->base colour for the BG colour should
|
|
|
|
// override this and return true.
|
|
|
|
virtual bool UseGTKStyleBase() const { return false; }
|
|
|
|
|
1999-07-26 23:02:32 +00:00
|
|
|
wxString m_label;
|
|
|
|
char m_chAccel; // enabled to avoid breaking binary compatibility later on
|
1999-12-23 19:23:13 +00:00
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxControl)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKCONTROLH__
|