]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/control.h
1. added a brief overview of Unicode support
[wxWidgets.git] / include / wx / control.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/control.h
3// Purpose: wxControl common interface
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 26.07.99
7// RCS-ID: $Id$
8// Copyright: (c) wxWindows team
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_CONTROL_H_BASE_
13#define _WX_CONTROL_H_BASE_
14
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#ifdef __GNUG__
20 #pragma interface "ctrlcmn.h"
21#endif
22
23#include "wx/window.h" // base class
24
25// ----------------------------------------------------------------------------
26// wxControl is the base class for all controls
27// ----------------------------------------------------------------------------
28
29class WXDLLEXPORT wxControlBase : public wxWindow
30{
31public:
32 // simulates the event of given type (i.e. wxButton::Command() is just as
33 // if the button was clicked)
34 virtual void Command(wxCommandEvent &event);
35
36protected:
37 // creates the controls (invokes wxWindowBase::CreateBase) and adds it to
38 // the list of parents children
39 bool CreateControl(wxWindowBase *parent,
40 wxWindowID id,
41 const wxPoint& pos,
42 const wxSize& size,
43 long style,
44 const wxValidator& validator,
45 const wxString& name);
46
47 // inherit colour and font settings from the parent window
48 void InheritAttributes();
49};
50
51// ----------------------------------------------------------------------------
52// include platform-dependent wxControl declarations
53// ----------------------------------------------------------------------------
54
55#if defined(__WXMSW__)
56 #include "wx/msw/control.h"
57#elif defined(__WXMOTIF__)
58 #include "wx/motif/control.h"
59#elif defined(__WXGTK__)
60 #include "wx/gtk/control.h"
61#elif defined(__WXQT__)
62 #include "wx/qt/control.h"
63#elif defined(__WXMAC__)
64 #include "wx/mac/control.h"
65#elif defined(__WXPM__)
66 #include "wx/os2/control.h"
67#elif defined(__WXSTUBS__)
68 #include "wx/stubs/control.h"
69#endif
70
71#endif
72 // _WX_CONTROL_H_BASE_