]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/gtk/stattext.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_GTK_STATTEXT_H_ | |
11 | #define _WX_GTK_STATTEXT_H_ | |
12 | ||
13 | //----------------------------------------------------------------------------- | |
14 | // wxStaticText | |
15 | //----------------------------------------------------------------------------- | |
16 | ||
17 | class WXDLLIMPEXP_CORE wxStaticText : public wxStaticTextBase | |
18 | { | |
19 | public: | |
20 | wxStaticText(); | |
21 | wxStaticText(wxWindow *parent, | |
22 | wxWindowID id, | |
23 | const wxString &label, | |
24 | const wxPoint &pos = wxDefaultPosition, | |
25 | const wxSize &size = wxDefaultSize, | |
26 | long style = 0, | |
27 | const wxString &name = wxStaticTextNameStr ); | |
28 | ||
29 | bool Create(wxWindow *parent, | |
30 | wxWindowID id, | |
31 | const wxString &label, | |
32 | const wxPoint &pos = wxDefaultPosition, | |
33 | const wxSize &size = wxDefaultSize, | |
34 | long style = 0, | |
35 | const wxString &name = wxStaticTextNameStr ); | |
36 | ||
37 | wxString GetLabel() const; | |
38 | void SetLabel( const wxString &label ); | |
39 | ||
40 | bool SetFont( const wxFont &font ); | |
41 | bool SetForegroundColour( const wxColour& colour ); | |
42 | ||
43 | static wxVisualAttributes | |
44 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
45 | ||
46 | ||
47 | ||
48 | // implementation | |
49 | // -------------- | |
50 | ||
51 | protected: | |
52 | virtual bool GTKWidgetNeedsMnemonic() const; | |
53 | virtual void GTKWidgetDoSetMnemonic(GtkWidget* w); | |
54 | ||
55 | virtual void DoSetSize(int x, int y, | |
56 | int width, int height, | |
57 | int sizeFlags = wxSIZE_AUTO); | |
58 | ||
59 | virtual wxSize DoGetBestSize() const; | |
60 | ||
61 | virtual wxString DoGetLabel() const; | |
62 | virtual void DoSetLabel(const wxString& str); | |
63 | ||
64 | DECLARE_DYNAMIC_CLASS(wxStaticText) | |
65 | }; | |
66 | ||
67 | #endif | |
68 | // _WX_GTK_STATTEXT_H_ |