1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-23 02:28:01 +00:00
|
|
|
// Name: wx/gtk1/stattext.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2006-10-17 14:44:52 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKSTATICTEXTH__
|
|
|
|
#define __GTKSTATICTEXTH__
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxStaticText
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-04-11 12:13:36 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxStaticText : public wxStaticTextBase
|
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,
|
2006-01-23 02:28:01 +00:00
|
|
|
const wxSize &size = wxDefaultSize,
|
1999-11-19 21:01:20 +00:00
|
|
|
long style = 0,
|
|
|
|
const wxString &name = wxStaticTextNameStr );
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString &label,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
2006-01-23 02:28:01 +00:00
|
|
|
const wxSize &size = wxDefaultSize,
|
1999-11-19 21:01:20 +00:00
|
|
|
long style = 0,
|
|
|
|
const wxString &name = wxStaticTextNameStr );
|
|
|
|
|
2007-04-11 12:13:36 +00:00
|
|
|
virtual wxString GetLabel() const;
|
|
|
|
virtual void SetLabel( const wxString &label );
|
1999-11-19 21:01:20 +00:00
|
|
|
|
2007-04-11 12:13:36 +00:00
|
|
|
virtual bool SetFont( const wxFont &font );
|
|
|
|
virtual bool SetForegroundColour( const wxColour& colour );
|
2004-05-06 17:26:25 +00:00
|
|
|
|
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2006-01-23 02:28:01 +00:00
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
protected:
|
2005-04-07 22:52:32 +00:00
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
2006-01-23 02:28:01 +00:00
|
|
|
|
2000-01-03 11:42:49 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxStaticText);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2007-04-11 12:13:36 +00:00
|
|
|
#endif // __GTKSTATICTEXTH__
|