]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: combobox.cpp | |
3 | // Purpose: wxComboBox class | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "combobox.h" | |
14 | #endif | |
15 | ||
16 | #include "wx/combobox.h" | |
03e11df5 | 17 | #include "wx/menu.h" |
519cb848 | 18 | #include "wx/mac/uma.h" |
e9576ca5 | 19 | |
2f1ae414 | 20 | #if !USE_SHARED_LIBRARY |
e9576ca5 | 21 | IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl) |
2f1ae414 | 22 | #endif |
e9576ca5 | 23 | |
519cb848 SC |
24 | // right now we don't support editable comboboxes |
25 | ||
0e03d1fa | 26 | static int nextPopUpMenuId = 1000 ; |
892e461e SC |
27 | MenuHandle NewUniqueMenu() |
28 | { | |
29 | MenuHandle handle = NewMenu( nextPopUpMenuId , "\pMenu" ) ; | |
30 | nextPopUpMenuId++ ; | |
31 | return handle ; | |
32 | } | |
519cb848 | 33 | |
e9576ca5 SC |
34 | bool wxComboBox::Create(wxWindow *parent, wxWindowID id, |
35 | const wxString& value, | |
36 | const wxPoint& pos, | |
37 | const wxSize& size, | |
38 | int n, const wxString choices[], | |
39 | long style, | |
40 | const wxValidator& validator, | |
41 | const wxString& name) | |
42 | { | |
e9576ca5 | 43 | m_noStrings = n; |
e9576ca5 | 44 | |
519cb848 SC |
45 | Rect bounds ; |
46 | Str255 title ; | |
47 | ||
48 | MacPreControlCreate( parent , id , "" , pos , size ,style, validator , name , &bounds , title ) ; | |
49 | ||
76a5e5d2 | 50 | m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , -12345 , 0, |
519cb848 SC |
51 | kControlPopupButtonProc , (long) this ) ; |
52 | ||
892e461e | 53 | m_macPopUpMenuHandle = NewUniqueMenu() ; |
76a5e5d2 | 54 | SetControlData( (ControlHandle) m_macControl , kControlNoPart , kControlPopupButtonMenuHandleTag , sizeof( MenuHandle ) , (char*) &m_macPopUpMenuHandle) ; |
519cb848 SC |
55 | for ( int i = 0 ; i < n ; i++ ) |
56 | { | |
2f1ae414 SC |
57 | Str255 label; |
58 | wxMenuItem::MacBuildMenuString( label , NULL , NULL , choices[i] ,false); | |
76a5e5d2 | 59 | AppendMenu( (MenuHandle) m_macPopUpMenuHandle , label ) ; |
519cb848 | 60 | } |
76a5e5d2 SC |
61 | SetControlMinimum( (ControlHandle) m_macControl , 0 ) ; |
62 | SetControlMaximum( (ControlHandle) m_macControl , m_noStrings) ; | |
63 | SetControlValue( (ControlHandle) m_macControl , 1 ) ; | |
519cb848 SC |
64 | |
65 | MacPostControlCreate() ; | |
66 | ||
67 | return TRUE; | |
e9576ca5 SC |
68 | } |
69 | ||
70 | wxString wxComboBox::GetValue() const | |
71 | { | |
519cb848 | 72 | return GetStringSelection() ; |
e9576ca5 SC |
73 | } |
74 | ||
75 | void wxComboBox::SetValue(const wxString& value) | |
76 | { | |
519cb848 | 77 | SetStringSelection( value ) ; |
e9576ca5 SC |
78 | } |
79 | ||
80 | // Clipboard operations | |
81 | void wxComboBox::Copy() | |
82 | { | |
83 | // TODO | |
84 | } | |
85 | ||
86 | void wxComboBox::Cut() | |
87 | { | |
88 | // TODO | |
89 | } | |
90 | ||
91 | void wxComboBox::Paste() | |
92 | { | |
93 | // TODO | |
94 | } | |
95 | ||
96 | void wxComboBox::SetEditable(bool editable) | |
97 | { | |
98 | // TODO | |
99 | } | |
100 | ||
101 | void wxComboBox::SetInsertionPoint(long pos) | |
102 | { | |
103 | // TODO | |
104 | } | |
105 | ||
106 | void wxComboBox::SetInsertionPointEnd() | |
107 | { | |
108 | // TODO | |
109 | } | |
110 | ||
111 | long wxComboBox::GetInsertionPoint() const | |
112 | { | |
113 | // TODO | |
114 | return 0; | |
115 | } | |
116 | ||
117 | long wxComboBox::GetLastPosition() const | |
118 | { | |
119 | // TODO | |
120 | return 0; | |
121 | } | |
122 | ||
123 | void wxComboBox::Replace(long from, long to, const wxString& value) | |
124 | { | |
125 | // TODO | |
126 | } | |
127 | ||
128 | void wxComboBox::Remove(long from, long to) | |
129 | { | |
130 | // TODO | |
131 | } | |
132 | ||
133 | void wxComboBox::SetSelection(long from, long to) | |
134 | { | |
135 | // TODO | |
136 | } | |
137 | ||
138 | void wxComboBox::Append(const wxString& item) | |
139 | { | |
2f1ae414 SC |
140 | Str255 label; |
141 | wxMenuItem::MacBuildMenuString( label , NULL , NULL , item ,false); | |
76a5e5d2 | 142 | AppendMenu( (MenuHandle) m_macPopUpMenuHandle , label ) ; |
519cb848 | 143 | m_noStrings ++; |
76a5e5d2 | 144 | SetControlMaximum( (ControlHandle) m_macControl , m_noStrings) ; |
e9576ca5 SC |
145 | } |
146 | ||
147 | void wxComboBox::Delete(int n) | |
148 | { | |
519cb848 | 149 | wxASSERT( n < m_noStrings ) ; |
76a5e5d2 | 150 | ::DeleteMenuItem( (MenuHandle) m_macPopUpMenuHandle , n + 1) ; |
519cb848 | 151 | m_noStrings --; |
76a5e5d2 | 152 | SetControlMaximum( (ControlHandle) m_macControl , m_noStrings) ; |
e9576ca5 SC |
153 | } |
154 | ||
155 | void wxComboBox::Clear() | |
156 | { | |
519cb848 SC |
157 | for ( int i = 0 ; i < m_noStrings ; i++ ) |
158 | { | |
76a5e5d2 | 159 | ::DeleteMenuItem((MenuHandle) m_macPopUpMenuHandle , 1 ) ; |
519cb848 SC |
160 | } |
161 | m_noStrings = 0; | |
76a5e5d2 | 162 | SetControlMaximum( (ControlHandle) m_macControl , m_noStrings) ; |
e9576ca5 SC |
163 | } |
164 | ||
165 | int wxComboBox::GetSelection() const | |
166 | { | |
76a5e5d2 | 167 | return GetControlValue( (ControlHandle) m_macControl ) -1 ; |
e9576ca5 SC |
168 | } |
169 | ||
170 | void wxComboBox::SetSelection(int n) | |
171 | { | |
76a5e5d2 | 172 | SetControlValue( (ControlHandle) m_macControl , n + 1 ) ; |
e9576ca5 SC |
173 | } |
174 | ||
175 | int wxComboBox::FindString(const wxString& s) const | |
176 | { | |
519cb848 SC |
177 | for( int i = 0 ; i < m_noStrings ; i++ ) |
178 | { | |
179 | if ( GetString( i ) == s ) | |
180 | return i ; | |
181 | } | |
e9576ca5 SC |
182 | return -1; |
183 | } | |
184 | ||
185 | wxString wxComboBox::GetString(int n) const | |
186 | { | |
03e11df5 GD |
187 | Str255 p_text ; |
188 | char c_text[255]; | |
76a5e5d2 | 189 | ::GetMenuItemText( (MenuHandle) m_macPopUpMenuHandle , n+1 , p_text ) ; |
03e11df5 GD |
190 | #if TARGET_CARBON |
191 | p2cstrcpy( c_text, p_text ) ; | |
192 | #else | |
193 | p2cstr( p_text ) ; | |
194 | strcpy( c_text, (char *) p_text ) ; | |
195 | #endif | |
196 | return wxString( c_text ); | |
e9576ca5 SC |
197 | } |
198 | ||
199 | wxString wxComboBox::GetStringSelection() const | |
200 | { | |
519cb848 SC |
201 | int sel = GetSelection (); |
202 | if (sel > -1) | |
203 | return wxString(this->GetString (sel)); | |
204 | else | |
205 | return wxString(""); | |
e9576ca5 SC |
206 | } |
207 | ||
208 | bool wxComboBox::SetStringSelection(const wxString& sel) | |
209 | { | |
519cb848 SC |
210 | int s = FindString (sel); |
211 | if (s > -1) | |
212 | { | |
213 | SetSelection (s); | |
214 | return TRUE; | |
215 | } | |
216 | else | |
217 | return FALSE; | |
218 | } | |
219 | ||
76a5e5d2 | 220 | void wxComboBox::MacHandleControlClick( WXWidget control , wxInt16 controlpart ) |
519cb848 SC |
221 | { |
222 | wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_SELECTED, m_windowId ); | |
223 | event.SetInt(GetSelection()); | |
224 | event.SetEventObject(this); | |
0a67a93b | 225 | event.SetString(GetStringSelection()); |
519cb848 | 226 | ProcessCommand(event); |
e9576ca5 | 227 | } |
519cb848 | 228 |