]> git.saurik.com Git - wxWidgets.git/blame - src/common/ctrlcmn.cpp
wxSetlocale() doesn't always return NULL
[wxWidgets.git] / src / common / ctrlcmn.cpp
CommitLineData
2d61b48d
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: ctrlcmn.cpp
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// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
1b68e0b5 21 #pragma implementation "controlbase.h"
2d61b48d
VZ
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#ifndef WX_PRECOMP
32 #include "wx/control.h"
33 #include "wx/log.h"
34#endif
35
36// ============================================================================
37// implementation
38// ============================================================================
39
40bool wxControlBase::CreateControl(wxWindowBase *parent,
41 wxWindowID id,
42 const wxPoint& pos,
43 const wxSize& size,
44 long style,
5d4b632b 45#if wxUSE_VALIDATORS
2d61b48d 46 const wxValidator& validator,
5d4b632b 47#endif
2d61b48d
VZ
48 const wxString& name)
49{
50 // even if it's possible to create controls without parents in some port,
51 // it should surely be discouraged because it doesn't work at all under
52 // Windows
223d09f6 53 wxCHECK_MSG( parent, FALSE, wxT("all controls must have parents") );
2d61b48d
VZ
54
55 if ( !CreateBase(parent, id, pos, size, style, validator, name) )
56 return FALSE;
57
58 parent->AddChild(this);
59
60 return TRUE;
61}
62
63// inherit colour and font settings from the parent window
64void wxControlBase::InheritAttributes()
65{
66 SetBackgroundColour(GetParent()->GetBackgroundColour());
67 SetForegroundColour(GetParent()->GetForegroundColour());
68 SetFont(GetParent()->GetFont());
69}
70
71void wxControlBase::Command(wxCommandEvent& event)
72{
73 (void)ProcessEvent(event);
74}