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