]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/stattext.h
Add tests for XShape extension API in configure,
[wxWidgets.git] / include / wx / motif / stattext.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.h
3// Purpose: wxStaticText class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
31528cd3 9// Licence: wxWindows licence
9b6dbb09
JS
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 char*) wxStaticTextNameStr;
22
23class WXDLLEXPORT wxStaticText: public wxControl
24{
31528cd3 25 DECLARE_DYNAMIC_CLASS(wxStaticText)
83df96d6 26
31528cd3
VZ
27public:
28 wxStaticText() { }
83df96d6 29
31528cd3 30 wxStaticText(wxWindow *parent, wxWindowID id,
83df96d6
JS
31 const wxString& label,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 long style = 0,
35 const wxString& name = wxStaticTextNameStr)
31528cd3
VZ
36 {
37 Create(parent, id, label, pos, size, style, name);
38 }
83df96d6 39
31528cd3 40 bool Create(wxWindow *parent, wxWindowID id,
83df96d6
JS
41 const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = 0,
45 const wxString& name = wxStaticTextNameStr);
46
31528cd3
VZ
47 // implementation
48 // --------------
83df96d6 49
31528cd3
VZ
50 // operations
51 virtual bool ProcessCommand(wxCommandEvent& WXUNUSED(event))
52 {
53 return FALSE;
54 }
83df96d6 55
31528cd3
VZ
56 virtual void ChangeFont(bool keepOriginalSize = TRUE);
57 virtual void ChangeBackgroundColour();
58 virtual void ChangeForegroundColour();
fe5de1ea 59 virtual void SetLabel(const wxString& label);
6886fcfa
JS
60
61 // Get the widget that corresponds to the label (for font setting, label setting etc.)
62 virtual WXWidget GetLabelWidget() const
63 { return m_labelWidget; }
64
65protected:
66 WXWidget m_labelWidget;
9b6dbb09
JS
67};
68
69#endif
83df96d6 70// _WX_STATTEXT_H_