X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/174b10af3488cc926c5f0336db457f125a506f51..d0f063020e6fb1b1a660952d0844071e0df24324:/include/wx/gtk1/stattext.h diff --git a/include/wx/gtk1/stattext.h b/include/wx/gtk1/stattext.h index ca98ba9015..6fdfaea16d 100644 --- a/include/wx/gtk1/stattext.h +++ b/include/wx/gtk1/stattext.h @@ -1,40 +1,20 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: stattext.h +// Name: wx/gtk1/stattext.h // Purpose: // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKSTATICTEXTH__ #define __GTKSTATICTEXTH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface -#endif - -#include "wx/defs.h" -#include "wx/object.h" -#include "wx/list.h" -#include "wx/control.h" - -//----------------------------------------------------------------------------- -// classes -//----------------------------------------------------------------------------- - -class wxStaticText; - -//----------------------------------------------------------------------------- -// global data -//----------------------------------------------------------------------------- - //----------------------------------------------------------------------------- // wxStaticText //----------------------------------------------------------------------------- -class wxStaticText : public wxControl +class WXDLLIMPEXP_CORE wxStaticText : public wxStaticTextBase { public: wxStaticText(); @@ -42,7 +22,7 @@ public: wxWindowID id, const wxString &label, const wxPoint &pos = wxDefaultPosition, - const wxSize &size = wxDefaultSize, + const wxSize &size = wxDefaultSize, long style = 0, const wxString &name = wxStaticTextNameStr ); @@ -50,22 +30,24 @@ public: wxWindowID id, const wxString &label, const wxPoint &pos = wxDefaultPosition, - const wxSize &size = wxDefaultSize, + const wxSize &size = wxDefaultSize, long style = 0, const wxString &name = wxStaticTextNameStr ); - wxString GetLabel() const; - void SetLabel( const wxString &label ); + virtual wxString GetLabel() const; + virtual void SetLabel( const wxString &label ); + + virtual bool SetFont( const wxFont &font ); + virtual bool SetForegroundColour( const wxColour& colour ); - bool SetFont( const wxFont &font ); - bool SetForegroundColour( const wxColour& colour ); - - // implementation - // -------------- - - void ApplyWidgetStyle(); + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); protected: + virtual void DoSetSize(int x, int y, + int width, int height, + int sizeFlags = wxSIZE_AUTO); + virtual wxSize DoGetBestSize() const; DECLARE_DYNAMIC_CLASS(wxStaticText)