1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/props.h
3 // Purpose: wxPropertyGrid Property Classes
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROPGRID_PROPS_H_
13 #define _WX_PROPGRID_PROPS_H_
17 // -----------------------------------------------------------------------
19 class wxArrayEditorDialog
;
21 #include "wx/propgrid/editors.h"
23 #include "wx/filename.h"
24 #include "wx/dialog.h"
25 #include "wx/textctrl.h"
26 #include "wx/button.h"
27 #include "wx/listbox.h"
29 // -----------------------------------------------------------------------
32 // Property class implementation helper macros.
35 #define WX_PG_IMPLEMENT_PROPERTY_CLASS(NAME, UPCLASS, T, T_AS_ARG, EDITOR) \
36 IMPLEMENT_DYNAMIC_CLASS(NAME, UPCLASS) \
37 WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(NAME, T, EDITOR)
39 // -----------------------------------------------------------------------
42 // These macros help creating DoGetValidator
43 #define WX_PG_DOGETVALIDATOR_ENTRY() \
44 static wxValidator* s_ptr = NULL; \
45 if ( s_ptr ) return s_ptr;
47 // Common function exit
48 #define WX_PG_DOGETVALIDATOR_EXIT(VALIDATOR) \
50 wxPGGlobalVars->m_arrValidators.push_back( VALIDATOR ); \
53 // -----------------------------------------------------------------------
57 /** @class wxPGInDialogValidator
59 Creates and manages a temporary wxTextCtrl for validation purposes.
60 Uses wxPropertyGrid's current editor, if available.
62 class WXDLLIMPEXP_PROPGRID wxPGInDialogValidator
65 wxPGInDialogValidator()
70 ~wxPGInDialogValidator()
73 m_textCtrl
->Destroy();
76 bool DoValidate( wxPropertyGrid
* propGrid
,
77 wxValidator
* validator
,
78 const wxString
& value
);
81 wxTextCtrl
* m_textCtrl
;
87 // -----------------------------------------------------------------------
89 // -----------------------------------------------------------------------
91 #define wxPG_PROP_PASSWORD wxPG_PROP_CLASS_SPECIFIC_2
93 /** @class wxStringProperty
95 Basic property with string value.
97 <b>Supported special attributes:</b>
98 - "Password": set to 1 inorder to enable wxTE_PASSWORD on the editor.
101 - If value "<composed>" is set, then actual value is formed (or composed)
102 from values of child properties.
104 class WXDLLIMPEXP_PROPGRID wxStringProperty
: public wxPGProperty
106 WX_PG_DECLARE_PROPERTY_CLASS(wxStringProperty
)
108 wxStringProperty( const wxString
& label
= wxPG_LABEL
,
109 const wxString
& name
= wxPG_LABEL
,
110 const wxString
& value
= wxEmptyString
);
111 virtual ~wxStringProperty();
113 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
114 virtual bool StringToValue( wxVariant
& variant
,
115 const wxString
& text
,
116 int argFlags
= 0 ) const;
118 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
120 /** This is updated so "<composed>" special value can be handled.
122 virtual void OnSetValue();
127 // -----------------------------------------------------------------------
130 /** Constants used with DoValidation() methods.
134 /** Instead of modifying the value, show an error message.
136 wxPG_PROPERTY_VALIDATION_ERROR_MESSAGE
= 0,
138 /** Modify value, but stick with the limitations.
140 wxPG_PROPERTY_VALIDATION_SATURATE
= 1,
142 /** Modify value, wrap around on overflow.
144 wxPG_PROPERTY_VALIDATION_WRAP
= 2
148 // -----------------------------------------------------------------------
150 /** @class wxIntProperty
152 Basic property with integer value.
154 Seamlessly supports 64-bit integer (wxLongLong) on overflow.
156 <b>Example how to use seamless 64-bit integer support</b>
161 wxLongLong_t value = pg->GetPropertyValueAsLongLong();
168 wxVariant variant = property->GetValue();
169 if ( variant.GetType() == "wxLongLong" )
170 value = wxLongLongFromVariant(variant);
172 value = variant.GetLong();
178 pg->SetPropertyValue(longLongVal);
184 property->SetValue(WXVARIANT(longLongVal));
188 <b>Supported special attributes:</b>
189 - "Min", "Max": Specify acceptable value range.
191 class WXDLLIMPEXP_PROPGRID wxIntProperty
: public wxPGProperty
193 WX_PG_DECLARE_PROPERTY_CLASS(wxIntProperty
)
195 wxIntProperty( const wxString
& label
= wxPG_LABEL
,
196 const wxString
& name
= wxPG_LABEL
,
198 virtual ~wxIntProperty();
200 wxIntProperty( const wxString
& label
,
201 const wxString
& name
,
202 const wxLongLong
& value
);
203 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
204 virtual bool StringToValue( wxVariant
& variant
,
205 const wxString
& text
,
206 int argFlags
= 0 ) const;
207 virtual bool ValidateValue( wxVariant
& value
,
208 wxPGValidationInfo
& validationInfo
) const;
209 virtual bool IntToValue( wxVariant
& variant
,
211 int argFlags
= 0 ) const;
212 static wxValidator
* GetClassValidator();
213 virtual wxValidator
* DoGetValidator() const;
215 /** Validation helper.
217 static bool DoValidation( const wxPGProperty
* property
,
219 wxPGValidationInfo
* pValidationInfo
,
221 wxPG_PROPERTY_VALIDATION_ERROR_MESSAGE
);
226 // -----------------------------------------------------------------------
228 /** @class wxUIntProperty
230 Basic property with unsigned integer value.
231 Seamlessly supports 64-bit integer (wxULongLong) on overflow.
233 <b>Supported special attributes:</b>
234 - "Min", "Max": Specify acceptable value range.
235 - "Base": Define base. Valid constants are wxPG_BASE_OCT, wxPG_BASE_DEC,
236 wxPG_BASE_HEX and wxPG_BASE_HEXL (lowercase characters). Arbitrary bases
237 are <b>not</b> supported.
238 - "Prefix": Possible values are wxPG_PREFIX_NONE, wxPG_PREFIX_0x, and
239 wxPG_PREFIX_DOLLAR_SIGN. Only wxPG_PREFIX_NONE works with Decimal and Octal
243 - For example how to use seamless 64-bit integer support, see wxIntProperty
244 documentation (just use wxULongLong instead of wxLongLong).
246 class WXDLLIMPEXP_PROPGRID wxUIntProperty
: public wxPGProperty
248 WX_PG_DECLARE_PROPERTY_CLASS(wxUIntProperty
)
250 wxUIntProperty( const wxString
& label
= wxPG_LABEL
,
251 const wxString
& name
= wxPG_LABEL
,
252 unsigned long value
= 0 );
253 virtual ~wxUIntProperty();
254 wxUIntProperty( const wxString
& label
,
255 const wxString
& name
,
256 const wxULongLong
& value
);
257 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
258 virtual bool StringToValue( wxVariant
& variant
,
259 const wxString
& text
,
260 int argFlags
= 0 ) const;
261 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
262 virtual bool ValidateValue( wxVariant
& value
,
263 wxPGValidationInfo
& validationInfo
) const;
264 virtual bool IntToValue( wxVariant
& variant
,
266 int argFlags
= 0 ) const;
269 wxByte m_realBase
; // translated to 8,16,etc.
275 // -----------------------------------------------------------------------
277 /** @class wxFloatProperty
279 Basic property with double-precision floating point value.
281 <b>Supported special attributes:</b>
282 - "Precision": Sets the (max) precision used when floating point value is
283 rendered as text. The default -1 means infinite precision.
285 class WXDLLIMPEXP_PROPGRID wxFloatProperty
: public wxPGProperty
287 WX_PG_DECLARE_PROPERTY_CLASS(wxFloatProperty
)
289 wxFloatProperty( const wxString
& label
= wxPG_LABEL
,
290 const wxString
& name
= wxPG_LABEL
,
291 double value
= 0.0 );
292 virtual ~wxFloatProperty();
294 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
295 virtual bool StringToValue( wxVariant
& variant
,
296 const wxString
& text
,
297 int argFlags
= 0 ) const;
298 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
299 virtual bool ValidateValue( wxVariant
& value
,
300 wxPGValidationInfo
& validationInfo
) const;
302 /** Validation helper.
304 static bool DoValidation( const wxPGProperty
* property
,
306 wxPGValidationInfo
* pValidationInfo
,
308 wxPG_PROPERTY_VALIDATION_ERROR_MESSAGE
);
309 virtual wxValidator
* DoGetValidator () const;
315 // -----------------------------------------------------------------------
317 // Exclude class from wxPython bindings
320 /** @class wxBoolProperty
322 Basic property with boolean value.
324 <b>Supported special attributes:</b>
325 - "UseCheckbox": Set to 1 to use check box editor instead of combo box.
326 - "UseDClickCycling": Set to 1 to cycle combo box instead showing the list.
328 class WXDLLIMPEXP_PROPGRID wxBoolProperty
: public wxPGProperty
330 WX_PG_DECLARE_PROPERTY_CLASS(wxBoolProperty
)
332 wxBoolProperty( const wxString
& label
= wxPG_LABEL
,
333 const wxString
& name
= wxPG_LABEL
,
334 bool value
= false );
335 virtual ~wxBoolProperty();
337 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
338 virtual bool StringToValue( wxVariant
& variant
,
339 const wxString
& text
,
340 int argFlags
= 0 ) const;
341 virtual bool IntToValue( wxVariant
& variant
,
342 int number
, int argFlags
= 0 ) const;
343 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
348 // -----------------------------------------------------------------------
350 // If set, then selection of choices is static and should not be
351 // changed (i.e. returns NULL in GetPropertyChoices).
352 #define wxPG_PROP_STATIC_CHOICES wxPG_PROP_CLASS_SPECIFIC_1
354 /** @class wxEnumProperty
356 You can derive custom properties with choices from this class. See
357 wxBaseEnumProperty for remarks.
360 - Updating private index is important. You can do this either by calling
361 SetIndex() in IntToValue, and then letting wxBaseEnumProperty::OnSetValue
362 be called (by not implementing it, or by calling super class function in
363 it) -OR- you can just call SetIndex in OnSetValue.
365 class WXDLLIMPEXP_PROPGRID wxEnumProperty
: public wxPGProperty
367 WX_PG_DECLARE_PROPERTY_CLASS(wxEnumProperty
)
371 wxEnumProperty( const wxString
& label
= wxPG_LABEL
,
372 const wxString
& name
= wxPG_LABEL
,
373 const wxChar
** labels
= NULL
,
374 const long* values
= NULL
,
376 wxEnumProperty( const wxString
& label
,
377 const wxString
& name
,
378 wxPGChoices
& choices
,
381 // Special constructor for caching choices (used by derived class)
382 wxEnumProperty( const wxString
& label
,
383 const wxString
& name
,
384 const wxChar
** labels
,
386 wxPGChoices
* choicesCache
,
389 wxEnumProperty( const wxString
& label
,
390 const wxString
& name
,
391 const wxArrayString
& labels
,
392 const wxArrayInt
& values
= wxArrayInt(),
395 wxEnumProperty( const wxString
& label
= wxPG_LABEL
,
396 const wxString
& name
= wxPG_LABEL
,
397 const wxArrayString
& labels
= wxArrayString(),
398 const wxArrayInt
& values
= wxArrayInt(),
402 virtual ~wxEnumProperty();
404 size_t GetItemCount() const { return m_choices
.GetCount(); }
406 virtual void OnSetValue();
407 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
408 virtual bool StringToValue( wxVariant
& variant
,
409 const wxString
& text
,
410 int argFlags
= 0 ) const;
411 virtual bool ValidateValue( wxVariant
& value
,
412 wxPGValidationInfo
& validationInfo
) const;
414 // If wxPG_FULL_VALUE is not set in flags, then the value is interpreted
415 // as index to choices list. Otherwise, it is actual value.
416 virtual bool IntToValue( wxVariant
& variant
,
418 int argFlags
= 0 ) const;
421 // Additional virtuals
423 // This must be overridden to have non-index based value
424 virtual int GetIndexForValue( int value
) const;
426 // GetChoiceSelection needs to overridden since m_index is
427 // the true index, and various property classes derived from
428 // this take advantage of it.
429 virtual int GetChoiceSelection() const { return m_index
; }
431 virtual void OnValidationFailure( wxVariant
& pendingValue
);
435 int GetIndex() const;
436 void SetIndex( int index
);
438 bool ValueFromString_( wxVariant
& value
,
439 const wxString
& text
,
440 int argFlags
) const;
441 bool ValueFromInt_( wxVariant
& value
, int intVal
, int argFlags
) const;
443 static void ResetNextIndex() { ms_nextIndex
= -2; }
446 // This is private so that classes are guaranteed to use GetIndex
447 // for up-to-date index value.
450 // Relies on ValidateValue being called always before OnSetValue
451 static int ms_nextIndex
;
454 // -----------------------------------------------------------------------
456 /** @class wxEditEnumProperty
458 wxEnumProperty with wxString value and writable combo box editor.
461 Uses int value, similar to wxEnumProperty, unless text entered by user is
462 is not in choices (in which case string value is used).
464 class WXDLLIMPEXP_PROPGRID wxEditEnumProperty
: public wxEnumProperty
466 WX_PG_DECLARE_PROPERTY_CLASS(wxEditEnumProperty
)
469 wxEditEnumProperty( const wxString
& label
,
470 const wxString
& name
,
471 const wxChar
** labels
,
473 const wxString
& value
);
474 wxEditEnumProperty( const wxString
& label
= wxPG_LABEL
,
475 const wxString
& name
= wxPG_LABEL
,
476 const wxArrayString
& labels
= wxArrayString(),
477 const wxArrayInt
& values
= wxArrayInt(),
478 const wxString
& value
= wxEmptyString
);
479 wxEditEnumProperty( const wxString
& label
,
480 const wxString
& name
,
481 wxPGChoices
& choices
,
482 const wxString
& value
= wxEmptyString
);
484 // Special constructor for caching choices (used by derived class)
485 wxEditEnumProperty( const wxString
& label
,
486 const wxString
& name
,
487 const wxChar
** labels
,
489 wxPGChoices
* choicesCache
,
490 const wxString
& value
);
492 virtual ~wxEditEnumProperty();
497 // -----------------------------------------------------------------------
499 /** @class wxFlagsProperty
501 Represents a bit set that fits in a long integer. wxBoolProperty
502 sub-properties are created for editing individual bits. Textctrl is created
503 to manually edit the flags as a text; a continous sequence of spaces,
504 commas and semicolons is considered as a flag id separator.
505 <b>Note:</b> When changing "choices" (ie. flag labels) of wxFlagsProperty,
506 you will need to use SetPropertyChoices - otherwise they will not get
509 class WXDLLIMPEXP_PROPGRID wxFlagsProperty
: public wxPGProperty
511 WX_PG_DECLARE_PROPERTY_CLASS(wxFlagsProperty
)
515 wxFlagsProperty( const wxString
& label
,
516 const wxString
& name
,
517 const wxChar
** labels
,
518 const long* values
= NULL
,
520 wxFlagsProperty( const wxString
& label
,
521 const wxString
& name
,
522 wxPGChoices
& choices
,
525 wxFlagsProperty( const wxString
& label
= wxPG_LABEL
,
526 const wxString
& name
= wxPG_LABEL
,
527 const wxArrayString
& labels
= wxArrayString(),
528 const wxArrayInt
& values
= wxArrayInt(),
530 virtual ~wxFlagsProperty ();
532 virtual void OnSetValue();
533 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
534 virtual bool StringToValue( wxVariant
& variant
,
535 const wxString
& text
,
537 virtual void ChildChanged( wxVariant
& thisValue
,
539 wxVariant
& childValue
) const;
540 virtual void RefreshChildren();
542 // GetChoiceSelection needs to overridden since m_choices is
543 // used and value is integer, but it is not index.
544 virtual int GetChoiceSelection() const { return wxNOT_FOUND
; }
547 size_t GetItemCount() const { return m_choices
.GetCount(); }
548 const wxString
& GetLabel( size_t ind
) const
549 { return m_choices
.GetLabel(ind
); }
552 // Used to detect if choices have been changed
553 wxPGChoicesData
* m_oldChoicesData
;
555 // Needed to properly mark changed sub-properties
558 // Converts string id to a relevant bit.
559 long IdToBit( const wxString
& id
) const;
561 // Creates children and sets value.
565 // -----------------------------------------------------------------------
567 /** @class wxPGFileDialogAdapter
570 class WXDLLIMPEXP_PROPGRID
571 wxPGFileDialogAdapter
: public wxPGEditorDialogAdapter
574 virtual bool DoShowDialog( wxPropertyGrid
* propGrid
,
575 wxPGProperty
* property
);
578 // -----------------------------------------------------------------------
580 // Indicates first bit useable by derived properties.
581 #define wxPG_PROP_SHOW_FULL_FILENAME wxPG_PROP_CLASS_SPECIFIC_1
583 /** @class wxFileProperty
585 Like wxLongStringProperty, but the button triggers file selector instead.
587 <b>Supported special attributes:</b>
588 - "Wildcard": Sets wildcard (see wxFileDialog for format details), "All
589 files..." is default.
590 - "ShowFullPath": Default 1. When 0, only the file name is shown (i.e. drive
591 and directory are hidden).
592 - "ShowRelativePath": If set, then the filename is shown relative to the
594 - "InitialPath": Sets the initial path of where to look for files.
595 - "DialogTitle": Sets a specific title for the dir dialog.
597 class WXDLLIMPEXP_PROPGRID wxFileProperty
: public wxPGProperty
599 friend class wxPGFileDialogAdapter
;
600 WX_PG_DECLARE_PROPERTY_CLASS(wxFileProperty
)
603 wxFileProperty( const wxString
& label
= wxPG_LABEL
,
604 const wxString
& name
= wxPG_LABEL
,
605 const wxString
& value
= wxEmptyString
);
606 virtual ~wxFileProperty ();
608 virtual void OnSetValue();
609 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
610 virtual bool StringToValue( wxVariant
& variant
,
611 const wxString
& text
,
612 int argFlags
= 0 ) const;
613 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const;
614 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
616 static wxValidator
* GetClassValidator();
617 virtual wxValidator
* DoGetValidator() const;
620 Returns filename to file represented by current value.
622 wxFileName
GetFileName() const;
626 wxString m_basePath
; // If set, then show path relative to it
627 wxString m_initialPath
; // If set, start the file dialog here
628 wxString m_dlgTitle
; // If set, used as title for file dialog
629 int m_indFilter
; // index to the selected filter
632 // -----------------------------------------------------------------------
634 #define wxPG_PROP_NO_ESCAPE wxPG_PROP_CLASS_SPECIFIC_1
637 /** @class wxPGLongStringDialogAdapter
640 class WXDLLIMPEXP_PROPGRID
641 wxPGLongStringDialogAdapter
: public wxPGEditorDialogAdapter
644 virtual bool DoShowDialog( wxPropertyGrid
* propGrid
,
645 wxPGProperty
* property
);
649 /** @class wxLongStringProperty
651 Like wxStringProperty, but has a button that triggers a small text
654 class WXDLLIMPEXP_PROPGRID wxLongStringProperty
: public wxPGProperty
656 WX_PG_DECLARE_PROPERTY_CLASS(wxLongStringProperty
)
659 wxLongStringProperty( const wxString
& label
= wxPG_LABEL
,
660 const wxString
& name
= wxPG_LABEL
,
661 const wxString
& value
= wxEmptyString
);
662 virtual ~wxLongStringProperty();
664 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
665 virtual bool StringToValue( wxVariant
& variant
,
666 const wxString
& text
,
667 int argFlags
= 0 ) const;
668 virtual bool OnEvent( wxPropertyGrid
* propgrid
,
669 wxWindow
* primary
, wxEvent
& event
);
671 // Shows string editor dialog. Value to be edited should be read from
672 // value, and if dialog is not cancelled, it should be stored back and true
673 // should be returned if that was the case.
674 virtual bool OnButtonClick( wxPropertyGrid
* propgrid
, wxString
& value
);
676 static bool DisplayEditorDialog( wxPGProperty
* prop
,
677 wxPropertyGrid
* propGrid
,
683 // -----------------------------------------------------------------------
686 // Exclude class from wxPython bindings
689 /** @class wxDirProperty
691 Like wxLongStringProperty, but the button triggers dir selector instead.
693 <b>Supported special attributes:</b>
694 - "DialogMessage": Sets specific message in the dir selector.
696 class WXDLLIMPEXP_PROPGRID wxDirProperty
: public wxLongStringProperty
699 DECLARE_DYNAMIC_CLASS(wxDirProperty
)
702 wxDirProperty( const wxString
& name
= wxPG_LABEL
,
703 const wxString
& label
= wxPG_LABEL
,
704 const wxString
& value
= wxEmptyString
);
705 virtual ~wxDirProperty();
707 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
708 virtual wxValidator
* DoGetValidator() const;
710 virtual bool OnButtonClick ( wxPropertyGrid
* propGrid
, wxString
& value
);
713 wxString m_dlgMessage
;
718 // -----------------------------------------------------------------------
720 // wxBoolProperty specific flags
721 #define wxPG_PROP_USE_CHECKBOX wxPG_PROP_CLASS_SPECIFIC_1
722 // DCC = Double Click Cycles
723 #define wxPG_PROP_USE_DCC wxPG_PROP_CLASS_SPECIFIC_2
726 // -----------------------------------------------------------------------
728 /** @class wxArrayStringProperty
730 Property that manages a list of strings.
732 class WXDLLIMPEXP_PROPGRID wxArrayStringProperty
: public wxPGProperty
734 WX_PG_DECLARE_PROPERTY_CLASS(wxArrayStringProperty
)
737 wxArrayStringProperty( const wxString
& label
= wxPG_LABEL
,
738 const wxString
& name
= wxPG_LABEL
,
739 const wxArrayString
& value
= wxArrayString() );
740 virtual ~wxArrayStringProperty();
742 virtual void OnSetValue();
743 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
744 virtual bool StringToValue( wxVariant
& variant
,
745 const wxString
& text
,
746 int argFlags
= 0 ) const;
747 virtual bool OnEvent( wxPropertyGrid
* propgrid
,
748 wxWindow
* primary
, wxEvent
& event
);
750 virtual void GenerateValueAsString();
752 // Shows string editor dialog. Value to be edited should be read from
753 // value, and if dialog is not cancelled, it should be stored back and true
754 // should be returned if that was the case.
755 virtual bool OnCustomStringEdit( wxWindow
* parent
, wxString
& value
);
758 virtual bool OnButtonClick( wxPropertyGrid
* propgrid
,
763 // Creates wxArrayEditorDialog for string editing. Called in OnButtonClick.
764 virtual wxArrayEditorDialog
* CreateEditorDialog();
768 wxString m_display
; // Cache for displayed text.
771 // -----------------------------------------------------------------------
773 #define WX_PG_DECLARE_ARRAYSTRING_PROPERTY_WITH_VALIDATOR_WITH_DECL(PROPNAME, \
775 DECL PROPNAME : public wxArrayStringProperty \
777 WX_PG_DECLARE_PROPERTY_CLASS(PROPNAME) \
779 PROPNAME( const wxString& label = wxPG_LABEL, \
780 const wxString& name = wxPG_LABEL, \
781 const wxArrayString& value = wxArrayString() ); \
783 virtual void GenerateValueAsString(); \
784 virtual bool StringToValue( wxVariant& value, \
785 const wxString& text, int = 0 ) const; \
786 virtual bool OnEvent( wxPropertyGrid* propgrid, \
787 wxWindow* primary, wxEvent& event ); \
788 virtual bool OnCustomStringEdit( wxWindow* parent, wxString& value ); \
789 virtual wxValidator* DoGetValidator() const; \
792 #define WX_PG_DECLARE_ARRAYSTRING_PROPERTY_WITH_VALIDATOR(PROPNAM) \
793 WX_PG_DECLARE_ARRAYSTRING_PROPERTY_WITH_VALIDATOR(PROPNAM, class)
795 #define WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR(PROPNAME, \
798 WX_PG_IMPLEMENT_PROPERTY_CLASS(PROPNAME, wxArrayStringProperty, \
799 wxArrayString, const wxArrayString&, \
801 PROPNAME::PROPNAME( const wxString& label, \
802 const wxString& name, \
803 const wxArrayString& value ) \
804 : wxArrayStringProperty(label,name,value) \
806 PROPNAME::GenerateValueAsString(); \
808 PROPNAME::~PROPNAME() { } \
809 void PROPNAME::GenerateValueAsString() \
811 wxChar delimChar = DELIMCHAR; \
812 if ( delimChar == wxS('"') ) \
813 wxArrayStringProperty::GenerateValueAsString(); \
815 wxPropertyGrid::ArrayStringToString(m_display, \
816 m_value.GetArrayString(), \
819 bool PROPNAME::StringToValue( wxVariant& variant, \
820 const wxString& text, int ) const \
822 wxChar delimChar = DELIMCHAR; \
823 if ( delimChar == wxS('"') ) \
824 return wxArrayStringProperty::StringToValue(variant, text, 0); \
827 WX_PG_TOKENIZER1_BEGIN(text,DELIMCHAR) \
829 WX_PG_TOKENIZER1_END() \
833 bool PROPNAME::OnEvent( wxPropertyGrid* propgrid, \
834 wxWindow* primary, wxEvent& event ) \
836 if ( event.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED ) \
837 return OnButtonClick(propgrid,primary,(const wxChar*) CUSTBUTTXT); \
841 #define WX_PG_DECLARE_ARRAYSTRING_PROPERTY(PROPNAME) \
842 WX_PG_DECLARE_ARRAYSTRING_PROPERTY_WITH_VALIDATOR(PROPNAME)
844 #define WX_PG_DECLARE_ARRAYSTRING_PROPERTY_WITH_DECL(PROPNAME, DECL) \
845 WX_PG_DECLARE_ARRAYSTRING_PROPERTY_WITH_VALIDATOR_WITH_DECL(PROPNAME, DECL)
847 #define WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY(PROPNAME,DELIMCHAR,CUSTBUTTXT) \
848 WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR(PROPNAME, \
851 wxValidator* PROPNAME::DoGetValidator () const \
855 // -----------------------------------------------------------------------
856 // wxArrayEditorDialog
857 // -----------------------------------------------------------------------
859 #define wxAEDIALOG_STYLE \
860 (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxOK | wxCANCEL | wxCENTRE)
862 class WXDLLIMPEXP_PROPGRID wxArrayEditorDialog
: public wxDialog
865 wxArrayEditorDialog();
866 virtual ~wxArrayEditorDialog() { }
870 wxArrayEditorDialog( wxWindow
*parent
,
871 const wxString
& message
,
872 const wxString
& caption
,
873 long style
= wxAEDIALOG_STYLE
,
874 const wxPoint
& pos
= wxDefaultPosition
,
875 const wxSize
& sz
= wxDefaultSize
);
877 bool Create( wxWindow
*parent
,
878 const wxString
& message
,
879 const wxString
& caption
,
880 long style
= wxAEDIALOG_STYLE
,
881 const wxPoint
& pos
= wxDefaultPosition
,
882 const wxSize
& sz
= wxDefaultSize
);
884 /** Set value modified by dialog.
886 virtual void SetDialogValue( const wxVariant
& WXUNUSED(value
) )
888 wxFAIL_MSG(wxT("re-implement this member function in derived class"));
891 /** Return value modified by dialog.
893 virtual wxVariant
GetDialogValue() const
895 wxFAIL_MSG(wxT("re-implement this member function in derived class"));
899 /** Override to return wxValidator to be used with the wxTextCtrl
900 in dialog. Note that the validator is used in the standard
901 wx way, ie. it immediately prevents user from entering invalid
905 Dialog frees the validator.
907 virtual wxValidator
* GetTextCtrlValidator() const
912 // Returns true if array was actually modified
913 bool IsModified() const { return m_modified
; }
915 //const wxArrayString& GetStrings() const { return m_array; }
917 // implementation from now on
918 void OnUpdateClick(wxCommandEvent
& event
);
919 void OnAddClick(wxCommandEvent
& event
);
920 void OnDeleteClick(wxCommandEvent
& event
);
921 void OnListBoxClick(wxCommandEvent
& event
);
922 void OnUpClick(wxCommandEvent
& event
);
923 void OnDownClick(wxCommandEvent
& event
);
924 //void OnCustomEditClick(wxCommandEvent& event);
925 void OnIdle(wxIdleEvent
& event
);
928 wxTextCtrl
* m_edValue
;
929 wxListBox
* m_lbStrings
;
931 wxButton
* m_butAdd
; // Button pointers
932 wxButton
* m_butCustom
; // required for disabling/enabling changing.
933 wxButton
* m_butUpdate
;
934 wxButton
* m_butRemove
;
938 //wxArrayString m_array;
940 const wxChar
* m_custBtText
;
941 //wxArrayStringPropertyClass* m_pCallingClass;
945 unsigned char m_curFocus
;
947 // These must be overridden - must return true on success.
948 virtual wxString
ArrayGet( size_t index
) = 0;
949 virtual size_t ArrayGetCount() = 0;
950 virtual bool ArrayInsert( const wxString
& str
, int index
) = 0;
951 virtual bool ArraySet( size_t index
, const wxString
& str
) = 0;
952 virtual void ArrayRemoveAt( int index
) = 0;
953 virtual void ArraySwap( size_t first
, size_t second
) = 0;
957 DECLARE_DYNAMIC_CLASS_NO_COPY(wxArrayEditorDialog
)
958 DECLARE_EVENT_TABLE()
962 // -----------------------------------------------------------------------
963 // wxPGArrayStringEditorDialog
964 // -----------------------------------------------------------------------
966 class WXDLLIMPEXP_PROPGRID
967 wxPGArrayStringEditorDialog
: public wxArrayEditorDialog
970 wxPGArrayStringEditorDialog();
971 virtual ~wxPGArrayStringEditorDialog() { }
975 virtual void SetDialogValue( const wxVariant
& value
)
977 m_array
= value
.GetArrayString();
980 virtual wxVariant
GetDialogValue() const
985 void SetCustomButton( const wxChar
* custBtText
, wxArrayStringProperty
* pcc
)
987 m_custBtText
= custBtText
;
988 m_pCallingClass
= pcc
;
991 void OnCustomEditClick(wxCommandEvent
& event
);
994 wxArrayString m_array
;
996 wxArrayStringProperty
* m_pCallingClass
;
998 virtual wxString
ArrayGet( size_t index
);
999 virtual size_t ArrayGetCount();
1000 virtual bool ArrayInsert( const wxString
& str
, int index
);
1001 virtual bool ArraySet( size_t index
, const wxString
& str
);
1002 virtual void ArrayRemoveAt( int index
);
1003 virtual void ArraySwap( size_t first
, size_t second
);
1007 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPGArrayStringEditorDialog
)
1008 DECLARE_EVENT_TABLE()
1012 // -----------------------------------------------------------------------
1014 #endif // wxUSE_PROPGRID
1016 #endif // _WX_PROPGRID_PROPS_H_