]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/stattext.h
memory debugging using VC++ debug CRT works for DLL wxWin builds as well.
[wxWidgets.git] / include / wx / msw / stattext.h
CommitLineData
2bda0e17
KB
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$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_STATTEXT_H_
13#define _WX_STATTEXT_H_
2bda0e17
KB
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{
25 DECLARE_DYNAMIC_CLASS(wxStaticText)
26 public:
27 inline wxStaticText(void) { }
28
debe6624 29 inline wxStaticText(wxWindow *parent, wxWindowID id,
2bda0e17
KB
30 const wxString& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
debe6624 33 long style = 0,
2bda0e17
KB
34 const wxString& name = wxStaticTextNameStr)
35 {
36 Create(parent, id, label, pos, size, style, name);
37 }
38
debe6624 39 bool Create(wxWindow *parent, wxWindowID id,
2bda0e17
KB
40 const wxString& label,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
debe6624 43 long style = 0,
2bda0e17
KB
44 const wxString& name = wxStaticTextNameStr);
45
670c3849
VZ
46 // accessors
47 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
4fabb575
JS
48 void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
49 { wxWindow::SetSize(rect, sizeFlags); }
50 void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
670c3849
VZ
51 void SetLabel(const wxString&);
52
53 // operations
2bda0e17
KB
54 virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
55 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
56
670c3849
VZ
57 // overriden base class virtuals
58 virtual bool AcceptsFocus() const { return FALSE; }
2bda0e17 59
670c3849 60 // callbacks
debe6624 61 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
670c3849 62 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
2bda0e17
KB
63 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
64};
65
66#endif
bbcdf8bc 67 // _WX_STATTEXT_H_