1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: stattext.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#ifndef _WX_GTK_STATTEXT_H_
|
|
|
|
#define _WX_GTK_STATTEXT_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxStaticText
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxStaticText : public wxControl
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-11-19 21:01:20 +00:00
|
|
|
public:
|
|
|
|
wxStaticText();
|
|
|
|
wxStaticText(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString &label,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString &name = wxStaticTextNameStr );
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString &label,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString &name = wxStaticTextNameStr );
|
|
|
|
|
|
|
|
wxString GetLabel() const;
|
1998-05-20 14:01:55 +00:00
|
|
|
void SetLabel( const wxString &label );
|
1999-11-19 21:01:20 +00:00
|
|
|
|
2004-06-21 22:58:13 +00:00
|
|
|
bool SetFont( const wxFont &font );
|
2004-03-29 18:07:31 +00:00
|
|
|
bool SetForegroundColour( const wxColour& colour );
|
2004-05-06 17:26:25 +00:00
|
|
|
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2000-01-03 11:42:49 +00:00
|
|
|
|
2005-08-17 13:47:35 +00:00
|
|
|
// see wx/stattext.h
|
|
|
|
void Wrap(int width);
|
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
// implementation
|
2000-01-03 11:42:49 +00:00
|
|
|
// --------------
|
1999-11-19 21:01:20 +00:00
|
|
|
|
|
|
|
protected:
|
2006-03-12 14:21:19 +00:00
|
|
|
virtual bool GTKWidgetNeedsMnemonic() const;
|
|
|
|
virtual void GTKWidgetDoSetMnemonic(GtkWidget* w);
|
|
|
|
|
2005-04-07 22:52:32 +00:00
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
|
|
|
|
2000-01-03 11:42:49 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticText)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#endif // _WX_GTK_STATTEXT_H_
|