]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/stattext.h
Sorry, I went and removed consts as per the style guide :-)
[wxWidgets.git] / include / wx / msw / stattext.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: stattext.h
3 // Purpose: wxStaticText class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __STATTEXTH__
13 #define __STATTEXTH__
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 public:
27 inline wxStaticText(void) { }
28
29 inline wxStaticText(wxWindow *parent, wxWindowID id,
30 const wxString& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = 0,
34 const wxString& name = wxStaticTextNameStr)
35 {
36 Create(parent, id, label, pos, size, style, name);
37 }
38
39 bool Create(wxWindow *parent, wxWindowID id,
40 const wxString& label,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = 0,
44 const wxString& name = wxStaticTextNameStr);
45
46 virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
47 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
48
49 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
50
51 void SetLabel(const wxString&);
52
53 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
54 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
55
56 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
57 };
58
59 #endif
60 // __STATTEXTH__