]> git.saurik.com Git - wxWidgets.git/blame - src/os2/combobox.cpp
Implemented user dashes for PS print.
[wxWidgets.git] / src / os2 / combobox.cpp
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: combobox.cpp
3// Purpose: wxComboBox class
37f214d5 4// Author: David Webster
0e320a79 5// Modified by:
37f214d5 6// Created: 10/13/99
0e320a79 7// RCS-ID: $Id$
37f214d5 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
37f214d5
DW
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifndef WX_PRECOMP
6670f564 16 #include "wx/defs.h"
a4a16252 17 #include "wx/settings.h"
0e320a79
DW
18#endif
19
37f214d5
DW
20#if wxUSE_COMBOBOX
21
0e320a79 22#include "wx/combobox.h"
37f214d5
DW
23#include "wx/clipbrd.h"
24#include "wx/os2/private.h"
0e320a79 25
0cf6acbf
DW
26#define OWNER_DRAWN_LISTBOX_EXTRA_SPACE (1)
27
28MRESULT EXPENTRY wxComboEditWndProc( HWND hWnd
29 ,UINT uMessage
30 ,MPARAM wParam
31 ,MPARAM lParam
32 );
33//
34// The pointer to standard wnd proc
35//
36static WXFARPROC gfnWndprocEdit = (WXFARPROC)NULL;
37
0e320a79 38IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl)
0e320a79 39
0cf6acbf
DW
40bool wxComboBox::OS2Command(
41 WXUINT uParam
42, WXWORD WXUNUSED(wId)
43)
0e320a79 44{
0cf6acbf
DW
45 long lSel = -1L;
46 wxString sValue;
0e320a79 47
0cf6acbf
DW
48 switch (uParam)
49 {
1de4baa3 50 case CBN_LBSELECT:
0cf6acbf
DW
51 if (GetSelection() > -1)
52 {
53 wxCommandEvent vEvent( wxEVT_COMMAND_COMBOBOX_SELECTED
54 ,GetId()
55 );
56
57 vEvent.SetInt(GetSelection());
58 vEvent.SetEventObject(this);
0fba44b4 59 vEvent.SetString(GetStringSelection());
0cf6acbf
DW
60 ProcessCommand(vEvent);
61 }
62 break;
63
1de4baa3 64 case CBN_EFCHANGE:
0cf6acbf
DW
65 {
66 wxCommandEvent vEvent( wxEVT_COMMAND_TEXT_UPDATED
67 ,GetId()
68 );
69
70 if (lSel == -1L)
71 sValue = GetValue();
72 else
73 SetValue(sValue);
0fba44b4 74 vEvent.SetString(GetValue());
0cf6acbf
DW
75 vEvent.SetEventObject(this);
76 ProcessCommand(vEvent);
77 }
78 break;
79 }
80 //
81 // There is no return value for the CBN_ notifications, so always return
7d8268a1 82 // false from here to pass the message to DefWindowProc()
0cf6acbf 83 //
7d8268a1 84 return false;
0cf6acbf
DW
85} // end of wxComboBox::OS2Command
86
584ad2a3
MB
87bool wxComboBox::Create(
88 wxWindow* pParent
89, wxWindowID vId
90, const wxString& rsValue
91, const wxPoint& rPos
92, const wxSize& rSize
93, const wxArrayString& asChoices
94, long lStyle
95, const wxValidator& rValidator
96, const wxString& rsName
97)
98{
99 wxCArrayString chs(asChoices);
100
101 return Create(pParent, vId, rsValue, rPos, rSize, chs.GetCount(),
102 chs.GetStrings(), lStyle, rValidator, rsName);
103}
104
0cf6acbf
DW
105bool wxComboBox::Create(
106 wxWindow* pParent
107, wxWindowID vId
108, const wxString& rsValue
109, const wxPoint& rPos
110, const wxSize& rSize
111, int n
112, const wxString asChoices[]
113, long lStyle
0cf6acbf 114, const wxValidator& rValidator
0cf6acbf
DW
115, const wxString& rsName
116)
0e320a79 117{
7d8268a1 118 m_isShown = false;
0cf6acbf 119
b9b1d6c8 120 if (!CreateControl( pParent
0cf6acbf
DW
121 ,vId
122 ,rPos
123 ,rSize
124 ,lStyle
0cf6acbf 125 ,rValidator
0cf6acbf
DW
126 ,rsName
127 ))
7d8268a1 128 return false;
0cf6acbf
DW
129
130 //
131 // Get the right style
132 //
133 long lSstyle = 0L;
134
135 lSstyle = WS_TABSTOP |
136 WS_VISIBLE;
137
138 if (lStyle & wxCLIP_SIBLINGS )
139 lSstyle |= WS_CLIPSIBLINGS;
140 if (lStyle & wxCB_READONLY)
141 lSstyle |= CBS_DROPDOWNLIST;
142 else if (lStyle & wxCB_SIMPLE)
143 lSstyle |= CBS_SIMPLE; // A list (shown always) and edit control
144 else
145 lSstyle |= CBS_DROPDOWN;
146
147
0fba44b4 148 if (!OS2CreateControl( _T("COMBOBOX")
0cf6acbf
DW
149 ,lSstyle
150 ))
7d8268a1 151 return false;
0cf6acbf
DW
152
153 //
154 // A choice/combobox normally has a white background (or other, depending
155 // on global settings) rather than inheriting the parent's background colour.
156 //
a756f210 157 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
0cf6acbf 158
154daa94 159 for (int i = 0; i < n; i++)
0cf6acbf
DW
160 {
161 Append(asChoices[i]);
162 }
163
164 SetSize( rPos.x
165 ,rPos.y
166 ,rSize.x
167 ,rSize.y
168 );
7d8268a1 169 if (!rsValue.empty())
0cf6acbf
DW
170 {
171 SetValue(rsValue);
172 }
173 gfnWndprocEdit = (WXFARPROC)::WinSubclassWindow( (HWND)GetHwnd()
174 ,(PFNWP)wxComboEditWndProc
175 );
5d44b24e 176 ::WinSetWindowULong(GetHwnd(), QWL_USER, (ULONG)this);
7d8268a1
WS
177 Show(true);
178 return true;
0cf6acbf
DW
179} // end of wxComboBox::Create
180
181void wxComboBox::SetValue(
182 const wxString& rsValue
183)
0e320a79 184{
2b5f62a0
VZ
185 if ( HasFlag(wxCB_READONLY) )
186 SetStringSelection(rsValue);
0cf6acbf 187 else
0fba44b4 188 ::WinSetWindowText(GetHwnd(), (PSZ)rsValue.c_str());
0cf6acbf 189} // end of wxComboBox::SetValue
0e320a79 190
0cf6acbf 191//
0e320a79 192// Clipboard operations
0cf6acbf 193//
0e320a79
DW
194void wxComboBox::Copy()
195{
0cf6acbf
DW
196 HWND hWnd = GetHwnd();
197
198 ::WinSendMsg(hWnd, EM_COPY, (MPARAM)0, (MPARAM)0);
199} // end of wxComboBox::Copy
0e320a79
DW
200
201void wxComboBox::Cut()
202{
0cf6acbf
DW
203 HWND hWnd = GetHwnd();
204
205 ::WinSendMsg(hWnd, EM_CUT, (MPARAM)0, (MPARAM)0);
206} // end of wxComboBox::Cut
0e320a79
DW
207
208void wxComboBox::Paste()
209{
0cf6acbf 210 HWND hWnd = GetHwnd();
0e320a79 211
0cf6acbf
DW
212 ::WinSendMsg(hWnd, EM_PASTE, (MPARAM)0, (MPARAM)0);
213} // end of wxComboBox::Paste
214
215void wxComboBox::SetEditable(
216 bool bEditable
217)
0e320a79 218{
0cf6acbf
DW
219 HWND hWnd = GetHwnd();
220
221 ::WinSendMsg(hWnd, EM_SETREADONLY, (MPARAM)!bEditable, (MPARAM)0L);
222} // end of wxComboBox::SetEditable
0e320a79 223
0cf6acbf
DW
224void wxComboBox::SetInsertionPoint(
225 long lPos
226)
0e320a79 227{
0cf6acbf
DW
228 HWND hWnd = GetHwnd();
229
230 ::WinSendMsg(hWnd, EM_SETFIRSTCHAR, MPFROMLONG(lPos), (MPARAM)0);
231} // end of wxComboBox::SetInsertionPoint
0e320a79
DW
232
233void wxComboBox::SetInsertionPointEnd()
234{
7d8268a1 235 wxTextPos lPos = GetLastPosition();
0cf6acbf
DW
236
237 SetInsertionPoint(lPos);
238} // end of wxComboBox::SetInsertionPointEnd
0e320a79
DW
239
240long wxComboBox::GetInsertionPoint() const
241{
0cf6acbf
DW
242 long lPos = LONGFROMMR(::WinSendMsg( GetHwnd()
243 ,LM_QUERYSELECTION
244 ,(MPARAM)0
245 ,(MPARAM)0
246 ));
247 if (lPos == LIT_NONE)
248 return wxNOT_FOUND;
249 return lPos;
250} // end of wxComboBox::GetInsertionPoint
0e320a79 251
7d8268a1 252wxTextPos wxComboBox::GetLastPosition() const
0e320a79 253{
0cf6acbf
DW
254 long lLineLength = 0L;
255 WNDPARAMS vParams;
0e320a79 256
0cf6acbf
DW
257 //
258 // Get number of characters in the last (only) line. We'll add this to the character
37f214d5 259 // index for the last line, 1st position.
0cf6acbf 260 //
0e320a79 261
0e320a79 262
0cf6acbf
DW
263 vParams.fsStatus = WPM_CCHTEXT;
264 if (::WinSendMsg( GetHwnd()
265 ,WM_QUERYWINDOWPARAMS
266 ,&vParams
267 ,0
268 ))
269 {
270 lLineLength = (long)vParams.cchText;
271 }
272 else
273 lLineLength = 0L;
274 return lLineLength;
275} // end of wxComboBox::GetLastPosition
276
6670f564
WS
277void wxComboBox::Replace( long lFrom,
278 long lTo,
279 const wxString& rsValue )
0e320a79 280{
37f214d5 281#if wxUSE_CLIPBOARD
0cf6acbf 282 HWND hWnd = GetHwnd();
0e320a79 283
0cf6acbf 284 //
37f214d5 285 // Set selection and remove it
0cf6acbf
DW
286 //
287 ::WinSendMsg(hWnd, EM_SETSEL, MPFROM2SHORT((USHORT)lFrom, (USHORT)lTo), 0);
288 ::WinSendMsg(hWnd, EM_CUT, (MPARAM)0, (MPARAM)0);
0e320a79 289
0cf6acbf 290 //
37f214d5 291 // Now replace with 'value', by pasting.
0cf6acbf
DW
292 //
293 wxSetClipboardData( wxDF_TEXT
294 ,(wxObject *)rsValue.c_str()
295 ,0
296 ,0
297 );
298
299 //
37f214d5 300 // Paste into edit control
0cf6acbf
DW
301 //
302 ::WinSendMsg(hWnd, EM_PASTE, (MPARAM)0, (MPARAM)0L);
6670f564
WS
303#else
304 wxUnusedVar(lFrom);
305 wxUnusedVar(lTo);
306 wxUnusedVar(rsValue);
37f214d5 307#endif
0cf6acbf 308} // end of wxComboBox::Replace
0e320a79 309
6670f564 310void wxComboBox::Remove( long lFrom, long lTo)
0e320a79 311{
0cf6acbf
DW
312#if wxUSE_CLIPBOARD
313 HWND hWnd = GetHwnd();
0e320a79 314
0cf6acbf
DW
315 ::WinSendMsg(hWnd, EM_SETSEL, MPFROM2SHORT((USHORT)lFrom, (USHORT)lTo), 0);
316 ::WinSendMsg(hWnd, EM_CUT, (MPARAM)0, (MPARAM)0);
6670f564
WS
317#else
318 wxUnusedVar(lFrom);
319 wxUnusedVar(lTo);
0cf6acbf
DW
320#endif
321} // end of wxComboBox::Remove
0e320a79 322
0cf6acbf
DW
323void wxComboBox::SetSelection(
324 long lFrom
325, long lTo
326)
0e320a79 327{
0cf6acbf 328 HWND hWnd = GetHwnd();
9923c37d
DW
329 long lFromChar = 0;
330 long lToChar = 0;
0cf6acbf
DW
331
332 //
333 // If from and to are both -1, it means
77ffb593 334 // (in wxWidgets) that all text should be selected.
37f214d5 335 // This translates into Windows convention
0cf6acbf
DW
336 //
337 if ((lFrom == -1L) && (lTo == -1L))
37f214d5 338 {
0cf6acbf
DW
339 lFromChar = 0;
340 lToChar = -1;
37f214d5
DW
341 }
342
0cf6acbf
DW
343 ::WinSendMsg( hWnd
344 ,EM_SETSEL
345 ,MPFROM2SHORT((USHORT)lFromChar, (USHORT)lToChar)
346 ,(MPARAM)0
347 );
348} // end of wxComboBox::SetSelection
349
350void wxComboBox::DoSetSize(
351 int nX
352, int nY
353, int nWidth
354, int nHeight
355, int nSizeFlags
356)
357{
358 wxControl::DoSetSize( nX
359 ,nY
360 ,nWidth
361 ,nHeight
362 ,nSizeFlags
363 );
364} // end of wxComboBox::DoSetSize
365
366bool wxComboBox::ProcessEditMsg(
367 WXUINT uMsg
368, WXWPARAM wParam
369, WXLPARAM lParam)
0e320a79 370{
0cf6acbf
DW
371 SHORT vFlag;
372 switch (uMsg)
373 {
374 case WM_CHAR:
375 vFlag = SHORT1FROMMP(wParam);
376 switch(vFlag)
377 {
378 case KC_CHAR:
598d8cac 379 return (HandleChar( wParam
0cf6acbf 380 ,lParam
7d8268a1 381 ,true /* isASCII */
0cf6acbf
DW
382 ));
383
384 case KC_PREVDOWN:
a086de98 385 return (HandleKeyDown( wParam
0cf6acbf
DW
386 ,lParam
387 ));
388
389 case KC_KEYUP:
a086de98 390 return (HandleKeyUp( wParam
0cf6acbf
DW
391 ,lParam
392 ));
393 }
394 break;
598d8cac
DW
395
396 case WM_SETFOCUS:
397 if (SHORT1FROMMP((MPARAM)lParam) == TRUE)
398 return(HandleSetFocus((WXHWND)(HWND)wParam));
399 else
400 return(HandleKillFocus((WXHWND)(HWND)wParam));
0cf6acbf 401 }
7d8268a1 402 return false;
0cf6acbf
DW
403} // end of WinGuiBase_CComboBox::ProcessEditMsg
404
405MRESULT EXPENTRY wxComboEditWndProc(
406 HWND hWnd
407, UINT uMessage
408, MPARAM wParam
409, MPARAM lParam
410)
411{
0cf6acbf
DW
412 switch (uMessage)
413 {
414 //
415 // Forward some messages to the combobox
416 //
598d8cac 417 case WM_SETFOCUS:
0cf6acbf
DW
418 case WM_CHAR:
419 {
d804ec69
SN
420 wxComboBox* pCombo = (wxComboBox *)::WinQueryWindowULong( hWnd
421 ,QWL_USER
422 );
0cf6acbf
DW
423
424 if (pCombo->ProcessEditMsg( uMessage
425 ,wParam
426 ,lParam
427 ))
428 return ((MRESULT)0);
429 }
430 break;
431
432 //
433 // TODO: Deal with tooltips here
434 //
435 }
436 return (gfnWndprocEdit(hWnd, (ULONG)uMessage, (MPARAM)wParam, (MPARAM)lParam));
437} // end of wxComboEditWndProc
37f214d5
DW
438
439#endif
440 // wxUSE_COMBOBOX