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