]>
git.saurik.com Git - wxWidgets.git/blob - samples/applet/combobox.cpp
b8a8c1c0d4a954a3066b4bf2987012b478601e68
1 /****************************************************************************
3 * wxWindows HTML Applet Package
5 * ========================================================================
7 * The contents of this file are subject to the wxWindows licence; you
8 * may not use this file except in compliance with the License. You may
9 * obtain a copy of the License at http://www.wxwindows.org/licence.htm
11 * Software distributed under the License is distributed on an
12 * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
13 * implied. See the License for the specific language governing
14 * rights and limitations under the License.
16 * The Original Code is Copyright (C) 2001 SciTech Software, Inc.
18 * The Initial Developer of the Original Code is SciTech Software, Inc.
19 * All Rights Reserved.
21 * ========================================================================
26 * Description: Combobox wrapper. This file implements the custom
27 * combo boxes used for this sample program.
29 ****************************************************************************/
31 // For compilers that support precompilation, includes "wx/wx.h".
32 #include <wx/wxprec.h>
38 /*------------------------- Implementation --------------------------------*/
44 : m_Parent(parent
), m_ListBoxId(listid
), m_TextCtrlId(textid
)
46 m_ListBox
= wxDynamicCast(m_Parent
->FindWindow(listid
),wxListBox
);
47 m_TextCtrl
= wxDynamicCast(m_Parent
->FindWindow(textid
),wxTextCtrl
);
50 int ComboBox::GetListBoxId()
55 int ComboBox::GetSelection()
57 return m_ListBox
->GetSelection();
60 wxString
ComboBox::GetStringSelection()
62 return m_ListBox
->GetStringSelection();
65 bool ComboBox::SetStringSelection(const wxString
& s
, bool select
)
68 select
= m_ListBox
->SetStringSelection(s
, select
);
69 m_TextCtrl
->SetValue(GetStringSelection());
73 void ComboBox::Select(int n
)
76 m_TextCtrl
->SetValue(GetStringSelection());
79 void ComboBox::Deselect(int n
)
81 m_ListBox
->Deselect(n
);
84 void ComboBox::Insert(const wxString
& item
, int pos
)
86 m_ListBox
->Insert(item
,pos
);
89 void ComboBox::Insert(const wxString
& item
, int pos
, void *clientData
)
91 m_ListBox
->Insert(item
, pos
, clientData
);
94 void ComboBox::Insert(const wxString
& item
, int pos
, wxClientData
*clientData
)
96 m_ListBox
->Insert(item
, pos
, clientData
);
99 void ComboBox::InsertItems(int nItems
, const wxString
*items
, int pos
)
101 m_ListBox
->InsertItems(nItems
, items
, pos
);
104 void ComboBox::InsertItems(const wxArrayString
& items
, int pos
)
106 m_ListBox
->InsertItems(items
, pos
);
109 void ComboBox::Set(int n
, const wxString
* items
, void **clientData
)
111 m_ListBox
->Set(n
, items
, clientData
);
112 m_TextCtrl
->SetValue(GetStringSelection());
115 void ComboBox::Set(const wxArrayString
& items
, void **clientData
)
117 m_ListBox
->Set(items
, clientData
);
118 m_TextCtrl
->SetValue(GetStringSelection());
121 int ComboBox::FindString(const wxString
&s
)
123 return (m_ListBox
->FindString(s
));
126 void ComboBox::SetFirstItem(int n
)
128 m_ListBox
->SetFirstItem(n
);
129 m_TextCtrl
->SetValue(GetStringSelection());
132 void ComboBox::SetFirstItem(const wxString
&s
)
134 m_ListBox
->SetFirstItem(s
);
135 m_TextCtrl
->SetValue(GetStringSelection());
138 void ComboBox::Append(const wxString
&item
)
140 m_ListBox
->Append(item
);
141 m_TextCtrl
->SetValue(GetStringSelection());
144 void ComboBox::Append(const wxString
& item
, void *clientData
)
146 m_ListBox
->Append(item
, clientData
);
147 m_TextCtrl
->SetValue(GetStringSelection());
150 void ComboBox::Append(const wxString
& item
, wxClientData
*clientData
)
152 m_ListBox
->Append(item
, clientData
);
153 m_TextCtrl
->SetValue(GetStringSelection());
156 void ComboBox::Clear()
159 m_TextCtrl
->SetValue(GetStringSelection());
162 void ComboBox::Delete(int n
)
164 m_ListBox
->Delete(n
);
165 m_TextCtrl
->SetValue(GetStringSelection());
168 void ComboBox::OnChange(wxCommandEvent
&)
170 m_TextCtrl
->SetValue(GetStringSelection());