]> git.saurik.com Git - wxWidgets.git/blame - include/wx/control.h
added wxBitmapToHICON/CURSOR helper functions
[wxWidgets.git] / include / wx / control.h
CommitLineData
8d99be5f
VZ
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
371a5b4e 9// Licence: wxWindows licence
8d99be5f
VZ
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_CONTROL_H_BASE_
13#define _WX_CONTROL_H_BASE_
c801d85f 14
8d99be5f
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
af49c4b8 19#if defined(__GNUG__) && !defined(__APPLE__)
1b68e0b5 20 #pragma interface "controlbase.h"
8d99be5f
VZ
21#endif
22
1e6feb95
VZ
23#if wxUSE_CONTROLS
24
8d99be5f
VZ
25#include "wx/window.h" // base class
26
403aced8 27WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr;
1e6feb95 28
8d99be5f
VZ
29// ----------------------------------------------------------------------------
30// wxControl is the base class for all controls
31// ----------------------------------------------------------------------------
32
33class WXDLLEXPORT wxControlBase : public wxWindow
34{
35public:
799ea011
GD
36 virtual ~wxControlBase();
37
1e6feb95
VZ
38 // Create() function adds the validator parameter
39 bool Create(wxWindow *parent, wxWindowID id,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
42 long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxControlNameStr);
45
8d99be5f
VZ
46 // simulates the event of given type (i.e. wxButton::Command() is just as
47 // if the button was clicked)
48 virtual void Command(wxCommandEvent &event);
49
1e6feb95
VZ
50 // get the control alignment (left/right/centre, top/bottom/centre)
51 int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; }
52
8d99be5f 53protected:
3f2711d5
VZ
54 // creates the control (calls wxWindowBase::CreateBase inside) and adds it
55 // to the list of parents children
8d99be5f
VZ
56 bool CreateControl(wxWindowBase *parent,
57 wxWindowID id,
58 const wxPoint& pos,
59 const wxSize& size,
60 long style,
61 const wxValidator& validator,
62 const wxString& name);
63
64 // inherit colour and font settings from the parent window
65 void InheritAttributes();
bfbd6dc1
VZ
66
67 // initialize the common fields of wxCommandEvent
68 void InitCommandEvent(wxCommandEvent& event) const;
8d99be5f
VZ
69};
70
71// ----------------------------------------------------------------------------
72// include platform-dependent wxControl declarations
73// ----------------------------------------------------------------------------
f03fc89f 74
1e6feb95
VZ
75#if defined(__WXUNIVERSAL__)
76 #include "wx/univ/control.h"
77#elif defined(__WXMSW__)
8d99be5f 78 #include "wx/msw/control.h"
2049ba38 79#elif defined(__WXMOTIF__)
8d99be5f 80 #include "wx/motif/control.h"
2049ba38 81#elif defined(__WXGTK__)
8d99be5f 82 #include "wx/gtk/control.h"
34138703 83#elif defined(__WXMAC__)
8d99be5f 84 #include "wx/mac/control.h"
e64df9bc
DE
85#elif defined(__WXCOCOA__)
86 #include "wx/cocoa/control.h"
1777b9bb
DW
87#elif defined(__WXPM__)
88 #include "wx/os2/control.h"
c801d85f
KB
89#endif
90
1e6feb95
VZ
91#endif // wxUSE_CONTROLS
92
c801d85f 93#endif
34138703 94 // _WX_CONTROL_H_BASE_