]> git.saurik.com Git - wxWidgets.git/blame - include/wx/qt/stattext.h
1. some minor but nasty bugs fixed (see post to the list)
[wxWidgets.git] / include / wx / qt / stattext.h
CommitLineData
7c78e7c7
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.h
01b2eeec
KB
3// Purpose: wxStaticText class
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
7c78e7c7
RR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
01b2eeec
KB
12#ifndef _WX_STATTEXT_H_
13#define _WX_STATTEXT_H_
7c78e7c7
RR
14
15#ifdef __GNUG__
01b2eeec 16#pragma interface "stattext.h"
7c78e7c7
RR
17#endif
18
7c78e7c7
RR
19#include "wx/control.h"
20
01b2eeec 21WXDLLEXPORT_DATA(extern const char*) wxStaticTextNameStr;
7c78e7c7 22
01b2eeec 23class WXDLLEXPORT wxStaticText: public wxControl
7c78e7c7
RR
24{
25 DECLARE_DYNAMIC_CLASS(wxStaticText)
01b2eeec
KB
26 public:
27 inline wxStaticText() { }
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 // accessors
47 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
48 void SetLabel(const wxString&);
49
50 // operations
51 virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
52 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
7c78e7c7
RR
53};
54
01b2eeec
KB
55#endif
56 // _WX_STATTEXT_H_