]> git.saurik.com Git - wxWidgets.git/blame - include/wx/qt/statbox.h
handle sizeof(int) correctly
[wxWidgets.git] / include / wx / qt / statbox.h
CommitLineData
7c78e7c7 1/////////////////////////////////////////////////////////////////////////////
01b2eeec
KB
2// Name: statbox.h
3// Purpose: wxStaticBox 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_STATBOX_H_
13#define _WX_STATBOX_H_
7c78e7c7
RR
14
15#ifdef __GNUG__
01b2eeec 16#pragma interface "statbox.h"
7c78e7c7
RR
17#endif
18
7c78e7c7
RR
19#include "wx/control.h"
20
01b2eeec 21WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr;
7c78e7c7 22
01b2eeec
KB
23// Group box
24class WXDLLEXPORT wxStaticBox: public wxControl
7c78e7c7
RR
25{
26 DECLARE_DYNAMIC_CLASS(wxStaticBox)
27
01b2eeec
KB
28 public:
29 inline wxStaticBox() {}
30 inline wxStaticBox(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 = wxStaticBoxNameStr)
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 = wxStaticBoxNameStr);
46
47 virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
48 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
49
50 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
51 void SetLabel(const wxString& label);
52
53DECLARE_EVENT_TABLE()
7c78e7c7
RR
54};
55
01b2eeec
KB
56#endif
57 // _WX_STATBOX_H_