]>
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 | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
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 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/choice.h" | |
2d61b48d VZ |
33 | #endif |
34 | ||
35 | // ============================================================================ | |
36 | // implementation | |
37 | // ============================================================================ | |
38 | ||
39 | // ---------------------------------------------------------------------------- | |
6c8a980f | 40 | // selection |
2d61b48d VZ |
41 | // ---------------------------------------------------------------------------- |
42 | ||
6c8a980f | 43 | bool wxChoiceBase::SetStringSelection(const wxString& s) |
2d61b48d | 44 | { |
6c8a980f VZ |
45 | int sel = FindString(s); |
46 | wxCHECK_MSG( sel != -1, FALSE, | |
47 | wxT("invalid string in wxChoice::SetStringSelection") ); | |
2d61b48d | 48 | |
6c8a980f | 49 | Select(sel); |
2d61b48d VZ |
50 | |
51 | return TRUE; | |
52 | } | |
53 | ||
54 | // ---------------------------------------------------------------------------- | |
6c8a980f | 55 | // misc |
2d61b48d VZ |
56 | // ---------------------------------------------------------------------------- |
57 | ||
6c8a980f | 58 | void wxChoiceBase::Command(wxCommandEvent& event) |
2d61b48d | 59 | { |
6c8a980f VZ |
60 | SetSelection(event.m_commandInt); |
61 | (void)ProcessEvent(event); | |
2d61b48d | 62 | } |