]>
Commit | Line | Data |
---|---|---|
93cf77c0 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: stattext.cpp | |
3 | // Purpose: wxStaticText | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "stattext.h" | |
14 | #endif | |
15 | ||
93cf77c0 | 16 | #include "wx/app.h" |
93cf77c0 | 17 | #include "wx/stattext.h" |
34138703 | 18 | |
93cf77c0 JS |
19 | #include <stdio.h> |
20 | ||
93cf77c0 | 21 | IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl) |
93cf77c0 JS |
22 | |
23 | bool wxStaticText::Create(wxWindow *parent, wxWindowID id, | |
24 | const wxString& label, | |
25 | const wxPoint& pos, | |
26 | const wxSize& size, | |
27 | long style, | |
28 | const wxString& name) | |
29 | { | |
30 | SetName(name); | |
31 | if (parent) parent->AddChild(this); | |
32 | ||
c0ed460c JS |
33 | SetBackgroundColour(parent->GetBackgroundColour()) ; |
34 | SetForegroundColour(parent->GetForegroundColour()) ; | |
93cf77c0 JS |
35 | |
36 | if ( id == -1 ) | |
37 | m_windowId = (int)NewControlId(); | |
38 | else | |
39 | m_windowId = id; | |
40 | ||
93cf77c0 JS |
41 | m_windowStyle = style; |
42 | ||
c0ed460c | 43 | SetFont(parent->GetFont()); |
34138703 JS |
44 | |
45 | // TODO | |
46 | return FALSE; | |
93cf77c0 JS |
47 | } |
48 | ||
49 | void wxStaticText::SetSize(int x, int y, int width, int height, int sizeFlags) | |
50 | { | |
34138703 | 51 | // TODO |
93cf77c0 JS |
52 | } |
53 | ||
54 | void wxStaticText::SetLabel(const wxString& label) | |
55 | { | |
34138703 | 56 | // TODO |
93cf77c0 JS |
57 | } |
58 |