]> git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/stattext.h
updates for DoGetBestSize
[wxWidgets.git] / include / wx / os2 / stattext.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: stattext.h
3 // Purpose: wxStaticText class
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/17/99
7 // RCS-ID: $Id$
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_STATTEXT_H_
13 #define _WX_STATTEXT_H_
14
15 #ifdef __GNUG__
16 #pragma interface "stattext.h"
17 #endif
18
19 #include "wx/control.h"
20
21 WXDLLEXPORT_DATA(extern const char*) wxStaticTextNameStr;
22
23 class WXDLLEXPORT wxStaticText: public wxControl
24 {
25 DECLARE_DYNAMIC_CLASS(wxStaticText)
26
27 public:
28 inline wxStaticText() { }
29
30 inline wxStaticText(wxWindow *parent, 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 Create(parent, id, label, pos, size, style, name);
38 }
39
40 bool Create(wxWindow *parent, wxWindowID id,
41 const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = 0,
45 const wxString& name = wxStaticTextNameStr);
46
47 // accessors
48 void SetLabel(const wxString&);
49
50 // overriden base class virtuals
51 virtual bool AcceptsFocus() const { return FALSE; }
52
53 // callbacks
54 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
55 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
56 virtual MRESULT OS2WindowProc(HWND hwnd, WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
57
58 protected:
59 virtual wxSize DoGetBestSize() const;
60 };
61
62 #endif
63 // _WX_STATTEXT_H_