]>
Commit | Line | Data |
---|---|---|
2d61b48d VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: common/choiccmn.cpp | |
3 | // Purpose: common (to all ports) wxChoice functions | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 26.07.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
55d99c7a | 9 | // Licence: wxWindows licence |
2d61b48d VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1b68e0b5 | 21 | #pragma implementation "choicebase.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 | ||
1e6feb95 VZ |
31 | #if wxUSE_CHOICE |
32 | ||
2d61b48d VZ |
33 | #ifndef WX_PRECOMP |
34 | #include "wx/choice.h" | |
2d61b48d VZ |
35 | #endif |
36 | ||
37 | // ============================================================================ | |
38 | // implementation | |
39 | // ============================================================================ | |
40 | ||
1169a919 JS |
41 | wxChoiceBase::wxChoiceBase() |
42 | { | |
43 | } | |
44 | ||
799ea011 GD |
45 | wxChoiceBase::~wxChoiceBase() |
46 | { | |
47 | // this destructor is required for Darwin | |
48 | } | |
49 | ||
2d61b48d | 50 | // ---------------------------------------------------------------------------- |
6c8a980f | 51 | // selection |
2d61b48d VZ |
52 | // ---------------------------------------------------------------------------- |
53 | ||
6c8a980f | 54 | bool wxChoiceBase::SetStringSelection(const wxString& s) |
2d61b48d | 55 | { |
6c8a980f VZ |
56 | int sel = FindString(s); |
57 | wxCHECK_MSG( sel != -1, FALSE, | |
58 | wxT("invalid string in wxChoice::SetStringSelection") ); | |
2d61b48d | 59 | |
6c8a980f | 60 | Select(sel); |
2d61b48d VZ |
61 | |
62 | return TRUE; | |
63 | } | |
64 | ||
65 | // ---------------------------------------------------------------------------- | |
6c8a980f | 66 | // misc |
2d61b48d VZ |
67 | // ---------------------------------------------------------------------------- |
68 | ||
6c8a980f | 69 | void wxChoiceBase::Command(wxCommandEvent& event) |
2d61b48d | 70 | { |
6c8a980f VZ |
71 | SetSelection(event.m_commandInt); |
72 | (void)ProcessEvent(event); | |
2d61b48d | 73 | } |
1e6feb95 VZ |
74 | |
75 | #endif // wxUSE_CHOICE | |
76 |