]> git.saurik.com Git - wxWidgets.git/blame - src/generic/proplist.cpp
show correctly the initially selected colour and update the sliders (patch 484415)
[wxWidgets.git] / src / generic / proplist.cpp
CommitLineData
e3a43801
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: proplist.cpp
3// Purpose: Property list classes
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
29006414 9// Licence: wxWindows licence
e3a43801
JS
10/////////////////////////////////////////////////////////////////////////////
11
22aed133
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
e3a43801 20#ifdef __GNUG__
22aed133 21 #pragma implementation "proplist.h"
e3a43801
JS
22#endif
23
24// For compilers that support precompilation, includes "wx/wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
22aed133 28 #pragma hdrstop
e3a43801
JS
29#endif
30
1e6feb95
VZ
31#if wxUSE_PROPSHEET
32
e3a43801 33#ifndef WX_PRECOMP
22aed133
VZ
34 #include "wx/window.h"
35 #include "wx/font.h"
36 #include "wx/button.h"
37 #include "wx/bmpbuttn.h"
38 #include "wx/textctrl.h"
39 #include "wx/listbox.h"
40 #include "wx/settings.h"
41 #include "wx/msgdlg.h"
42 #include "wx/filedlg.h"
e3a43801
JS
43#endif
44
42b4e99e
RR
45#include "wx/sizer.h"
46#include "wx/module.h"
47#include "wx/intl.h"
48
c693edf3
RR
49#include "wx/colordlg.h"
50#include "wx/proplist.h"
51
e3a43801
JS
52#include <ctype.h>
53#include <stdlib.h>
54#include <math.h>
55#include <string.h>
56
22aed133
VZ
57// ----------------------------------------------------------------------------
58// XPMs
59// ----------------------------------------------------------------------------
60
42b4e99e 61#ifndef __WXMSW__
22aed133
VZ
62 #include "wx/generic/cross.xpm"
63 #include "wx/generic/tick.xpm"
42b4e99e
RR
64#endif
65
22aed133
VZ
66// ----------------------------------------------------------------------------
67// accessor functions for the bitmaps (may return NULL, check for it!)
68// ----------------------------------------------------------------------------
42b4e99e 69
22aed133
VZ
70static wxBitmap *GetTickBitmap();
71static wxBitmap *GetCrossBitmap();
42b4e99e 72
22aed133
VZ
73// ----------------------------------------------------------------------------
74// Property text edit control
75// ----------------------------------------------------------------------------
29006414 76
f6bcfd97 77IMPLEMENT_DYNAMIC_CLASS(wxPropertyTextEdit, wxTextCtrl)
e3a43801
JS
78
79wxPropertyTextEdit::wxPropertyTextEdit(wxPropertyListView *v, wxWindow *parent,
80 const wxWindowID id, const wxString& value,
29006414 81 const wxPoint& pos, const wxSize& size,
e3a43801
JS
82 long style, const wxString& name):
83 wxTextCtrl(parent, id, value, pos, size, style, wxDefaultValidator, name)
84{
85 m_view = v;
86}
87
22aed133 88void wxPropertyTextEdit::OnSetFocus()
e3a43801
JS
89{
90}
91
22aed133 92void wxPropertyTextEdit::OnKillFocus()
e3a43801
JS
93{
94}
95
22aed133
VZ
96// ----------------------------------------------------------------------------
97// Property list view
98// ----------------------------------------------------------------------------
e3a43801 99
42b4e99e
RR
100bool wxPropertyListView::sm_dialogCancelled = FALSE;
101
e3a43801
JS
102IMPLEMENT_DYNAMIC_CLASS(wxPropertyListView, wxPropertyView)
103
104BEGIN_EVENT_TABLE(wxPropertyListView, wxPropertyView)
29006414
VZ
105 EVT_BUTTON(wxID_OK, wxPropertyListView::OnOk)
106 EVT_BUTTON(wxID_CANCEL, wxPropertyListView::OnCancel)
107 EVT_BUTTON(wxID_HELP, wxPropertyListView::OnHelp)
108 EVT_BUTTON(wxID_PROP_CROSS, wxPropertyListView::OnCross)
109 EVT_BUTTON(wxID_PROP_CHECK, wxPropertyListView::OnCheck)
110 EVT_BUTTON(wxID_PROP_EDIT, wxPropertyListView::OnEdit)
111 EVT_TEXT_ENTER(wxID_PROP_TEXT, wxPropertyListView::OnText)
112 EVT_LISTBOX(wxID_PROP_SELECT, wxPropertyListView::OnPropertySelect)
113 EVT_COMMAND(wxID_PROP_SELECT, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED,
114 wxPropertyListView::OnPropertyDoubleClick)
115 EVT_LISTBOX(wxID_PROP_VALUE_SELECT, wxPropertyListView::OnValueListSelect)
e3a43801
JS
116END_EVENT_TABLE()
117
e3a43801
JS
118wxPropertyListView::wxPropertyListView(wxPanel *propPanel, long flags):wxPropertyView(flags)
119{
120 m_propertyScrollingList = NULL;
121 m_valueList = NULL;
122 m_valueText = NULL;
123 m_editButton = NULL;
124 m_confirmButton = NULL;
125 m_cancelButton = NULL;
126 m_propertyWindow = propPanel;
127 m_managedWindow = NULL;
128
129 m_windowCloseButton = NULL;
130 m_windowCancelButton = NULL;
131 m_windowHelpButton = NULL;
132
133 m_detailedEditing = FALSE;
134}
135
22aed133 136wxPropertyListView::~wxPropertyListView()
e3a43801 137{
e3a43801
JS
138}
139
140void wxPropertyListView::ShowView(wxPropertySheet *ps, wxPanel *panel)
141{
142 m_propertySheet = ps;
143
144 AssociatePanel(panel);
145 CreateControls();
146
147 UpdatePropertyList();
148 panel->Layout();
149}
150
151// Update this view of the viewed object, called e.g. by
152// the object itself.
22aed133 153bool wxPropertyListView::OnUpdateView()
e3a43801
JS
154{
155 return TRUE;
156}
157
158bool wxPropertyListView::UpdatePropertyList(bool clearEditArea)
159{
160 if (!m_propertyScrollingList || !m_propertySheet)
161 return FALSE;
162
163 m_propertyScrollingList->Clear();
164 if (clearEditArea)
165 {
166 m_valueList->Clear();
167 m_valueText->SetValue("");
168 }
169 wxNode *node = m_propertySheet->GetProperties().First();
170
171 // Should sort them... later...
172 while (node)
173 {
174 wxProperty *property = (wxProperty *)node->Data();
175 wxString stringValueRepr(property->GetValue().GetStringRepresentation());
176 wxString paddedString(MakeNameValueString(property->GetName(), stringValueRepr));
ee0fc54a 177 m_propertyScrollingList->Append(paddedString.GetData(), (void *)property);
e3a43801
JS
178 node = node->Next();
179 }
180 return TRUE;
181}
182
183bool wxPropertyListView::UpdatePropertyDisplayInList(wxProperty *property)
184{
185 if (!m_propertyScrollingList || !m_propertySheet)
186 return FALSE;
187
8710cf5c 188#ifdef __WXMSW__
e3a43801 189 int currentlySelected = m_propertyScrollingList->GetSelection();
8710cf5c 190#endif
e3a43801
JS
191// #ifdef __WXMSW__
192 wxString stringValueRepr(property->GetValue().GetStringRepresentation());
193 wxString paddedString(MakeNameValueString(property->GetName(), stringValueRepr));
194 int sel = FindListIndexForProperty(property);
195
196 if (sel > -1)
197 {
198 // Don't update the listbox unnecessarily because it can cause
199 // ugly flashing.
29006414 200
e3a43801
JS
201 if (paddedString != m_propertyScrollingList->GetString(sel))
202 m_propertyScrollingList->SetString(sel, paddedString.GetData());
203 }
204//#else
205// UpdatePropertyList(FALSE);
206//#endif
207
208 // TODO: why is this necessary?
209#ifdef __WXMSW__
210 if (currentlySelected > -1)
211 m_propertyScrollingList->SetSelection(currentlySelected);
212#endif
213
214 return TRUE;
215}
216
217// Find the wxListBox index corresponding to this property
218int wxPropertyListView::FindListIndexForProperty(wxProperty *property)
219{
6326010c 220 int n = m_propertyScrollingList->GetCount();
e3a43801
JS
221 for (int i = 0; i < n; i++)
222 {
223 if (property == (wxProperty *)m_propertyScrollingList->wxListBox::GetClientData(i))
224 return i;
225 }
226 return -1;
227}
228
229wxString wxPropertyListView::MakeNameValueString(wxString name, wxString value)
230{
231 wxString theString(name);
232
233 int nameWidth = 25;
234 int padWith = nameWidth - theString.Length();
235 if (padWith < 0)
236 padWith = 0;
237
238 if (GetFlags() & wxPROP_SHOWVALUES)
239 {
240 // Want to pad with spaces
241 theString.Append(' ', padWith);
242 theString += value;
243 }
244
245 return theString;
246}
247
248// Select and show string representation in validator the given
249// property. NULL resets to show no property.
250bool wxPropertyListView::ShowProperty(wxProperty *property, bool select)
251{
252 if (m_currentProperty)
253 {
254 EndShowingProperty(m_currentProperty);
255 m_currentProperty = NULL;
256 }
257
258 m_valueList->Clear();
259 m_valueText->SetValue("");
260
261 if (property)
262 {
263 m_currentProperty = property;
264 BeginShowingProperty(property);
265 }
266 if (select)
267 {
268 int sel = FindListIndexForProperty(property);
269 if (sel > -1)
270 m_propertyScrollingList->SetSelection(sel);
271 }
272 return TRUE;
273}
274
275// Find appropriate validator and load property into value controls
276bool wxPropertyListView::BeginShowingProperty(wxProperty *property)
277{
278 m_currentValidator = FindPropertyValidator(property);
279 if (!m_currentValidator)
280 return FALSE;
281
282 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
283 return FALSE;
284
285 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
286
287 listValidator->OnPrepareControls(property, this, m_propertyWindow);
288 DisplayProperty(property);
289 return TRUE;
290}
291
292// Find appropriate validator and unload property from value controls
293bool wxPropertyListView::EndShowingProperty(wxProperty *property)
294{
295 if (!m_currentValidator)
296 return FALSE;
297
298 RetrieveProperty(property);
299
300 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
301 return FALSE;
302
303 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
304
305 listValidator->OnClearControls(property, this, m_propertyWindow);
306 if (m_detailedEditing)
307 {
308 listValidator->OnClearDetailControls(property, this, m_propertyWindow);
309 m_detailedEditing = FALSE;
310 }
311 return TRUE;
312}
313
22aed133 314void wxPropertyListView::BeginDetailedEditing()
e3a43801
JS
315{
316 if (!m_currentValidator)
317 return;
318 if (!m_currentProperty)
319 return;
320 if (m_detailedEditing)
321 return;
322 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
323 return;
324 if (!m_currentProperty->IsEnabled())
325 return;
326
327 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
328
329 if (listValidator->OnPrepareDetailControls(m_currentProperty, this, m_propertyWindow))
330 m_detailedEditing = TRUE;
331}
332
22aed133 333void wxPropertyListView::EndDetailedEditing()
e3a43801
JS
334{
335 if (!m_currentValidator)
336 return;
337 if (!m_currentProperty)
338 return;
339
340 RetrieveProperty(m_currentProperty);
341
342 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
343 return;
344
345 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
346
347 if (m_detailedEditing)
348 {
349 listValidator->OnClearDetailControls(m_currentProperty, this, m_propertyWindow);
350 m_detailedEditing = FALSE;
351 }
352}
353
354bool wxPropertyListView::DisplayProperty(wxProperty *property)
355{
356 if (!m_currentValidator)
357 return FALSE;
358
359 if (((m_currentValidator->GetFlags() & wxPROP_ALLOW_TEXT_EDITING) == 0) || !property->IsEnabled())
360 m_valueText->SetEditable(FALSE);
361 else
362 m_valueText->SetEditable(TRUE);
363
364 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
365 return FALSE;
366
367 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
368
369 listValidator->OnDisplayValue(property, this, m_propertyWindow);
370 return TRUE;
371}
372
373bool wxPropertyListView::RetrieveProperty(wxProperty *property)
374{
375 if (!m_currentValidator)
376 return FALSE;
377 if (!property->IsEnabled())
378 return FALSE;
379
380 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
381 return FALSE;
382
383 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
384
385 if (listValidator->OnCheckValue(property, this, m_propertyWindow))
386 {
387 if (listValidator->OnRetrieveValue(property, this, m_propertyWindow))
388 {
389 UpdatePropertyDisplayInList(property);
390 OnPropertyChanged(property);
391 }
392 }
393 else
394 {
395 // Revert to old value
396 listValidator->OnDisplayValue(property, this, m_propertyWindow);
397 }
398 return TRUE;
399}
400
401
402bool wxPropertyListView::EditProperty(wxProperty *WXUNUSED(property))
403{
404 return TRUE;
405}
406
407// Called by the listbox callback
408void wxPropertyListView::OnPropertySelect(wxCommandEvent& WXUNUSED(event))
409{
410 int sel = m_propertyScrollingList->GetSelection();
411 if (sel > -1)
412 {
413 wxProperty *newSel = (wxProperty *)m_propertyScrollingList->wxListBox::GetClientData(sel);
414 if (newSel && newSel != m_currentProperty)
415 {
416 ShowProperty(newSel, FALSE);
417 }
418 }
419}
420
42b4e99e 421bool wxPropertyListView::CreateControls()
e3a43801 422{
42b4e99e 423 wxPanel *panel = (wxPanel *)m_propertyWindow;
e3a43801 424
cf1f0870 425 wxSize largeButtonSize( 70, 25 );
42b4e99e 426 wxSize smallButtonSize( 23, 23 );
e3a43801 427
42b4e99e
RR
428 if (m_valueText)
429 return TRUE;
e3a43801 430
42b4e99e
RR
431 if (!panel)
432 return FALSE;
e3a43801 433
42b4e99e
RR
434 wxSystemSettings settings;
435 wxFont guiFont = settings.GetSystemFont(wxSYS_DEFAULT_GUI_FONT);
e3a43801
JS
436
437#ifdef __WXMSW__
bf027a6d 438 wxFont *boringFont = wxTheFontList->FindOrCreateFont(guiFont.GetPointSize(), wxMODERN, wxNORMAL, wxNORMAL, FALSE, "Courier New");
e3a43801 439#else
42b4e99e 440 wxFont *boringFont = wxTheFontList->FindOrCreateFont(guiFont.GetPointSize(), wxTELETYPE, wxNORMAL, wxNORMAL);
e3a43801
JS
441#endif
442
42b4e99e
RR
443 // May need to be changed in future to eliminate clashes with app.
444 // WHAT WAS THIS FOR?
e3a43801
JS
445// panel->SetClientData((char *)this);
446
42b4e99e 447 wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
feeb8165 448
42b4e99e 449 // top row with optional buttons and input line
e3a43801 450
42b4e99e
RR
451 wxBoxSizer *topsizer = new wxBoxSizer( wxHORIZONTAL );
452 int buttonborder = 3;
e3a43801 453
42b4e99e 454 if (m_buttonFlags & wxPROP_BUTTON_CHECK_CROSS)
e3a43801 455 {
22aed133
VZ
456 wxBitmap *tickBitmap = GetTickBitmap();
457 wxBitmap *crossBitmap = GetCrossBitmap();
458
459 if ( tickBitmap && crossBitmap )
42b4e99e 460 {
22aed133
VZ
461 m_confirmButton = new wxBitmapButton(panel, wxID_PROP_CHECK, *tickBitmap, wxPoint(-1, -1), smallButtonSize );
462 m_cancelButton = new wxBitmapButton(panel, wxID_PROP_CROSS, *crossBitmap, wxPoint(-1, -1), smallButtonSize );
42b4e99e
RR
463 }
464 else
465 {
466 m_confirmButton = new wxButton(panel, wxID_PROP_CHECK, ":-)", wxPoint(-1, -1), smallButtonSize );
6e31e940 467 m_cancelButton = new wxButton(panel, wxID_PROP_CROSS, "X", wxPoint(-1, -1), smallButtonSize );
42b4e99e 468 }
6e31e940
VZ
469
470 topsizer->Add( m_confirmButton, 0, wxLEFT|wxTOP|wxBOTTOM | wxEXPAND, buttonborder );
471 topsizer->Add( m_cancelButton, 0, wxLEFT|wxTOP|wxBOTTOM | wxEXPAND, buttonborder );
e3a43801 472 }
42b4e99e 473
feeb8165 474 m_valueText = new wxPropertyTextEdit(this, panel, wxID_PROP_TEXT, "",
42b4e99e
RR
475 wxPoint(-1, -1), wxSize(-1, smallButtonSize.y), wxPROCESS_ENTER);
476 m_valueText->Enable(FALSE);
477 topsizer->Add( m_valueText, 1, wxALL | wxEXPAND, buttonborder );
feeb8165 478
42b4e99e 479 if (m_buttonFlags & wxPROP_PULLDOWN)
e3a43801 480 {
42b4e99e
RR
481 m_editButton = new wxButton(panel, wxID_PROP_EDIT, "...", wxPoint(-1, -1), smallButtonSize);
482 m_editButton->Enable(FALSE);
6e31e940 483 topsizer->Add( m_editButton, 0, wxRIGHT|wxTOP|wxBOTTOM | wxEXPAND, buttonborder );
e3a43801
JS
484 }
485
42b4e99e 486 mainsizer->Add( topsizer, 0, wxEXPAND );
e3a43801 487
42b4e99e 488 // middle section with two list boxes
e3a43801 489
42b4e99e 490 m_middleSizer = new wxBoxSizer( wxVERTICAL );
e3a43801 491
42b4e99e
RR
492 m_valueList = new wxListBox(panel, wxID_PROP_VALUE_SELECT, wxPoint(-1, -1), wxSize(-1, 60));
493 m_valueList->Show(FALSE);
e3a43801 494
42b4e99e
RR
495 m_propertyScrollingList = new wxListBox(panel, wxID_PROP_SELECT, wxPoint(-1, -1), wxSize(100, 100));
496 m_propertyScrollingList->SetFont(* boringFont);
497 m_middleSizer->Add( m_propertyScrollingList, 1, wxALL|wxEXPAND, buttonborder );
e3a43801 498
feeb8165 499 mainsizer->Add( m_middleSizer, 1, wxEXPAND );
e3a43801 500
42b4e99e 501 // bottom row with buttons
e3a43801 502
42b4e99e
RR
503 if ((m_buttonFlags & wxPROP_BUTTON_OK) ||
504 (m_buttonFlags & wxPROP_BUTTON_CLOSE) ||
6e31e940
VZ
505 (m_buttonFlags & wxPROP_BUTTON_CANCEL) ||
506 (m_buttonFlags & wxPROP_BUTTON_HELP))
42b4e99e
RR
507 {
508 wxBoxSizer *bottomsizer = new wxBoxSizer( wxHORIZONTAL );
509 buttonborder = 5;
feeb8165 510
42b4e99e
RR
511 if (m_buttonFlags & wxPROP_BUTTON_OK)
512 {
513 m_windowCloseButton = new wxButton(panel, wxID_OK, _("OK"), wxPoint(-1, -1), largeButtonSize );
514 m_windowCloseButton->SetDefault();
515 m_windowCloseButton->SetFocus();
cf1f0870 516 bottomsizer->Add( m_windowCloseButton, 0, wxALL, buttonborder );
42b4e99e
RR
517 }
518 else if (m_buttonFlags & wxPROP_BUTTON_CLOSE)
519 {
520 m_windowCloseButton = new wxButton(panel, wxID_OK, _("Close"), wxPoint(-1, -1), largeButtonSize );
521 bottomsizer->Add( m_windowCloseButton, 0, wxALL, buttonborder );
522 }
523 if (m_buttonFlags & wxPROP_BUTTON_CANCEL)
524 {
525 m_windowCancelButton = new wxButton(panel, wxID_CANCEL, _("Cancel"), wxPoint(-1, -1), largeButtonSize );
526 bottomsizer->Add( m_windowCancelButton, 0, wxALL, buttonborder );
527 }
528 if (m_buttonFlags & wxPROP_BUTTON_HELP)
529 {
530 m_windowHelpButton = new wxButton(panel, wxID_HELP, _("Help"), wxPoint(-1, -1), largeButtonSize );
531 bottomsizer->Add( m_windowHelpButton, 0, wxALL, buttonborder );
532 }
6e31e940 533
cf1f0870 534 mainsizer->Add( bottomsizer, 0, wxALIGN_RIGHT | wxEXPAND );
42b4e99e 535 }
e3a43801 536
42b4e99e 537 panel->SetSizer( mainsizer );
e3a43801 538
42b4e99e 539 return TRUE;
e3a43801
JS
540}
541
542void wxPropertyListView::ShowTextControl(bool show)
543{
544 if (m_valueText)
545 m_valueText->Show(show);
546}
547
548void wxPropertyListView::ShowListBoxControl(bool show)
549{
42b4e99e 550 if (!m_valueList) return;
feeb8165 551
e3a43801 552 m_valueList->Show(show);
feeb8165 553
e3a43801
JS
554 if (m_buttonFlags & wxPROP_DYNAMIC_VALUE_FIELD)
555 {
e3a43801 556 if (show)
6e31e940
VZ
557 m_middleSizer->Prepend( m_valueList, 0, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, 3 );
558 else
559 m_middleSizer->Remove( 0 );
feeb8165 560
e3a43801 561 m_propertyWindow->Layout();
e3a43801 562 }
e3a43801
JS
563}
564
565void wxPropertyListView::EnableCheck(bool show)
566{
567 if (m_confirmButton)
568 m_confirmButton->Enable(show);
569}
570
571void wxPropertyListView::EnableCross(bool show)
572{
573 if (m_cancelButton)
574 m_cancelButton->Enable(show);
575}
576
22aed133 577bool wxPropertyListView::OnClose()
e3a43801
JS
578{
579 // Retrieve the value if any
580 wxCommandEvent event;
581 OnCheck(event);
29006414 582
e3a43801
JS
583 delete this;
584 return TRUE;
585}
586
587void wxPropertyListView::OnValueListSelect(wxCommandEvent& WXUNUSED(event))
588{
589 if (m_currentProperty && m_currentValidator)
590 {
591 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
592 return;
593
594 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
595
596 listValidator->OnValueListSelect(m_currentProperty, this, m_propertyWindow);
597 }
598}
599
600void wxPropertyListView::OnOk(wxCommandEvent& event)
601{
602 // Retrieve the value if any
603 OnCheck(event);
29006414 604
e3a43801
JS
605 m_managedWindow->Close(TRUE);
606}
607
608void wxPropertyListView::OnCancel(wxCommandEvent& WXUNUSED(event))
609{
610// SetReturnCode(wxID_CANCEL);
611 m_managedWindow->Close(TRUE);
612 sm_dialogCancelled = TRUE;
613}
614
615void wxPropertyListView::OnHelp(wxCommandEvent& WXUNUSED(event))
616{
617}
618
619void wxPropertyListView::OnCheck(wxCommandEvent& WXUNUSED(event))
620{
621 if (m_currentProperty)
622 {
623 RetrieveProperty(m_currentProperty);
624 }
625}
626
627void wxPropertyListView::OnCross(wxCommandEvent& WXUNUSED(event))
628{
629 if (m_currentProperty && m_currentValidator)
630 {
631 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
632 return;
633
634 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
635
636 // Revert to old value
637 listValidator->OnDisplayValue(m_currentProperty, this, m_propertyWindow);
638 }
639}
640
641void wxPropertyListView::OnPropertyDoubleClick(wxCommandEvent& WXUNUSED(event))
642{
643 if (m_currentProperty && m_currentValidator)
644 {
645 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
646 return;
647
648 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
649
650 // Revert to old value
651 listValidator->OnDoubleClick(m_currentProperty, this, m_propertyWindow);
652 }
653}
654
655void wxPropertyListView::OnEdit(wxCommandEvent& WXUNUSED(event))
656{
657 if (m_currentProperty && m_currentValidator)
658 {
659 if (!m_currentValidator->IsKindOf(CLASSINFO(wxPropertyListValidator)))
660 return;
661
662 wxPropertyListValidator *listValidator = (wxPropertyListValidator *)m_currentValidator;
663
664 listValidator->OnEdit(m_currentProperty, this, m_propertyWindow);
665 }
666}
667
668void wxPropertyListView::OnText(wxCommandEvent& event)
669{
670 if (event.GetEventType() == wxEVT_COMMAND_TEXT_ENTER)
671 {
672 OnCheck(event);
673 }
674}
675
22aed133
VZ
676// ----------------------------------------------------------------------------
677// Property dialog box
678// ----------------------------------------------------------------------------
29006414 679
f6bcfd97 680IMPLEMENT_DYNAMIC_CLASS(wxPropertyListDialog, wxDialog)
e3a43801
JS
681
682BEGIN_EVENT_TABLE(wxPropertyListDialog, wxDialog)
29006414 683 EVT_BUTTON(wxID_CANCEL, wxPropertyListDialog::OnCancel)
e3065973 684 EVT_CLOSE(wxPropertyListDialog::OnCloseWindow)
e3a43801
JS
685END_EVENT_TABLE()
686
687wxPropertyListDialog::wxPropertyListDialog(wxPropertyListView *v, wxWindow *parent,
29006414 688 const wxString& title, const wxPoint& pos,
e3a43801
JS
689 const wxSize& size, long style, const wxString& name):
690 wxDialog(parent, -1, title, pos, size, style, name)
691{
692 m_view = v;
693 m_view->AssociatePanel( ((wxPanel*)this) );
694 m_view->SetManagedWindow(this);
695 SetAutoLayout(TRUE);
696}
697
e3065973 698void wxPropertyListDialog::OnCloseWindow(wxCloseEvent& event)
e3a43801
JS
699{
700 if (m_view)
701 {
29006414 702 SetReturnCode(wxID_CANCEL);
e3a43801 703 m_view->OnClose();
29006414
VZ
704 m_view = NULL;
705 this->Destroy();
e3a43801
JS
706 }
707 else
e3065973
JS
708 {
709 event.Veto();
710 }
e3a43801
JS
711}
712
713void wxPropertyListDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
714{
29006414 715 SetReturnCode(wxID_CANCEL);
e3a43801
JS
716 this->Close();
717}
718
8710cf5c 719void wxPropertyListDialog::OnDefaultAction(wxControl *WXUNUSED(item))
e3a43801
JS
720{
721/*
722 if (item == m_view->GetPropertyScrollingList())
723 view->OnDoubleClick();
724*/
725}
726
727// Extend event processing to search the view's event table
728bool wxPropertyListDialog::ProcessEvent(wxEvent& event)
729{
29006414
VZ
730 if ( !m_view || ! m_view->ProcessEvent(event) )
731 return wxEvtHandler::ProcessEvent(event);
732 else
733 return TRUE;
e3a43801
JS
734}
735
22aed133
VZ
736// ----------------------------------------------------------------------------
737// Property panel
738// ----------------------------------------------------------------------------
29006414 739
f6bcfd97 740IMPLEMENT_DYNAMIC_CLASS(wxPropertyListPanel, wxPanel)
e3a43801
JS
741
742BEGIN_EVENT_TABLE(wxPropertyListPanel, wxPanel)
743 EVT_SIZE(wxPropertyListPanel::OnSize)
744END_EVENT_TABLE()
745
746wxPropertyListPanel::~wxPropertyListPanel()
747{
748}
749
8710cf5c 750void wxPropertyListPanel::OnDefaultAction(wxControl *WXUNUSED(item))
e3a43801
JS
751{
752/*
753 if (item == view->GetPropertyScrollingList())
754 view->OnDoubleClick();
755*/
756}
757
758// Extend event processing to search the view's event table
759bool wxPropertyListPanel::ProcessEvent(wxEvent& event)
760{
29006414
VZ
761 if ( !m_view || ! m_view->ProcessEvent(event) )
762 return wxEvtHandler::ProcessEvent(event);
763 else
764 return TRUE;
e3a43801
JS
765}
766
767void wxPropertyListPanel::OnSize(wxSizeEvent& WXUNUSED(event))
768{
769 Layout();
770}
771
22aed133
VZ
772// ----------------------------------------------------------------------------
773// Property frame
774// ----------------------------------------------------------------------------
29006414 775
f6bcfd97 776IMPLEMENT_DYNAMIC_CLASS(wxPropertyListFrame, wxFrame)
e3a43801 777
e3065973
JS
778BEGIN_EVENT_TABLE(wxPropertyListFrame, wxFrame)
779 EVT_CLOSE(wxPropertyListFrame::OnCloseWindow)
780END_EVENT_TABLE()
781
782void wxPropertyListFrame::OnCloseWindow(wxCloseEvent& event)
e3a43801
JS
783{
784 if (m_view)
785 {
786 if (m_propertyPanel)
787 m_propertyPanel->SetView(NULL);
788 m_view->OnClose();
789 m_view = NULL;
e3065973 790 this->Destroy();
e3a43801
JS
791 }
792 else
e3065973
JS
793 {
794 event.Veto();
795 }
e3a43801
JS
796}
797
798wxPropertyListPanel *wxPropertyListFrame::OnCreatePanel(wxFrame *parent, wxPropertyListView *v)
799{
800 return new wxPropertyListPanel(v, parent);
801}
802
22aed133 803bool wxPropertyListFrame::Initialize()
e3a43801
JS
804{
805 m_propertyPanel = OnCreatePanel(this, m_view);
806 if (m_propertyPanel)
807 {
808 m_view->AssociatePanel(m_propertyPanel);
809 m_view->SetManagedWindow(this);
810 m_propertyPanel->SetAutoLayout(TRUE);
811 return TRUE;
812 }
813 else
814 return FALSE;
815}
816
22aed133
VZ
817// ----------------------------------------------------------------------------
818// Property list specific validator
819// ----------------------------------------------------------------------------
29006414 820
e3a43801
JS
821IMPLEMENT_ABSTRACT_CLASS(wxPropertyListValidator, wxPropertyValidator)
822
823bool wxPropertyListValidator::OnSelect(bool select, wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
824{
825// view->GetValueText()->Show(TRUE);
826 if (select)
827 OnDisplayValue(property, view, parentWindow);
828
829 return TRUE;
830}
831
8710cf5c 832bool wxPropertyListValidator::OnValueListSelect(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
833{
834 wxString s(view->GetValueList()->GetStringSelection());
223d09f6 835 if (s != wxT(""))
e3a43801
JS
836 {
837 view->GetValueText()->SetValue(s);
838 view->RetrieveProperty(property);
839 }
840 return TRUE;
841}
842
8710cf5c 843bool wxPropertyListValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
844{
845// view->GetValueText()->Show(TRUE);
846 wxString str(property->GetValue().GetStringRepresentation());
847
848 view->GetValueText()->SetValue(str);
849 return TRUE;
850}
851
852// Called when TICK is pressed or focus is lost or view wants to update
853// the property list.
854// Does the transferance from the property editing area to the property itself
8710cf5c 855bool wxPropertyListValidator::OnRetrieveValue(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
856{
857 if (!view->GetValueText())
858 return FALSE;
859 return FALSE;
860}
861
8710cf5c 862void wxPropertyListValidator::OnEdit(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
863{
864 if (view->GetDetailedEditing())
865 view->EndDetailedEditing();
866 else
867 view->BeginDetailedEditing();
868}
869
8710cf5c 870bool wxPropertyListValidator::OnClearControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
871{
872 if (view->GetConfirmButton())
873 view->GetConfirmButton()->Enable(FALSE);
874 if (view->GetCancelButton())
875 view->GetCancelButton()->Enable(FALSE);
876 if (view->GetEditButton())
877 view->GetEditButton()->Enable(FALSE);
878 return TRUE;
879}
880
22aed133
VZ
881// ----------------------------------------------------------------------------
882// Default validators
883// ----------------------------------------------------------------------------
e3a43801
JS
884
885IMPLEMENT_DYNAMIC_CLASS(wxRealListValidator, wxPropertyListValidator)
886
887///
888/// Real number validator
29006414 889///
8710cf5c 890bool wxRealListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *parentWindow)
e3a43801
JS
891{
892 if (m_realMin == 0.0 && m_realMax == 0.0)
893 return TRUE;
29006414 894
e3a43801
JS
895 if (!view->GetValueText())
896 return FALSE;
897 wxString value(view->GetValueText()->GetValue());
898
899 float val = 0.0;
900 if (!StringToFloat(WXSTRINGCAST value, &val))
901 {
87138c52 902 wxChar buf[200];
223d09f6
KB
903 wxSprintf(buf, wxT("Value %s is not a valid real number!"), value.GetData());
904 wxMessageBox(buf, wxT("Property value error"), wxOK | wxICON_EXCLAMATION, parentWindow);
e3a43801
JS
905 return FALSE;
906 }
29006414 907
e3a43801
JS
908 if (val < m_realMin || val > m_realMax)
909 {
910 char buf[200];
911 sprintf(buf, "Value must be a real number between %.2f and %.2f!", m_realMin, m_realMax);
912 wxMessageBox(buf, "Property value error", wxOK | wxICON_EXCLAMATION, parentWindow);
913 return FALSE;
914 }
915 return TRUE;
916}
917
918// Called when TICK is pressed or focus is lost or view wants to update
919// the property list.
920// Does the transferance from the property editing area to the property itself
8710cf5c 921bool wxRealListValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
922{
923 if (!view->GetValueText())
924 return FALSE;
925
87138c52 926 if (wxStrlen(view->GetValueText()->GetValue()) == 0)
e3a43801 927 return FALSE;
29006414 928
e3a43801 929 wxString value(view->GetValueText()->GetValue());
87138c52 930 float f = (float)wxAtof(value.GetData());
e3a43801
JS
931 property->GetValue() = f;
932 return TRUE;
933}
934
8710cf5c 935bool wxRealListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
936{
937 if (view->GetConfirmButton())
938 view->GetConfirmButton()->Enable(TRUE);
939 if (view->GetCancelButton())
940 view->GetCancelButton()->Enable(TRUE);
941 if (view->GetEditButton())
942 view->GetEditButton()->Enable(FALSE);
943 if (view->GetValueText())
944 view->GetValueText()->Enable(TRUE);
945 return TRUE;
946}
947
948///
949/// Integer validator
29006414 950///
e3a43801
JS
951IMPLEMENT_DYNAMIC_CLASS(wxIntegerListValidator, wxPropertyListValidator)
952
8710cf5c 953bool wxIntegerListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *parentWindow)
e3a43801
JS
954{
955 if (m_integerMin == 0 && m_integerMax == 0)
956 return TRUE;
29006414 957
e3a43801
JS
958 if (!view->GetValueText())
959 return FALSE;
960 wxString value(view->GetValueText()->GetValue());
961
962 long val = 0;
963 if (!StringToLong(WXSTRINGCAST value, &val))
964 {
87138c52 965 wxChar buf[200];
223d09f6
KB
966 wxSprintf(buf, wxT("Value %s is not a valid integer!"), value.GetData());
967 wxMessageBox(buf, wxT("Property value error"), wxOK | wxICON_EXCLAMATION, parentWindow);
e3a43801
JS
968 return FALSE;
969 }
970 if (val < m_integerMin || val > m_integerMax)
971 {
87138c52 972 wxChar buf[200];
223d09f6
KB
973 wxSprintf(buf, wxT("Value must be an integer between %ld and %ld!"), m_integerMin, m_integerMax);
974 wxMessageBox(buf, wxT("Property value error"), wxOK | wxICON_EXCLAMATION, parentWindow);
e3a43801
JS
975 return FALSE;
976 }
977 return TRUE;
978}
979
980// Called when TICK is pressed or focus is lost or view wants to update
981// the property list.
982// Does the transferance from the property editing area to the property itself
8710cf5c 983bool wxIntegerListValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
984{
985 if (!view->GetValueText())
986 return FALSE;
987
87138c52 988 if (wxStrlen(view->GetValueText()->GetValue()) == 0)
e3a43801 989 return FALSE;
29006414 990
e3a43801 991 wxString value(view->GetValueText()->GetValue());
87138c52 992 long val = (long)wxAtoi(value.GetData());
e3a43801
JS
993 property->GetValue() = (long)val;
994 return TRUE;
995}
996
8710cf5c 997bool wxIntegerListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
998{
999 if (view->GetConfirmButton())
1000 view->GetConfirmButton()->Enable(TRUE);
1001 if (view->GetCancelButton())
1002 view->GetCancelButton()->Enable(TRUE);
1003 if (view->GetEditButton())
1004 view->GetEditButton()->Enable(FALSE);
1005 if (view->GetValueText())
1006 view->GetValueText()->Enable(TRUE);
1007 return TRUE;
1008}
1009
1010///
1011/// boolean validator
1012///
1013IMPLEMENT_DYNAMIC_CLASS(wxBoolListValidator, wxPropertyListValidator)
1014
8710cf5c 1015bool wxBoolListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *parentWindow)
e3a43801
JS
1016{
1017 if (!view->GetValueText())
1018 return FALSE;
1019 wxString value(view->GetValueText()->GetValue());
223d09f6 1020 if (value != wxT("True") && value != wxT("False"))
e3a43801 1021 {
223d09f6 1022 wxMessageBox(wxT("Value must be True or False!"), wxT("Property value error"), wxOK | wxICON_EXCLAMATION, parentWindow);
e3a43801
JS
1023 return FALSE;
1024 }
1025 return TRUE;
1026}
1027
1028// Called when TICK is pressed or focus is lost or view wants to update
1029// the property list.
1030// Does the transferance from the property editing area to the property itself
8710cf5c 1031bool wxBoolListValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1032{
1033 if (!view->GetValueText())
1034 return FALSE;
1035
87138c52 1036 if (wxStrlen(view->GetValueText()->GetValue()) == 0)
e3a43801 1037 return FALSE;
29006414 1038
e3a43801
JS
1039 wxString value(view->GetValueText()->GetValue());
1040 bool boolValue = FALSE;
223d09f6 1041 if (value == wxT("True"))
e3a43801
JS
1042 boolValue = TRUE;
1043 else
1044 boolValue = FALSE;
1045 property->GetValue() = (bool)boolValue;
1046 return TRUE;
1047}
1048
8710cf5c 1049bool wxBoolListValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1050{
1051 if (!view->GetValueText())
1052 return FALSE;
1053 wxString str(property->GetValue().GetStringRepresentation());
1054
1055 view->GetValueText()->SetValue(str);
1056
1057 if (view->GetValueList()->IsShown())
1058 {
1059 view->GetValueList()->SetStringSelection(str);
1060 }
1061 return TRUE;
1062}
1063
8710cf5c 1064bool wxBoolListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1065{
1066 if (view->GetConfirmButton())
1067 view->GetConfirmButton()->Enable(FALSE);
1068 if (view->GetCancelButton())
1069 view->GetCancelButton()->Enable(FALSE);
1070 if (view->GetEditButton())
1071 view->GetEditButton()->Enable(TRUE);
1072 if (view->GetValueText())
1073 view->GetValueText()->Enable(FALSE);
1074 return TRUE;
1075}
1076
8710cf5c 1077bool wxBoolListValidator::OnPrepareDetailControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1078{
1079 if (view->GetValueList())
1080 {
1081 view->ShowListBoxControl(TRUE);
1082 view->GetValueList()->Enable(TRUE);
29006414 1083
223d09f6
KB
1084 view->GetValueList()->Append(wxT("True"));
1085 view->GetValueList()->Append(wxT("False"));
87138c52 1086 wxChar *currentString = copystring(view->GetValueText()->GetValue());
e3a43801
JS
1087 view->GetValueList()->SetStringSelection(currentString);
1088 delete[] currentString;
1089 }
1090 return TRUE;
1091}
1092
8710cf5c 1093bool wxBoolListValidator::OnClearDetailControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1094{
1095 if (view->GetValueList())
1096 {
1097 view->GetValueList()->Clear();
1098 view->ShowListBoxControl(FALSE);
1099 view->GetValueList()->Enable(FALSE);
1100 }
1101 return TRUE;
1102}
1103
1104// Called when the property is double clicked. Extra functionality can be provided,
1105// cycling through possible values.
8710cf5c 1106bool wxBoolListValidator::OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1107{
1108 if (!view->GetValueText())
1109 return FALSE;
1110 if (property->GetValue().BoolValue())
1111 property->GetValue() = (bool)FALSE;
1112 else
1113 property->GetValue() = (bool)TRUE;
1114 view->DisplayProperty(property);
1115 view->UpdatePropertyDisplayInList(property);
1116 view->OnPropertyChanged(property);
1117 return TRUE;
1118}
1119
1120///
1121/// String validator
29006414 1122///
e3a43801
JS
1123IMPLEMENT_DYNAMIC_CLASS(wxStringListValidator, wxPropertyListValidator)
1124
1125wxStringListValidator::wxStringListValidator(wxStringList *list, long flags):
1126 wxPropertyListValidator(flags)
1127{
1128 m_strings = list;
1129 // If no constraint, we just allow the string to be edited.
1130 if (!m_strings && ((m_validatorFlags & wxPROP_ALLOW_TEXT_EDITING) == 0))
1131 m_validatorFlags |= wxPROP_ALLOW_TEXT_EDITING;
1132}
1133
8710cf5c 1134bool wxStringListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *parentWindow)
e3a43801
JS
1135{
1136 if (!m_strings)
1137 return TRUE;
1138
1139 if (!view->GetValueText())
1140 return FALSE;
1141 wxString value(view->GetValueText()->GetValue());
1142
1143 if (!m_strings->Member(value.GetData()))
1144 {
1145 wxString s("Value ");
1146 s += value.GetData();
1147 s += " is not valid.";
1148 wxMessageBox(s.GetData(), "Property value error", wxOK | wxICON_EXCLAMATION, parentWindow);
1149 return FALSE;
1150 }
1151 return TRUE;
1152}
1153
1154// Called when TICK is pressed or focus is lost or view wants to update
1155// the property list.
1156// Does the transferance from the property editing area to the property itself
8710cf5c 1157bool wxStringListValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1158{
1159 if (!view->GetValueText())
1160 return FALSE;
1161 wxString value(view->GetValueText()->GetValue());
1162 property->GetValue() = value ;
1163 return TRUE;
1164}
1165
1166// Called when TICK is pressed or focus is lost or view wants to update
1167// the property list.
1168// Does the transferance from the property editing area to the property itself
8710cf5c 1169bool wxStringListValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1170{
1171 if (!view->GetValueText())
1172 return FALSE;
1173 wxString str(property->GetValue().GetStringRepresentation());
1174 view->GetValueText()->SetValue(str);
6326010c 1175 if (m_strings && view->GetValueList() && view->GetValueList()->IsShown() && view->GetValueList()->GetCount() > 0)
e3a43801
JS
1176 {
1177 view->GetValueList()->SetStringSelection(str);
1178 }
1179 return TRUE;
1180}
1181
8710cf5c 1182bool wxStringListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1183{
1184 // Unconstrained
1185 if (!m_strings)
1186 {
1187 if (view->GetEditButton())
1188 view->GetEditButton()->Enable(FALSE);
1189 if (view->GetConfirmButton())
1190 view->GetConfirmButton()->Enable(TRUE);
1191 if (view->GetCancelButton())
1192 view->GetCancelButton()->Enable(TRUE);
1193 if (view->GetValueText())
1194 view->GetValueText()->Enable(TRUE);
1195 return TRUE;
1196 }
29006414 1197
e3a43801
JS
1198 // Constrained
1199 if (view->GetValueText())
1200 view->GetValueText()->Enable(FALSE);
1201
1202 if (view->GetEditButton())
1203 view->GetEditButton()->Enable(TRUE);
1204
1205 if (view->GetConfirmButton())
1206 view->GetConfirmButton()->Enable(FALSE);
1207 if (view->GetCancelButton())
1208 view->GetCancelButton()->Enable(FALSE);
1209 return TRUE;
1210}
1211
8710cf5c 1212bool wxStringListValidator::OnPrepareDetailControls(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1213{
1214 if (view->GetValueList())
1215 {
1216 view->ShowListBoxControl(TRUE);
1217 view->GetValueList()->Enable(TRUE);
1218 wxNode *node = m_strings->First();
1219 while (node)
1220 {
87138c52 1221 wxChar *s = (wxChar *)node->Data();
e3a43801
JS
1222 view->GetValueList()->Append(s);
1223 node = node->Next();
1224 }
87138c52 1225 wxChar *currentString = property->GetValue().StringValue();
e3a43801
JS
1226 view->GetValueList()->SetStringSelection(currentString);
1227 }
1228 return TRUE;
1229}
1230
8710cf5c 1231bool wxStringListValidator::OnClearDetailControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1232{
1233 if (!m_strings)
1234 {
1235 return TRUE;
1236 }
1237
1238 if (view->GetValueList())
1239 {
1240 view->GetValueList()->Clear();
1241 view->ShowListBoxControl(FALSE);
1242 view->GetValueList()->Enable(FALSE);
1243 }
1244 return TRUE;
1245}
1246
1247// Called when the property is double clicked. Extra functionality can be provided,
1248// cycling through possible values.
8710cf5c 1249bool wxStringListValidator::OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1250{
1251 if (!view->GetValueText())
1252 return FALSE;
1253 if (!m_strings)
1254 return FALSE;
1255
1256 wxNode *node = m_strings->First();
87138c52 1257 wxChar *currentString = property->GetValue().StringValue();
e3a43801
JS
1258 while (node)
1259 {
87138c52
OK
1260 wxChar *s = (wxChar *)node->Data();
1261 if (wxStrcmp(s, currentString) == 0)
e3a43801 1262 {
87138c52 1263 wxChar *nextString = NULL;
e3a43801 1264 if (node->Next())
87138c52 1265 nextString = (wxChar *)node->Next()->Data();
e3a43801 1266 else
87138c52 1267 nextString = (wxChar *)m_strings->First()->Data();
e3a43801
JS
1268 property->GetValue() = wxString(nextString);
1269 view->DisplayProperty(property);
1270 view->UpdatePropertyDisplayInList(property);
1271 view->OnPropertyChanged(property);
1272 return TRUE;
1273 }
1274 else node = node->Next();
1275 }
1276 return TRUE;
1277}
1278
1279///
1280/// Filename validator
29006414 1281///
e3a43801
JS
1282IMPLEMENT_DYNAMIC_CLASS(wxFilenameListValidator, wxPropertyListValidator)
1283
1284wxFilenameListValidator::wxFilenameListValidator(wxString message , wxString wildcard, long flags):
1285 wxPropertyListValidator(flags), m_filenameWildCard(wildcard), m_filenameMessage(message)
1286{
1287}
1288
22aed133 1289wxFilenameListValidator::~wxFilenameListValidator()
e3a43801
JS
1290{
1291}
1292
8710cf5c 1293bool wxFilenameListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *WXUNUSED(view), wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1294{
1295 return TRUE;
1296}
1297
1298// Called when TICK is pressed or focus is lost or view wants to update
1299// the property list.
1300// Does the transferance from the property editing area to the property itself
8710cf5c 1301bool wxFilenameListValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1302{
1303 if (!view->GetValueText())
1304 return FALSE;
1305 wxString value(view->GetValueText()->GetValue());
1306 property->GetValue() = value ;
1307 return TRUE;
1308}
1309
1310// Called when TICK is pressed or focus is lost or view wants to update
1311// the property list.
1312// Does the transferance from the property editing area to the property itself
8710cf5c 1313bool wxFilenameListValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1314{
1315 if (!view->GetValueText())
1316 return FALSE;
1317 wxString str(property->GetValue().GetStringRepresentation());
1318 view->GetValueText()->SetValue(str);
1319 return TRUE;
1320}
1321
1322// Called when the property is double clicked. Extra functionality can be provided,
1323// cycling through possible values.
1324bool wxFilenameListValidator::OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
1325{
1326 if (!view->GetValueText())
1327 return FALSE;
1328 OnEdit(property, view, parentWindow);
1329 return TRUE;
1330}
1331
8710cf5c 1332bool wxFilenameListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1333{
1334 if (view->GetConfirmButton())
1335 view->GetConfirmButton()->Enable(TRUE);
1336 if (view->GetCancelButton())
1337 view->GetCancelButton()->Enable(TRUE);
1338 if (view->GetEditButton())
1339 view->GetEditButton()->Enable(TRUE);
1340 if (view->GetValueText())
1341 view->GetValueText()->Enable((GetFlags() & wxPROP_ALLOW_TEXT_EDITING) == wxPROP_ALLOW_TEXT_EDITING);
1342 return TRUE;
1343}
1344
1345void wxFilenameListValidator::OnEdit(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
1346{
1347 if (!view->GetValueText())
1348 return;
1349
227869da 1350 wxString s = wxFileSelector(
e3a43801
JS
1351 m_filenameMessage.GetData(),
1352 wxPathOnly(property->GetValue().StringValue()),
1353 wxFileNameFromPath(property->GetValue().StringValue()),
1354 NULL,
1355 m_filenameWildCard.GetData(),
1356 0,
1357 parentWindow);
223d09f6 1358 if (s != wxT(""))
e3a43801 1359 {
227869da 1360 property->GetValue() = s;
e3a43801
JS
1361 view->DisplayProperty(property);
1362 view->UpdatePropertyDisplayInList(property);
1363 view->OnPropertyChanged(property);
1364 }
1365}
1366
1367///
1368/// Colour validator
29006414 1369///
e3a43801
JS
1370IMPLEMENT_DYNAMIC_CLASS(wxColourListValidator, wxPropertyListValidator)
1371
1372wxColourListValidator::wxColourListValidator(long flags):
1373 wxPropertyListValidator(flags)
1374{
1375}
1376
22aed133 1377wxColourListValidator::~wxColourListValidator()
e3a43801
JS
1378{
1379}
1380
8710cf5c 1381bool wxColourListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *WXUNUSED(view), wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1382{
1383 return TRUE;
1384}
1385
1386// Called when TICK is pressed or focus is lost or view wants to update
1387// the property list.
1388// Does the transferance from the property editing area to the property itself
8710cf5c 1389bool wxColourListValidator::OnRetrieveValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1390{
1391 if (!view->GetValueText())
1392 return FALSE;
1393 wxString value(view->GetValueText()->GetValue());
29006414 1394
e3a43801
JS
1395 property->GetValue() = value ;
1396 return TRUE;
1397}
1398
1399// Called when TICK is pressed or focus is lost or view wants to update
1400// the property list.
1401// Does the transferance from the property editing area to the property itself
8710cf5c 1402bool wxColourListValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1403{
1404 if (!view->GetValueText())
1405 return FALSE;
1406 wxString str(property->GetValue().GetStringRepresentation());
1407 view->GetValueText()->SetValue(str);
1408 return TRUE;
1409}
1410
1411// Called when the property is double clicked. Extra functionality can be provided,
1412// cycling through possible values.
1413bool wxColourListValidator::OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
1414{
1415 if (!view->GetValueText())
1416 return FALSE;
1417 OnEdit(property, view, parentWindow);
1418 return TRUE;
1419}
1420
8710cf5c 1421bool wxColourListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1422{
1423 if (view->GetConfirmButton())
1424 view->GetConfirmButton()->Enable(TRUE);
1425 if (view->GetCancelButton())
1426 view->GetCancelButton()->Enable(TRUE);
1427 if (view->GetEditButton())
1428 view->GetEditButton()->Enable(TRUE);
1429 if (view->GetValueText())
1430 view->GetValueText()->Enable((GetFlags() & wxPROP_ALLOW_TEXT_EDITING) == wxPROP_ALLOW_TEXT_EDITING);
1431 return TRUE;
1432}
1433
1434void wxColourListValidator::OnEdit(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
1435{
1436 if (!view->GetValueText())
1437 return;
29006414 1438
87138c52 1439 wxChar *s = property->GetValue().StringValue();
e3a43801
JS
1440 int r = 0;
1441 int g = 0;
1442 int b = 0;
1443 if (s)
1444 {
1445 r = wxHexToDec(s);
1446 g = wxHexToDec(s+2);
1447 b = wxHexToDec(s+4);
1448 }
29006414 1449
e3a43801 1450 wxColour col(r,g,b);
29006414 1451
e3a43801
JS
1452 wxColourData data;
1453 data.SetChooseFull(TRUE);
1454 data.SetColour(col);
29006414 1455
e3a43801
JS
1456 for (int i = 0; i < 16; i++)
1457 {
1458 wxColour colour(i*16, i*16, i*16);
1459 data.SetCustomColour(i, colour);
1460 }
29006414 1461
e3a43801
JS
1462 wxColourDialog dialog(parentWindow, &data);
1463 if (dialog.ShowModal() != wxID_CANCEL)
1464 {
1465 wxColourData retData = dialog.GetColourData();
1466 col = retData.GetColour();
29006414 1467
87138c52 1468 wxChar buf[7];
e3a43801
JS
1469 wxDecToHex(col.Red(), buf);
1470 wxDecToHex(col.Green(), buf+2);
1471 wxDecToHex(col.Blue(), buf+4);
1472
1473 property->GetValue() = wxString(buf);
1474 view->DisplayProperty(property);
1475 view->UpdatePropertyDisplayInList(property);
1476 view->OnPropertyChanged(property);
1477 }
1478}
1479
1480///
1481/// List of strings validator. For this we need more user interface than
1482/// we get with a property list; so create a new dialog for editing the list.
1483///
1484IMPLEMENT_DYNAMIC_CLASS(wxListOfStringsListValidator, wxPropertyListValidator)
1485
1486wxListOfStringsListValidator::wxListOfStringsListValidator(long flags):
1487 wxPropertyListValidator(flags)
1488{
1489}
1490
8710cf5c 1491bool wxListOfStringsListValidator::OnCheckValue(wxProperty *WXUNUSED(property), wxPropertyListView *WXUNUSED(view), wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1492{
1493 // No constraints for an arbitrary, user-editable list of strings.
1494 return TRUE;
1495}
1496
1497// Called when TICK is pressed or focus is lost or view wants to update
1498// the property list.
1499// Does the transferance from the property editing area to the property itself.
1500// In this case, the user cannot directly edit the string list.
8710cf5c 1501bool wxListOfStringsListValidator::OnRetrieveValue(wxProperty *WXUNUSED(property), wxPropertyListView *WXUNUSED(view), wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1502{
1503 return TRUE;
1504}
1505
8710cf5c 1506bool wxListOfStringsListValidator::OnDisplayValue(wxProperty *property, wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1507{
1508 if (!view->GetValueText())
1509 return FALSE;
1510 wxString str(property->GetValue().GetStringRepresentation());
1511 view->GetValueText()->SetValue(str);
1512 return TRUE;
1513}
1514
8710cf5c 1515bool wxListOfStringsListValidator::OnPrepareControls(wxProperty *WXUNUSED(property), wxPropertyListView *view, wxWindow *WXUNUSED(parentWindow))
e3a43801
JS
1516{
1517 if (view->GetEditButton())
1518 view->GetEditButton()->Enable(TRUE);
1519 if (view->GetValueText())
1520 view->GetValueText()->Enable(FALSE);
1521
1522 if (view->GetConfirmButton())
1523 view->GetConfirmButton()->Enable(FALSE);
1524 if (view->GetCancelButton())
1525 view->GetCancelButton()->Enable(FALSE);
1526 return TRUE;
1527}
1528
1529// Called when the property is double clicked. Extra functionality can be provided,
1530// cycling through possible values.
1531bool wxListOfStringsListValidator::OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
1532{
1533 OnEdit(property, view, parentWindow);
1534 return TRUE;
1535}
1536
1537void wxListOfStringsListValidator::OnEdit(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow)
1538{
1539 // Convert property value to a list of strings for editing
1540 wxStringList *stringList = new wxStringList;
29006414 1541
e3a43801
JS
1542 wxPropertyValue *expr = property->GetValue().GetFirst();
1543 while (expr)
1544 {
87138c52 1545 wxChar *s = expr->StringValue();
e3a43801
JS
1546 if (s)
1547 stringList->Add(s);
1548 expr = expr->GetNext();
1549 }
29006414 1550
223d09f6 1551 wxString title(wxT("Editing "));
e3a43801 1552 title += property->GetName();
29006414 1553
e3a43801
JS
1554 if (EditStringList(parentWindow, stringList, title.GetData()))
1555 {
1556 wxPropertyValue& oldValue = property->GetValue();
1557 oldValue.ClearList();
1558 wxNode *node = stringList->First();
1559 while (node)
1560 {
87138c52 1561 wxChar *s = (wxChar *)node->Data();
e3a43801 1562 oldValue.Append(new wxPropertyValue(s));
29006414 1563
e3a43801
JS
1564 node = node->Next();
1565 }
29006414 1566
e3a43801
JS
1567 view->DisplayProperty(property);
1568 view->UpdatePropertyDisplayInList(property);
1569 view->OnPropertyChanged(property);
1570 }
1571 delete stringList;
1572}
1573
1574class wxPropertyStringListEditorDialog: public wxDialog
1575{
1576 public:
1577 wxPropertyStringListEditorDialog(wxWindow *parent, const wxString& title,
29006414
VZ
1578 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
1579 long windowStyle = wxDEFAULT_DIALOG_STYLE, const wxString& name = "stringEditorDialogBox"):
1580 wxDialog(parent, -1, title, pos, size, windowStyle, name)
e3a43801
JS
1581 {
1582 m_stringList = NULL;
1583 m_stringText = NULL;
1584 m_listBox = NULL;
1585 sm_dialogCancelled = FALSE;
1586 m_currentSelection = -1;
1587 }
1588 ~wxPropertyStringListEditorDialog(void) {}
3b1e466c 1589 void OnCloseWindow(wxCloseEvent& event);
e3a43801
JS
1590 void SaveCurrentSelection(void);
1591 void ShowCurrentSelection(void);
1592
29006414
VZ
1593 void OnOK(wxCommandEvent& event);
1594 void OnCancel(wxCommandEvent& event);
1595 void OnAdd(wxCommandEvent& event);
1596 void OnDelete(wxCommandEvent& event);
1597 void OnStrings(wxCommandEvent& event);
1598 void OnText(wxCommandEvent& event);
e3a43801
JS
1599
1600public:
1601 wxStringList* m_stringList;
1602 wxListBox* m_listBox;
1603 wxTextCtrl* m_stringText;
1604 static bool sm_dialogCancelled;
1605 int m_currentSelection;
1606DECLARE_EVENT_TABLE()
1607};
1608
29006414
VZ
1609#define wxID_PROP_SL_ADD 3000
1610#define wxID_PROP_SL_DELETE 3001
1611#define wxID_PROP_SL_STRINGS 3002
1612#define wxID_PROP_SL_TEXT 3003
e3a43801
JS
1613
1614BEGIN_EVENT_TABLE(wxPropertyStringListEditorDialog, wxDialog)
29006414
VZ
1615 EVT_BUTTON(wxID_OK, wxPropertyStringListEditorDialog::OnOK)
1616 EVT_BUTTON(wxID_CANCEL, wxPropertyStringListEditorDialog::OnCancel)
1617 EVT_BUTTON(wxID_PROP_SL_ADD, wxPropertyStringListEditorDialog::OnAdd)
1618 EVT_BUTTON(wxID_PROP_SL_DELETE, wxPropertyStringListEditorDialog::OnDelete)
1619 EVT_LISTBOX(wxID_PROP_SL_STRINGS, wxPropertyStringListEditorDialog::OnStrings)
1620 EVT_TEXT_ENTER(wxID_PROP_SL_TEXT, wxPropertyStringListEditorDialog::OnText)
3b1e466c 1621 EVT_CLOSE(wxPropertyStringListEditorDialog::OnCloseWindow)
e3a43801
JS
1622END_EVENT_TABLE()
1623
1624class wxPropertyStringListEditorText: public wxTextCtrl
1625{
1626 public:
1627 wxPropertyStringListEditorText(wxWindow *parent, wxWindowID id, const wxString& val,
29006414 1628 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
e3a43801
JS
1629 long windowStyle = 0, const wxString& name = "text"):
1630 wxTextCtrl(parent, id, val, pos, size, windowStyle, wxDefaultValidator, name)
1631 {
1632 }
22aed133 1633 void OnKillFocus()
e3a43801
JS
1634 {
1635 wxPropertyStringListEditorDialog *dialog = (wxPropertyStringListEditorDialog *)GetParent();
1636 dialog->SaveCurrentSelection();
1637 }
1638};
1639
1640bool wxPropertyStringListEditorDialog::sm_dialogCancelled = FALSE;
1641
1642// Edit the string list.
87138c52 1643bool wxListOfStringsListValidator::EditStringList(wxWindow *parent, wxStringList *stringList, const wxChar *title)
e3a43801
JS
1644{
1645 int largeButtonWidth = 60;
1646 int largeButtonHeight = 25;
1647
1648 wxBeginBusyCursor();
1649 wxPropertyStringListEditorDialog *dialog = new wxPropertyStringListEditorDialog(parent,
29006414
VZ
1650 title, wxPoint(10, 10), wxSize(400, 400), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL);
1651
e3a43801 1652 dialog->m_stringList = stringList;
29006414 1653
e3a43801
JS
1654 dialog->m_listBox = new wxListBox(dialog, wxID_PROP_SL_STRINGS,
1655 wxPoint(-1, -1), wxSize(-1, -1), 0, NULL, wxLB_SINGLE);
1656
1657 dialog->m_stringText = new wxPropertyStringListEditorText(dialog,
1658 wxID_PROP_SL_TEXT, "", wxPoint(5, 240),
1659 wxSize(300, -1), wxPROCESS_ENTER);
1660 dialog->m_stringText->Enable(FALSE);
1661
1662 wxButton *addButton = new wxButton(dialog, wxID_PROP_SL_ADD, "Add", wxPoint(-1, -1), wxSize(largeButtonWidth, largeButtonHeight));
1663 wxButton *deleteButton = new wxButton(dialog, wxID_PROP_SL_DELETE, "Delete", wxPoint(-1, -1), wxSize(largeButtonWidth, largeButtonHeight));
1664 wxButton *cancelButton = new wxButton(dialog, wxID_CANCEL, "Cancel", wxPoint(-1, -1), wxSize(largeButtonWidth, largeButtonHeight));
1665 wxButton *okButton = new wxButton(dialog, wxID_OK, "OK", wxPoint(-1, -1), wxSize(largeButtonWidth, largeButtonHeight));
1666
42b4e99e 1667#ifndef __WXGTK__
e3a43801 1668 okButton->SetDefault();
42b4e99e 1669#endif
e3a43801
JS
1670
1671 wxLayoutConstraints *c = new wxLayoutConstraints;
1672
1673 c->top.SameAs (dialog, wxTop, 2);
1674 c->left.SameAs (dialog, wxLeft, 2);
1675 c->right.SameAs (dialog, wxRight, 2);
1676 c->bottom.SameAs (dialog->m_stringText, wxTop, 2);
1677 dialog->m_listBox->SetConstraints(c);
1678
1679 c = new wxLayoutConstraints;
1680 c->left.SameAs (dialog, wxLeft, 2);
1681 c->right.SameAs (dialog, wxRight, 2);
1682 c->bottom.SameAs (addButton, wxTop, 2);
1683 c->height.AsIs();
1684 dialog->m_stringText->SetConstraints(c);
1685
1686 c = new wxLayoutConstraints;
1687 c->bottom.SameAs (dialog, wxBottom, 2);
1688 c->left.SameAs (dialog, wxLeft, 2);
1689 c->width.AsIs();
1690 c->height.AsIs();
1691 addButton->SetConstraints(c);
1692
1693 c = new wxLayoutConstraints;
1694 c->bottom.SameAs (dialog, wxBottom, 2);
1695 c->left.SameAs (addButton, wxRight, 2);
1696 c->width.AsIs();
1697 c->height.AsIs();
1698 deleteButton->SetConstraints(c);
1699
1700 c = new wxLayoutConstraints;
1701 c->bottom.SameAs (dialog, wxBottom, 2);
1702 c->right.SameAs (dialog, wxRight, 2);
1703 c->width.AsIs();
1704 c->height.AsIs();
1705 cancelButton->SetConstraints(c);
1706
1707 c = new wxLayoutConstraints;
1708 c->bottom.SameAs (dialog, wxBottom, 2);
1709 c->right.SameAs (cancelButton, wxLeft, 2);
1710 c->width.AsIs();
1711 c->height.AsIs();
1712 okButton->SetConstraints(c);
1713
1714 wxNode *node = stringList->First();
1715 while (node)
1716 {
1717 char *str = (char *)node->Data();
1718 // Save node as client data for each listbox item
1719 dialog->m_listBox->Append(str, (char *)node);
1720 node = node->Next();
1721 }
1722
1723 dialog->SetClientSize(310, 305);
1724 dialog->Layout();
1725
1726 dialog->Centre(wxBOTH);
1727 wxEndBusyCursor();
1728 if (dialog->ShowModal() == wxID_CANCEL)
29006414 1729 return FALSE;
e3a43801 1730 else
29006414 1731 return TRUE;
e3a43801
JS
1732}
1733
1734/*
1735 * String list editor callbacks
1736 *
1737 */
1738
1739void wxPropertyStringListEditorDialog::OnStrings(wxCommandEvent& WXUNUSED(event))
1740{
1741 int sel = m_listBox->GetSelection();
1742 if (sel > -1)
1743 {
1744 m_currentSelection = sel;
1745
1746 ShowCurrentSelection();
1747 }
1748}
1749
1750void wxPropertyStringListEditorDialog::OnDelete(wxCommandEvent& WXUNUSED(event))
1751{
1752 int sel = m_listBox->GetSelection();
1753 if (sel == -1)
1754 return;
29006414 1755
e3a43801
JS
1756 wxNode *node = (wxNode *)m_listBox->wxListBox::GetClientData(sel);
1757 if (!node)
1758 return;
29006414 1759
e3a43801 1760 m_listBox->Delete(sel);
87138c52 1761 delete[] (wxChar *)node->Data();
e3a43801
JS
1762 delete node;
1763 m_currentSelection = -1;
1764 m_stringText->SetValue("");
1765}
1766
1767void wxPropertyStringListEditorDialog::OnAdd(wxCommandEvent& WXUNUSED(event))
1768{
1769 SaveCurrentSelection();
29006414 1770
223d09f6 1771 wxChar *initialText = wxT("");
e3a43801 1772 wxNode *node = m_stringList->Add(initialText);
ee0fc54a 1773 m_listBox->Append(initialText, (void *)node);
e3a43801
JS
1774 m_currentSelection = m_stringList->Number() - 1;
1775 m_listBox->SetSelection(m_currentSelection);
1776 ShowCurrentSelection();
1777 m_stringText->SetFocus();
1778}
1779
1780void wxPropertyStringListEditorDialog::OnOK(wxCommandEvent& WXUNUSED(event))
1781{
1782 SaveCurrentSelection();
1783 EndModal(wxID_OK);
3b1e466c
JS
1784 // Close(TRUE);
1785 this->Destroy();
e3a43801
JS
1786}
1787
1788void wxPropertyStringListEditorDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
1789{
1790 sm_dialogCancelled = TRUE;
1791 EndModal(wxID_CANCEL);
3b1e466c
JS
1792// Close(TRUE);
1793 this->Destroy();
e3a43801
JS
1794}
1795
1796void wxPropertyStringListEditorDialog::OnText(wxCommandEvent& event)
1797{
2432b92d 1798 if (event.GetEventType() == wxEVT_COMMAND_TEXT_ENTER)
e3a43801
JS
1799 {
1800 SaveCurrentSelection();
1801 }
1802}
1803
6e31e940
VZ
1804void
1805wxPropertyStringListEditorDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
e3a43801
JS
1806{
1807 SaveCurrentSelection();
6e31e940
VZ
1808
1809 Destroy();
e3a43801
JS
1810}
1811
22aed133 1812void wxPropertyStringListEditorDialog::SaveCurrentSelection()
e3a43801
JS
1813{
1814 if (m_currentSelection == -1)
1815 return;
29006414 1816
e3a43801
JS
1817 wxNode *node = (wxNode *)m_listBox->wxListBox::GetClientData(m_currentSelection);
1818 if (!node)
1819 return;
29006414 1820
e3a43801
JS
1821 wxString txt(m_stringText->GetValue());
1822 if (node->Data())
1823 delete[] (char *)node->Data();
1824 node->SetData((wxObject *)copystring(txt));
29006414 1825
e3a43801
JS
1826 m_listBox->SetString(m_currentSelection, (char *)node->Data());
1827}
1828
22aed133 1829void wxPropertyStringListEditorDialog::ShowCurrentSelection()
e3a43801
JS
1830{
1831 if (m_currentSelection == -1)
1832 {
1833 m_stringText->SetValue("");
1834 return;
1835 }
1836 wxNode *node = (wxNode *)m_listBox->wxListBox::GetClientData(m_currentSelection);
1837 char *txt = (char *)node->Data();
1838 m_stringText->SetValue(txt);
1839 m_stringText->Enable(TRUE);
1840}
1841
22aed133
VZ
1842// ----------------------------------------------------------------------------
1843// global functions
1844// ----------------------------------------------------------------------------
42b4e99e 1845
22aed133
VZ
1846// FIXME MT-UNSAFE
1847static wxBitmap *GetTickBitmap()
42b4e99e 1848{
22aed133
VZ
1849 static wxBitmap* s_tickBitmap = (wxBitmap *) NULL;
1850 static bool s_loaded = FALSE;
42b4e99e 1851
22aed133 1852 if ( !s_loaded )
42b4e99e 1853 {
22aed133
VZ
1854 s_loaded = TRUE; // set it to TRUE anyhow, we won't try again
1855
5c3beb8e 1856 #if defined(__WXMSW__) || defined(__WXPM__)
22aed133
VZ
1857 s_tickBitmap = new wxBitmap("tick_bmp", wxBITMAP_TYPE_RESOURCE);
1858 #else
1859 s_tickBitmap = new wxBitmap( tick_xpm );
1860 #endif
42b4e99e
RR
1861 }
1862
22aed133 1863 return s_tickBitmap;
42b4e99e
RR
1864}
1865
22aed133 1866static wxBitmap *GetCrossBitmap()
42b4e99e 1867{
22aed133
VZ
1868 static wxBitmap* s_crossBitmap = (wxBitmap *) NULL;
1869 static bool s_loaded = FALSE;
1870
1871 if ( !s_loaded )
1872 {
1873 s_loaded = TRUE; // set it to TRUE anyhow, we won't try again
1874
5c3beb8e 1875 #if defined(__WXMSW__) || defined(__WXPM__)
22aed133
VZ
1876 s_crossBitmap = new wxBitmap("cross_bmp", wxBITMAP_TYPE_RESOURCE);
1877 #else // XPMs
1878 s_crossBitmap = new wxBitmap( cross_xpm );
1879 #endif // BMPs/XPMs
1880 }
1881
1882 return s_crossBitmap;
42b4e99e
RR
1883}
1884
1e6feb95 1885#endif // wxUSE_PROPSHEET