]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/univ/stattext.h
In MSWUniv wxWindow and wxWindowMSW are different classes so we can't access some...
[wxWidgets.git] / include / wx / univ / stattext.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/univ/stattext.h
3// Purpose: wxStaticText
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 14.08.00
7// RCS-ID: $Id$
8// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_UNIV_STATTEXT_H_
13#define _WX_UNIV_STATTEXT_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "univstattext.h"
17#endif
18
19class WXDLLEXPORT wxStaticText : public wxStaticTextBase
20{
21public:
22 wxStaticText() { }
23
24 // usual ctor
25 wxStaticText(wxWindow *parent,
26 const wxString& label,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize)
29 {
30 Create(parent, wxID_ANY, label, pos, size, 0, wxStaticTextNameStr);
31 }
32
33 // full form
34 wxStaticText(wxWindow *parent,
35 wxWindowID id,
36 const wxString& label,
37 const wxPoint& pos = wxDefaultPosition,
38 const wxSize& size = wxDefaultSize,
39 long style = 0,
40 const wxString &name = wxStaticTextNameStr)
41 {
42 Create(parent, id, label, pos, size, style, name);
43 }
44
45 // function ctor
46 bool Create(wxWindow *parent,
47 wxWindowID id,
48 const wxString &label,
49 const wxPoint &pos = wxDefaultPosition,
50 const wxSize &size = wxDefaultSize,
51 long style = 0,
52 const wxString &name = wxStaticTextNameStr);
53
54 // implementation only from now on
55
56 virtual void SetLabel(const wxString& label);
57
58 virtual bool IsFocused() const { return false; }
59
60protected:
61 // calculate the optimal size for the label
62 virtual wxSize DoGetBestClientSize() const;
63
64 // draw the control
65 virtual void DoDraw(wxControlRenderer *renderer);
66
67 DECLARE_ABSTRACT_CLASS(wxStaticText)
68};
69
70#endif // _WX_UNIV_STATTEXT_H_