]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/stattext.h
added JPEG support
[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__
396bdd5a 16 #pragma interface "stattext.h"
2bda0e17
KB
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxStaticTextNameStr;
22
396bdd5a 23class WXDLLEXPORT wxStaticText : public wxControl
2bda0e17 24{
396bdd5a 25DECLARE_DYNAMIC_CLASS(wxStaticText)
2bda0e17 26
396bdd5a
VZ
27public:
28 wxStaticText() { }
29
30 wxStaticText(wxWindow *parent, wxWindowID id,
31 const wxString& label,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 long style = 0,
35 const wxString& name = wxStaticTextNameStr)
36 {
37 Create(parent, id, label, pos, size, style, name);
38 }
39
40 bool Create(wxWindow *parent, wxWindowID id,
41 const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = 0,
45 const wxString& name = wxStaticTextNameStr);
46
47 // accessors
48 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
49 void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
4fabb575 50 { wxWindow::SetSize(rect, sizeFlags); }
396bdd5a
VZ
51 void SetSize(const wxSize& size)
52 { wxWindow::SetSize(size); }
53 void SetLabel(const wxString& label);
54
55 // operations
56 virtual void Command(wxCommandEvent& WXUNUSED(event)) { }
57 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) { }
58
59 // overriden base class virtuals
60 virtual bool AcceptsFocus() const { return FALSE; }
61
62 // callbacks
63 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
64 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
65 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
2bda0e17
KB
66};
67
68#endif
bbcdf8bc 69 // _WX_STATTEXT_H_