]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/stattext.h
Further wxUniv fixes
[wxWidgets.git] / include / wx / msw / stattext.h
... / ...
CommitLineData
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
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
21WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
22
23class WXDLLEXPORT wxStaticText : public wxControl
24{
25DECLARE_DYNAMIC_CLASS(wxStaticText)
26
27public:
28 wxStaticText() { }
29
30 wxStaticText(wxWindow *parent,
31 wxWindowID id,
32 const wxString& label,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = 0,
36 const wxString& name = wxStaticTextNameStr)
37 {
38 Create(parent, id, label, pos, size, style, name);
39 }
40
41 bool Create(wxWindow *parent,
42 wxWindowID id,
43 const wxString& label,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
46 long style = 0,
47 const wxString& name = wxStaticTextNameStr);
48
49 // accessors
50 void SetLabel(const wxString& label);
51 bool SetFont( const wxFont &font );
52
53 // overriden base class virtuals
54 virtual bool AcceptsFocus() const { return FALSE; }
55
56 // callbacks
57 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
58
59protected:
60 virtual wxSize DoGetBestSize() const;
61};
62
63#endif
64 // _WX_STATTEXT_H_