]> git.saurik.com Git - wxWidgets.git/blame - src/propgrid/propgrid.cpp
Rebuild textctrl events using copy ctor
[wxWidgets.git] / src / propgrid / propgrid.cpp
CommitLineData
1c4293cb
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/propgrid/propgrid.cpp
3// Purpose: wxPropertyGrid
4// Author: Jaakko Salli
5// Modified by:
6// Created: 2004-09-25
ea5af9c5 7// RCS-ID: $Id$
1c4293cb 8// Copyright: (c) Jaakko Salli
526954c5 9// Licence: wxWindows licence
1c4293cb
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx/wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16 #pragma hdrstop
17#endif
18
f4bc1aa2
JS
19#if wxUSE_PROPGRID
20
1c4293cb
VZ
21#ifndef WX_PRECOMP
22 #include "wx/defs.h"
23 #include "wx/object.h"
24 #include "wx/hash.h"
25 #include "wx/string.h"
26 #include "wx/log.h"
27 #include "wx/event.h"
28 #include "wx/window.h"
29 #include "wx/panel.h"
30 #include "wx/dc.h"
31 #include "wx/dcmemory.h"
32 #include "wx/button.h"
33 #include "wx/pen.h"
34 #include "wx/brush.h"
35 #include "wx/cursor.h"
36 #include "wx/dialog.h"
37 #include "wx/settings.h"
38 #include "wx/msgdlg.h"
39 #include "wx/choice.h"
40 #include "wx/stattext.h"
41 #include "wx/scrolwin.h"
42 #include "wx/dirdlg.h"
1c4293cb
VZ
43 #include "wx/sizer.h"
44 #include "wx/textdlg.h"
45 #include "wx/filedlg.h"
46 #include "wx/statusbr.h"
47 #include "wx/intl.h"
48 #include "wx/frame.h"
49#endif
50
51
52// This define is necessary to prevent macro clearing
53#define __wxPG_SOURCE_FILE__
54
3b211af1
SC
55#include "wx/propgrid/propgrid.h"
56#include "wx/propgrid/editors.h"
1c4293cb
VZ
57
58#if wxPG_USE_RENDERER_NATIVE
3b211af1 59 #include "wx/renderer.h"
1c4293cb
VZ
60#endif
61
3b211af1 62#include "wx/odcombo.h"
1c4293cb
VZ
63
64#include "wx/timer.h"
65#include "wx/dcbuffer.h"
72e8179f 66#include "wx/scopeguard.h"
1c4293cb 67
1c4293cb
VZ
68// Two pics for the expand / collapse buttons.
69// Files are not supplied with this project (since it is
70// recommended to use either custom or native rendering).
71// If you want them, get wxTreeMultiCtrl by Jorgen Bodde,
72// and copy xpm files from archive to wxPropertyGrid src directory
73// (and also comment/undef wxPG_ICON_WIDTH in propGrid.h
74// and set wxPG_USE_RENDERER_NATIVE to 0).
75#ifndef wxPG_ICON_WIDTH
76 #if defined(__WXMAC__)
77 #include "mac_collapse.xpm"
78 #include "mac_expand.xpm"
79 #elif defined(__WXGTK__)
80 #include "linux_collapse.xpm"
81 #include "linux_expand.xpm"
82 #else
83 #include "default_collapse.xpm"
84 #include "default_expand.xpm"
85 #endif
86#endif
87
88
89//#define wxPG_TEXT_INDENT 4 // For the wxComboControl
b7bc9d80 90//#define wxPG_ALLOW_CLIPPING 1 // If 1, GetUpdateRegion() in OnPaint event handler is not ignored
1c4293cb
VZ
91#define wxPG_GUTTER_DIV 3 // gutter is max(iconwidth/gutter_div,gutter_min)
92#define wxPG_GUTTER_MIN 3 // gutter before and after image of [+] or [-]
93#define wxPG_YSPACING_MIN 1
94#define wxPG_DEFAULT_VSPACING 2 // This matches .NET propertygrid's value,
95 // but causes normal combobox to spill out under MSW
96
b7bc9d80 97//#define wxPG_OPTIMAL_WIDTH 200 // Arbitrary
1c4293cb 98
b7bc9d80 99//#define wxPG_MIN_SCROLLBAR_WIDTH 10 // Smallest scrollbar width on any platform
1c4293cb
VZ
100 // Must be larger than largest control border
101 // width * 2.
102
103
104#define wxPG_DEFAULT_CURSOR wxNullCursor
105
106
107//#define wxPG_NAT_CHOICE_BORDER_ANY 0
108
b7bc9d80 109//#define wxPG_HIDER_BUTTON_HEIGHT 25
1c4293cb
VZ
110
111#define wxPG_PIXELS_PER_UNIT m_lineHeight
112
113#ifdef wxPG_ICON_WIDTH
114 #define m_iconHeight m_iconWidth
115#endif
116
b7bc9d80 117//#define wxPG_TOOLTIP_DELAY 1000
1c4293cb 118
0a327b9c
JS
119// This is the number of pixels the expander button inside
120// property cells (i.e. not in the grey margin area are
121// adjusted.
122#define IN_CELL_EXPANDER_BUTTON_X_ADJUST 2
123
1c4293cb
VZ
124// -----------------------------------------------------------------------
125
126#if wxUSE_INTL
127void wxPropertyGrid::AutoGetTranslation ( bool enable )
128{
129 wxPGGlobalVars->m_autoGetTranslation = enable;
130}
131#else
132void wxPropertyGrid::AutoGetTranslation ( bool ) { }
133#endif
134
135// -----------------------------------------------------------------------
136
23318a53 137const char wxPropertyGridNameStr[] = "wxPropertyGrid";
1c4293cb
VZ
138
139// -----------------------------------------------------------------------
140// Statics in one class for easy destruction.
1c4293cb
VZ
141// -----------------------------------------------------------------------
142
3b211af1 143#include "wx/module.h"
1c4293cb
VZ
144
145class wxPGGlobalVarsClassManager : public wxModule
146{
147 DECLARE_DYNAMIC_CLASS(wxPGGlobalVarsClassManager)
148public:
149 wxPGGlobalVarsClassManager() {}
150 virtual bool OnInit() { wxPGGlobalVars = new wxPGGlobalVarsClass(); return true; }
5276b0a5 151 virtual void OnExit() { wxDELETE(wxPGGlobalVars); }
1c4293cb
VZ
152};
153
154IMPLEMENT_DYNAMIC_CLASS(wxPGGlobalVarsClassManager, wxModule)
155
1c4293cb 156
b512ed93
JS
157// When wxPG is loaded dynamically after the application is already running
158// then the built-in module system won't pick this one up. Add it manually.
159void wxPGInitResourceModule()
160{
161 wxModule* module = new wxPGGlobalVarsClassManager;
162 module->Init();
163 wxModule::RegisterModule(module);
164}
165
d3b9f782 166wxPGGlobalVarsClass* wxPGGlobalVars = NULL;
1c4293cb
VZ
167
168
169wxPGGlobalVarsClass::wxPGGlobalVarsClass()
170{
171 wxPGProperty::sm_wxPG_LABEL = new wxString(wxPG_LABEL_STRING);
172
173 m_boolChoices.Add(_("False"));
174 m_boolChoices.Add(_("True"));
175
d3b9f782 176 m_fontFamilyChoices = NULL;
1c4293cb
VZ
177
178 m_defaultRenderer = new wxPGDefaultRenderer();
179
180 m_autoGetTranslation = false;
181
182 m_offline = 0;
183
184 m_extraStyle = 0;
185
186 wxVariant v;
187
657a8a35 188 // Prepare some shared variants
1c4293cb
VZ
189 m_vEmptyString = wxString();
190 m_vZero = (long) 0;
191 m_vMinusOne = (long) -1;
192 m_vTrue = true;
193 m_vFalse = false;
194
195 // Prepare cached string constants
0372d42e
JS
196 m_strstring = wxS("string");
197 m_strlong = wxS("long");
198 m_strbool = wxS("bool");
199 m_strlist = wxS("list");
0ce8e27f 200 m_strDefaultValue = wxS("DefaultValue");
1c4293cb
VZ
201 m_strMin = wxS("Min");
202 m_strMax = wxS("Max");
203 m_strUnits = wxS("Units");
534090e3
JS
204 m_strHint = wxS("Hint");
205#if wxPG_COMPATIBILITY_1_4
1c4293cb 206 m_strInlineHelp = wxS("InlineHelp");
534090e3 207#endif
1c4293cb 208
1c4293cb 209 m_warnings = 0;
1c4293cb
VZ
210}
211
212
213wxPGGlobalVarsClass::~wxPGGlobalVarsClass()
214{
215 size_t i;
216
217 delete m_defaultRenderer;
218
219 // This will always have one ref
220 delete m_fontFamilyChoices;
221
222#if wxUSE_VALIDATORS
223 for ( i=0; i<m_arrValidators.size(); i++ )
224 delete ((wxValidator*)m_arrValidators[i]);
225#endif
226
227 //
228 // Destroy value type class instances.
229 wxPGHashMapS2P::iterator vt_it;
230
231 // Destroy editor class instances.
232 // iterate over all the elements in the class
233 for( vt_it = m_mapEditorClasses.begin(); vt_it != m_mapEditorClasses.end(); ++vt_it )
234 {
235 delete ((wxPGEditor*)vt_it->second);
236 }
237
1e005ad1
JS
238 // Make sure the global pointers have been reset
239 wxASSERT(wxPG_EDITOR(TextCtrl) == NULL);
240 wxASSERT(wxPG_EDITOR(ChoiceAndButton) == NULL);
241
1c4293cb
VZ
242 delete wxPGProperty::sm_wxPG_LABEL;
243}
244
c8074be0
JS
245void wxPropertyGridInitGlobalsIfNeeded()
246{
247}
248
1c4293cb
VZ
249// -----------------------------------------------------------------------
250// wxPropertyGrid
251// -----------------------------------------------------------------------
252
2e2e62de 253IMPLEMENT_DYNAMIC_CLASS(wxPropertyGrid, wxControl)
1c4293cb 254
2e2e62de 255BEGIN_EVENT_TABLE(wxPropertyGrid, wxControl)
1c4293cb 256 EVT_IDLE(wxPropertyGrid::OnIdle)
1c4293cb
VZ
257 EVT_PAINT(wxPropertyGrid::OnPaint)
258 EVT_SIZE(wxPropertyGrid::OnResize)
259 EVT_ENTER_WINDOW(wxPropertyGrid::OnMouseEntry)
260 EVT_LEAVE_WINDOW(wxPropertyGrid::OnMouseEntry)
261 EVT_MOUSE_CAPTURE_CHANGED(wxPropertyGrid::OnCaptureChange)
262 EVT_SCROLLWIN(wxPropertyGrid::OnScrollEvent)
263 EVT_CHILD_FOCUS(wxPropertyGrid::OnChildFocusEvent)
264 EVT_SET_FOCUS(wxPropertyGrid::OnFocusEvent)
265 EVT_KILL_FOCUS(wxPropertyGrid::OnFocusEvent)
1c4293cb 266 EVT_SYS_COLOUR_CHANGED(wxPropertyGrid::OnSysColourChanged)
39e4e221
JS
267 EVT_MOTION(wxPropertyGrid::OnMouseMove)
268 EVT_LEFT_DOWN(wxPropertyGrid::OnMouseClick)
269 EVT_LEFT_UP(wxPropertyGrid::OnMouseUp)
270 EVT_RIGHT_UP(wxPropertyGrid::OnMouseRightClick)
271 EVT_LEFT_DCLICK(wxPropertyGrid::OnMouseDoubleClick)
272 EVT_KEY_DOWN(wxPropertyGrid::OnKey)
1c4293cb
VZ
273END_EVENT_TABLE()
274
1c4293cb
VZ
275// -----------------------------------------------------------------------
276
277wxPropertyGrid::wxPropertyGrid()
2e2e62de 278 : wxControl(), wxScrollHelper(this)
1c4293cb
VZ
279{
280 Init1();
281}
282
283// -----------------------------------------------------------------------
284
285wxPropertyGrid::wxPropertyGrid( wxWindow *parent,
286 wxWindowID id,
287 const wxPoint& pos,
288 const wxSize& size,
289 long style,
23318a53 290 const wxString& name )
2e2e62de 291 : wxControl(), wxScrollHelper(this)
1c4293cb
VZ
292{
293 Init1();
294 Create(parent,id,pos,size,style,name);
295}
296
297// -----------------------------------------------------------------------
298
299bool wxPropertyGrid::Create( wxWindow *parent,
300 wxWindowID id,
301 const wxPoint& pos,
302 const wxSize& size,
303 long style,
23318a53 304 const wxString& name )
1c4293cb
VZ
305{
306
521f1d83
JS
307 if (!(style&wxBORDER_MASK))
308 {
309 style |= wxBORDER_THEME;
310 }
1c4293cb
VZ
311
312 style |= wxVSCROLL;
313
68f9e025
JS
314 // Filter out wxTAB_TRAVERSAL - we will handle TABs manually
315 style &= ~(wxTAB_TRAVERSAL);
316 style |= wxWANTS_CHARS;
1c4293cb 317
2e2e62de
JS
318 wxControl::Create(parent, id, pos, size,
319 style | wxScrolledWindowStyle,
320 wxDefaultValidator,
321 name);
1c4293cb
VZ
322
323 Init2();
324
325 return true;
326}
327
328// -----------------------------------------------------------------------
329
330//
331// Initialize values to defaults
332//
333void wxPropertyGrid::Init1()
334{
1c4293cb
VZ
335 // Register editor classes, if necessary.
336 if ( wxPGGlobalVars->m_mapEditorClasses.empty() )
c8074be0 337 wxPropertyGrid::RegisterDefaultEditors();
1c4293cb 338
e954958f 339 m_validatingEditor = 0;
1c4293cb 340 m_iFlags = 0;
d3b9f782
VZ
341 m_pState = NULL;
342 m_wndEditor = m_wndEditor2 = NULL;
58935d4a
JS
343 m_selColumn = 1;
344 m_colHover = 1;
d3b9f782 345 m_propHover = NULL;
58935d4a
JS
346 m_labelEditor = NULL;
347 m_labelEditorProperty = NULL;
1c4293cb 348 m_eventObject = this;
d3b9f782 349 m_curFocused = NULL;
e84e5ba3 350 m_processedEvent = NULL;
43396981 351 m_sortFunction = NULL;
88f47aa7
JS
352 m_inDoPropertyChanged = false;
353 m_inCommitChangesFromEditor = false;
354 m_inDoSelectProperty = false;
03d47fcf 355 m_inOnValidationFailure = false;
1c4293cb
VZ
356 m_permanentValidationFailureBehavior = wxPG_VFB_DEFAULT;
357 m_dragStatus = 0;
358 m_mouseSide = 16;
359 m_editorFocused = 0;
360
48567d27
JS
361 // Set up default unspecified value 'colour'
362 m_unspecifiedAppearance.SetFgCol(*wxLIGHT_GREY);
3e6d8c31 363
1c4293cb
VZ
364 // Set default keys
365 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_RIGHT );
366 AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_DOWN );
367 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY, WXK_LEFT );
368 AddActionTrigger( wxPG_ACTION_PREV_PROPERTY, WXK_UP );
369 AddActionTrigger( wxPG_ACTION_EXPAND_PROPERTY, WXK_RIGHT);
370 AddActionTrigger( wxPG_ACTION_COLLAPSE_PROPERTY, WXK_LEFT);
371 AddActionTrigger( wxPG_ACTION_CANCEL_EDIT, WXK_ESCAPE );
1766bf34 372 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON, WXK_DOWN, wxMOD_ALT );
cfb97361 373 AddActionTrigger( wxPG_ACTION_PRESS_BUTTON, WXK_F4 );
1c4293cb
VZ
374
375 m_coloursCustomized = 0;
376 m_frozen = 0;
377
1c4293cb 378#if wxPG_DOUBLE_BUFFER
d3b9f782 379 m_doubleBuffer = NULL;
1c4293cb
VZ
380#endif
381
1c4293cb 382#ifndef wxPG_ICON_WIDTH
657a8a35
VZ
383 m_expandbmp = NULL;
384 m_collbmp = NULL;
385 m_iconWidth = 11;
386 m_iconHeight = 11;
1c4293cb
VZ
387#else
388 m_iconWidth = wxPG_ICON_WIDTH;
389#endif
390
391 m_prevVY = -1;
392
393 m_gutterWidth = wxPG_GUTTER_MIN;
394 m_subgroup_extramargin = 10;
395
396 m_lineHeight = 0;
397
398 m_width = m_height = 0;
399
1c4293cb
VZ
400 m_commonValues.push_back(new wxPGCommonValue(_("Unspecified"), wxPGGlobalVars->m_defaultRenderer) );
401 m_cvUnspecified = 0;
402
403 m_chgInfo_changedProperty = NULL;
404}
405
406// -----------------------------------------------------------------------
407
408//
409// Initialize after parent etc. set
410//
411void wxPropertyGrid::Init2()
412{
413 wxASSERT( !(m_iFlags & wxPG_FL_INITIALIZED ) );
414
415#ifdef __WXMAC__
416 // Smaller controls on Mac
417 SetWindowVariant(wxWINDOW_VARIANT_SMALL);
23318a53 418#endif
1c4293cb
VZ
419
420 // Now create state, if one didn't exist already
421 // (wxPropertyGridManager might have created it for us).
422 if ( !m_pState )
423 {
424 m_pState = CreateState();
425 m_pState->m_pPropGrid = this;
426 m_iFlags |= wxPG_FL_CREATEDSTATE;
427 }
428
429 if ( !(m_windowStyle & wxPG_SPLITTER_AUTO_CENTER) )
0da1f1c4 430 m_pState->m_dontCenterSplitter = true;
1c4293cb
VZ
431
432 if ( m_windowStyle & wxPG_HIDE_CATEGORIES )
433 {
434 m_pState->InitNonCatMode();
435
436 m_pState->m_properties = m_pState->m_abcArray;
437 }
438
439 GetClientSize(&m_width,&m_height);
440
441#ifndef wxPG_ICON_WIDTH
442 // create two bitmap nodes for drawing
657a8a35
VZ
443 m_expandbmp = new wxBitmap(expand_xpm);
444 m_collbmp = new wxBitmap(collapse_xpm);
1c4293cb 445
657a8a35 446 // calculate average font height for bitmap centering
1c4293cb 447
657a8a35
VZ
448 m_iconWidth = m_expandbmp->GetWidth();
449 m_iconHeight = m_expandbmp->GetHeight();
1c4293cb
VZ
450#endif
451
452 m_curcursor = wxCURSOR_ARROW;
453 m_cursorSizeWE = new wxCursor( wxCURSOR_SIZEWE );
454
657a8a35 455 // adjust bitmap icon y position so they are centered
1c4293cb
VZ
456 m_vspacing = wxPG_DEFAULT_VSPACING;
457
2197ec80 458 CalculateFontAndBitmapStuff( wxPG_DEFAULT_VSPACING );
1c4293cb 459
3e6d8c31
JS
460 // Allocate cell datas
461 m_propertyDefaultCell.SetEmptyData();
462 m_categoryDefaultCell.SetEmptyData();
1c4293cb
VZ
463
464 RegainColours();
465
466 // This helps with flicker
467 SetBackgroundStyle( wxBG_STYLE_CUSTOM );
468
27c1f235
JS
469 // Hook the top-level parent
470 m_tlp = NULL;
6edd8829
JS
471 m_tlpClosed = NULL;
472 m_tlpClosedTime = 0;
1c4293cb 473
657a8a35 474 // set virtual size to this window size
1c4293cb 475 wxSize wndsize = GetSize();
657a8a35 476 SetVirtualSize(wndsize.GetWidth(), wndsize.GetWidth());
1c4293cb
VZ
477
478 m_timeCreated = ::wxGetLocalTimeMillis();
479
1c4293cb
VZ
480 m_iFlags |= wxPG_FL_INITIALIZED;
481
482 m_ncWidth = wndsize.GetWidth();
483
484 // Need to call OnResize handler or size given in constructor/Create
485 // will never work.
486 wxSizeEvent sizeEvent(wndsize,0);
487 OnResize(sizeEvent);
488}
489
490// -----------------------------------------------------------------------
491
492wxPropertyGrid::~wxPropertyGrid()
493{
494 size_t i;
495
9370ec6a 496#if wxUSE_THREADS
644b283d
JS
497 wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
498#endif
499
500 //
501 // Remove grid and property pointers from live wxPropertyGridEvents.
502 for ( i=0; i<m_liveEvents.size(); i++ )
503 {
504 wxPropertyGridEvent* evt = m_liveEvents[i];
505 evt->SetPropertyGrid(NULL);
506 evt->SetProperty(NULL);
507 }
508 m_liveEvents.clear();
509
e84e5ba3
JS
510 if ( m_processedEvent )
511 {
512 // All right... we are being deleted while wxPropertyGrid event
513 // is being sent. Make sure that event propagates as little
514 // as possible (although usually this is not enough to prevent
515 // a crash).
516 m_processedEvent->Skip(false);
517 m_processedEvent->StopPropagation();
518
519 // Let's use wxMessageBox to make the message appear more
644b283d 520 // reliably (and *before* the crash can happen).
e84e5ba3
JS
521 ::wxMessageBox("wxPropertyGrid was being destroyed in an event "
522 "generated by it. This usually leads to a crash "
523 "so it is recommended to destroy the control "
524 "at idle time instead.");
525 }
526
fc72fab6 527 DoSelectProperty(NULL, wxPG_SEL_NOVALIDATE|wxPG_SEL_DONT_SEND_EVENT);
1c4293cb
VZ
528
529 // This should do prevent things from going too badly wrong
530 m_iFlags &= ~(wxPG_FL_INITIALIZED);
531
532 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED )
39e4e221 533 ReleaseMouse();
1c4293cb 534
6edd8829 535 // Call with NULL to disconnect event handling
08c1613f
JS
536 if ( GetExtraStyle() & wxPG_EX_ENABLE_TLP_TRACKING )
537 {
538 OnTLPChanging(NULL);
1c4293cb 539
08c1613f
JS
540 wxASSERT_MSG( !IsEditorsValueModified(),
541 wxS("Most recent change in property editor was ")
542 wxS("lost!!! (if you don't want this to happen, ")
543 wxS("close your frames and dialogs using ")
544 wxS("Close(false).)") );
545 }
1c4293cb
VZ
546
547#if wxPG_DOUBLE_BUFFER
548 if ( m_doubleBuffer )
549 delete m_doubleBuffer;
550#endif
551
1c4293cb
VZ
552 if ( m_iFlags & wxPG_FL_CREATEDSTATE )
553 delete m_pState;
554
555 delete m_cursorSizeWE;
556
557#ifndef wxPG_ICON_WIDTH
657a8a35
VZ
558 delete m_expandbmp;
559 delete m_collbmp;
1c4293cb
VZ
560#endif
561
1c4293cb
VZ
562 // Delete common value records
563 for ( i=0; i<m_commonValues.size(); i++ )
564 {
521f1d83
JS
565 // Use temporary variable to work around possible strange VC6 (asserts because m_size is zero)
566 wxPGCommonValue* value = m_commonValues[i];
567 delete value;
1c4293cb
VZ
568 }
569}
570
571// -----------------------------------------------------------------------
572
573bool wxPropertyGrid::Destroy()
574{
575 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED )
39e4e221 576 ReleaseMouse();
1c4293cb 577
2e2e62de 578 return wxControl::Destroy();
1c4293cb
VZ
579}
580
581// -----------------------------------------------------------------------
582
583wxPropertyGridPageState* wxPropertyGrid::CreateState() const
584{
585 return new wxPropertyGridPageState();
586}
587
588// -----------------------------------------------------------------------
589// wxPropertyGrid overridden wxWindow methods
590// -----------------------------------------------------------------------
591
592void wxPropertyGrid::SetWindowStyleFlag( long style )
593{
594 long old_style = m_windowStyle;
595
596 if ( m_iFlags & wxPG_FL_INITIALIZED )
597 {
598 wxASSERT( m_pState );
599
600 if ( !(style & wxPG_HIDE_CATEGORIES) && (old_style & wxPG_HIDE_CATEGORIES) )
601 {
602 // Enable categories
603 EnableCategories( true );
604 }
605 else if ( (style & wxPG_HIDE_CATEGORIES) && !(old_style & wxPG_HIDE_CATEGORIES) )
606 {
607 // Disable categories
608 EnableCategories( false );
609 }
610 if ( !(old_style & wxPG_AUTO_SORT) && (style & wxPG_AUTO_SORT) )
611 {
612 //
613 // Autosort enabled
614 //
615 if ( !m_frozen )
616 PrepareAfterItemsAdded();
617 else
618 m_pState->m_itemsAdded = 1;
619 }
620 #if wxPG_SUPPORT_TOOLTIPS
621 if ( !(old_style & wxPG_TOOLTIPS) && (style & wxPG_TOOLTIPS) )
622 {
623 //
624 // Tooltips enabled
625 //
626 /*
627 wxToolTip* tooltip = new wxToolTip ( wxEmptyString );
628 SetToolTip ( tooltip );
629 tooltip->SetDelay ( wxPG_TOOLTIP_DELAY );
630 */
631 }
632 else if ( (old_style & wxPG_TOOLTIPS) && !(style & wxPG_TOOLTIPS) )
633 {
634 //
635 // Tooltips disabled
636 //
2e2e62de 637 SetToolTip( NULL );
1c4293cb
VZ
638 }
639 #endif
640 }
641
2e2e62de 642 wxControl::SetWindowStyleFlag ( style );
1c4293cb
VZ
643
644 if ( m_iFlags & wxPG_FL_INITIALIZED )
645 {
646 if ( (old_style & wxPG_HIDE_MARGIN) != (style & wxPG_HIDE_MARGIN) )
647 {
648 CalculateFontAndBitmapStuff( m_vspacing );
649 Refresh();
650 }
651 }
652}
653
654// -----------------------------------------------------------------------
655
656void wxPropertyGrid::Freeze()
657{
658 if ( !m_frozen )
659 {
2e2e62de 660 wxControl::Freeze();
1c4293cb
VZ
661 }
662 m_frozen++;
663}
664
665// -----------------------------------------------------------------------
666
667void wxPropertyGrid::Thaw()
668{
669 m_frozen--;
670
671 if ( !m_frozen )
672 {
2e2e62de 673 wxControl::Thaw();
1c4293cb
VZ
674 RecalculateVirtualSize();
675 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
39e4e221 676 Refresh();
1c4293cb
VZ
677 #endif
678
679 // Force property re-selection
fc72fab6
JS
680 // NB: We must copy the selection.
681 wxArrayPGProperty selection = m_pState->m_selection;
e6f91864 682 DoSetSelection(selection, wxPG_SEL_FORCE | wxPG_SEL_NONVISIBLE);
fc72fab6
JS
683 }
684}
685
686// -----------------------------------------------------------------------
687
688bool wxPropertyGrid::DoAddToSelection( wxPGProperty* prop, int selFlags )
689{
690 wxCHECK( prop, false );
691
692 if ( !(GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION) )
693 return DoSelectProperty(prop, selFlags);
694
695 wxArrayPGProperty& selection = m_pState->m_selection;
696
697 if ( !selection.size() )
698 {
699 return DoSelectProperty(prop, selFlags);
700 }
701 else
702 {
703 // For categories, only one can be selected at a time
704 if ( prop->IsCategory() || selection[0]->IsCategory() )
705 return true;
706
707 selection.push_back(prop);
708
709 if ( !(selFlags & wxPG_SEL_DONT_SEND_EVENT) )
710 {
58935d4a 711 SendEvent( wxEVT_PG_SELECTED, prop, NULL );
fc72fab6
JS
712 }
713
58935d4a 714 DrawItem(prop);
fc72fab6
JS
715 }
716
717 return true;
718}
719
720// -----------------------------------------------------------------------
721
722bool wxPropertyGrid::DoRemoveFromSelection( wxPGProperty* prop, int selFlags )
723{
724 wxCHECK( prop, false );
725 bool res;
726
727 wxArrayPGProperty& selection = m_pState->m_selection;
728 if ( selection.size() <= 1 )
729 {
730 res = DoSelectProperty(NULL, selFlags);
731 }
732 else
733 {
7f3f8f1e 734 m_pState->DoRemoveFromSelection(prop);
58935d4a 735 DrawItem(prop);
fc72fab6
JS
736 res = true;
737 }
738
739 return res;
740}
741
742// -----------------------------------------------------------------------
743
58935d4a
JS
744bool wxPropertyGrid::DoSelectAndEdit( wxPGProperty* prop,
745 unsigned int colIndex,
746 unsigned int selFlags )
747{
748 //
749 // NB: Enable following if label editor background colour is
750 // ever changed to any other than m_colSelBack.
751 //
752 // We use this workaround to prevent visible flicker when editing
753 // a cell. Atleast on wxMSW, there is a difficult to find
754 // (and perhaps prevent) redraw somewhere between making property
755 // selected and enabling label editing.
756 //
757 //wxColour prevColSelBack = m_colSelBack;
758 //m_colSelBack = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
759
760 bool res;
761
762 if ( colIndex == 1 )
763 {
764 res = DoSelectProperty(prop, selFlags);
765 }
766 else
767 {
768 // send event
769 DoClearSelection(false, wxPG_SEL_NO_REFRESH);
770
771 if ( m_pState->m_editableColumns.Index(colIndex) == wxNOT_FOUND )
772 {
773 res = DoAddToSelection(prop, selFlags);
774 }
775 else
776 {
777 res = DoAddToSelection(prop, selFlags|wxPG_SEL_NO_REFRESH);
778
779 DoBeginLabelEdit(colIndex, selFlags);
780 }
781 }
782
783 //m_colSelBack = prevColSelBack;
784 return res;
785}
786
787// -----------------------------------------------------------------------
788
fc72fab6 789bool wxPropertyGrid::AddToSelectionFromInputEvent( wxPGProperty* prop,
58935d4a 790 unsigned int colIndex,
fc72fab6
JS
791 wxMouseEvent* mouseEvent,
792 int selFlags )
793{
46fa86f7 794 const wxArrayPGProperty& selection = GetSelectedProperties();
fc72fab6
JS
795 bool alreadySelected = m_pState->DoIsPropertySelected(prop);
796 bool res = true;
46fa86f7
JS
797
798 // Set to 2 if also add all items in between
799 int addToExistingSelection = 0;
fc72fab6
JS
800
801 if ( GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION )
802 {
803 if ( mouseEvent )
804 {
805 if ( mouseEvent->GetEventType() == wxEVT_RIGHT_DOWN ||
806 mouseEvent->GetEventType() == wxEVT_RIGHT_UP )
807 {
808 // Allow right-click for context menu without
809 // disturbing the selection.
810 if ( GetSelectedProperties().size() <= 1 ||
811 !alreadySelected )
58935d4a 812 return DoSelectAndEdit(prop, colIndex, selFlags);
fc72fab6
JS
813 return true;
814 }
815 else
816 {
46fa86f7
JS
817 if ( mouseEvent->ControlDown() )
818 {
819 addToExistingSelection = 1;
820 }
821 else if ( mouseEvent->ShiftDown() )
822 {
823 if ( selection.size() > 0 && !prop->IsCategory() )
824 addToExistingSelection = 2;
825 else
826 addToExistingSelection = 1;
827 }
fc72fab6
JS
828 }
829 }
fc72fab6
JS
830 }
831
46fa86f7 832 if ( addToExistingSelection == 1 )
fc72fab6 833 {
46fa86f7 834 // Add/remove one
fc72fab6
JS
835 if ( !alreadySelected )
836 {
837 res = DoAddToSelection(prop, selFlags);
838 }
839 else if ( GetSelectedProperties().size() > 1 )
840 {
841 res = DoRemoveFromSelection(prop, selFlags);
842 }
843 }
46fa86f7
JS
844 else if ( addToExistingSelection == 2 )
845 {
846 // Add this, and all in between
847
848 // Find top selected property
849 wxPGProperty* topSelProp = selection[0];
850 int topSelPropY = topSelProp->GetY();
851 for ( unsigned int i=1; i<selection.size(); i++ )
852 {
853 wxPGProperty* p = selection[i];
854 int y = p->GetY();
855 if ( y < topSelPropY )
856 {
857 topSelProp = p;
858 topSelPropY = y;
859 }
860 }
861
862 wxPGProperty* startFrom;
863 wxPGProperty* stopAt;
864
865 if ( prop->GetY() <= topSelPropY )
866 {
867 // Property is above selection (or same)
868 startFrom = prop;
869 stopAt = topSelProp;
870 }
871 else
872 {
873 // Property is below selection
874 startFrom = topSelProp;
875 stopAt = prop;
876 }
877
878 // Iterate through properties in-between, and select them
879 wxPropertyGridIterator it;
880
881 for ( it = GetIterator(wxPG_ITERATE_VISIBLE, startFrom);
882 !it.AtEnd();
883 it++ )
884 {
885 wxPGProperty* p = *it;
886
887 if ( !p->IsCategory() &&
888 !m_pState->DoIsPropertySelected(p) )
889 {
890 DoAddToSelection(p, selFlags);
891 }
892
893 if ( p == stopAt )
894 break;
895 }
896 }
fc72fab6
JS
897 else
898 {
58935d4a 899 res = DoSelectAndEdit(prop, colIndex, selFlags);
fc72fab6
JS
900 }
901
902 return res;
903}
904
905// -----------------------------------------------------------------------
906
907void wxPropertyGrid::DoSetSelection( const wxArrayPGProperty& newSelection,
908 int selFlags )
909{
910 if ( newSelection.size() > 0 )
911 {
912 if ( !DoSelectProperty(newSelection[0], selFlags) )
913 return;
914 }
915 else
916 {
917 DoClearSelection(false, selFlags);
918 }
919
920 for ( unsigned int i = 1; i < newSelection.size(); i++ )
921 {
922 DoAddToSelection(newSelection[i], selFlags);
1c4293cb 923 }
fc72fab6
JS
924
925 Refresh();
1c4293cb
VZ
926}
927
928// -----------------------------------------------------------------------
929
e9fb1910
JS
930void wxPropertyGrid::MakeColumnEditable( unsigned int column,
931 bool editable )
932{
933 wxASSERT( column != 1 );
934
935 wxArrayInt& cols = m_pState->m_editableColumns;
936
937 if ( editable )
938 {
939 cols.push_back(column);
940 }
941 else
942 {
943 for ( int i = cols.size() - 1; i > 0; i-- )
944 {
945 if ( cols[i] == (int)column )
946 cols.erase( cols.begin() + i );
947 }
948 }
949}
950
951// -----------------------------------------------------------------------
952
58935d4a
JS
953void wxPropertyGrid::DoBeginLabelEdit( unsigned int colIndex,
954 int selFlags )
955{
956 wxPGProperty* selected = GetSelection();
957 wxCHECK_RET(selected, wxT("No property selected"));
958 wxCHECK_RET(colIndex != 1, wxT("Do not use this for column 1"));
959
960 if ( !(selFlags & wxPG_SEL_DONT_SEND_EVENT) )
961 {
962 if ( SendEvent( wxEVT_PG_LABEL_EDIT_BEGIN,
963 selected, NULL, 0,
964 colIndex ) )
965 return;
966 }
967
968 wxString text;
969 const wxPGCell* cell = NULL;
970 if ( selected->HasCell(colIndex) )
971 {
972 cell = &selected->GetCell(colIndex);
973 if ( !cell->HasText() && colIndex == 0 )
974 text = selected->GetLabel();
975 }
976
977 if ( !cell )
978 {
979 if ( colIndex == 0 )
980 text = selected->GetLabel();
981 else
982 cell = &selected->GetOrCreateCell(colIndex);
983 }
984
985 if ( cell && cell->HasText() )
986 text = cell->GetText();
987
988 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE); // send event
989
990 m_selColumn = colIndex;
991
992 wxRect r = GetEditorWidgetRect(selected, m_selColumn);
993
994 wxWindow* tc = GenerateEditorTextCtrl(r.GetPosition(),
995 r.GetSize(),
996 text,
997 NULL,
998 wxTE_PROCESS_ENTER,
999 0,
1000 colIndex);
1001
1002 wxWindowID id = tc->GetId();
1003 tc->Connect(id, wxEVT_COMMAND_TEXT_ENTER,
1004 wxCommandEventHandler(wxPropertyGrid::OnLabelEditorEnterPress),
1005 NULL, this);
1006 tc->Connect(id, wxEVT_KEY_DOWN,
1007 wxKeyEventHandler(wxPropertyGrid::OnLabelEditorKeyPress),
1008 NULL, this);
1009
1010 tc->SetFocus();
1011
1012 m_labelEditor = wxStaticCast(tc, wxTextCtrl);
1013 m_labelEditorProperty = selected;
1014}
1015
1016// -----------------------------------------------------------------------
1017
1018void
1019wxPropertyGrid::OnLabelEditorEnterPress( wxCommandEvent& WXUNUSED(event) )
1020{
1021 DoEndLabelEdit(true);
1022}
1023
1024// -----------------------------------------------------------------------
1025
1026void wxPropertyGrid::OnLabelEditorKeyPress( wxKeyEvent& event )
1027{
1028 int keycode = event.GetKeyCode();
1029
1030 if ( keycode == WXK_ESCAPE )
1031 {
1032 DoEndLabelEdit(false);
1033 }
1034 else
1035 {
372d0bdd 1036 HandleKeyEvent(event, true);
58935d4a
JS
1037 }
1038}
1039
1040// -----------------------------------------------------------------------
1041
1042void wxPropertyGrid::DoEndLabelEdit( bool commit, int selFlags )
1043{
1044 if ( !m_labelEditor )
1045 return;
1046
1047 wxPGProperty* prop = m_labelEditorProperty;
1048 wxASSERT(prop);
1049
1050 if ( commit )
1051 {
1052 if ( !(selFlags & wxPG_SEL_DONT_SEND_EVENT) )
1053 {
1054 // wxPG_SEL_NOVALIDATE is passed correctly in selFlags
1055 if ( SendEvent( wxEVT_PG_LABEL_EDIT_ENDING,
1056 prop, NULL, selFlags,
1057 m_selColumn ) )
1058 return;
1059 }
1060
1061 wxString text = m_labelEditor->GetValue();
1062 wxPGCell* cell = NULL;
1063 if ( prop->HasCell(m_selColumn) )
1064 {
1065 cell = &prop->GetCell(m_selColumn);
1066 }
1067 else
1068 {
1069 if ( m_selColumn == 0 )
1070 prop->SetLabel(text);
1071 else
1072 cell = &prop->GetOrCreateCell(m_selColumn);
1073 }
1074
1075 if ( cell )
1076 cell->SetText(text);
1077 }
1078
1079 m_selColumn = 1;
18e543ea 1080 int wasFocused = m_iFlags & wxPG_FL_FOCUSED;
58935d4a
JS
1081
1082 DestroyEditorWnd(m_labelEditor);
18e543ea 1083
58935d4a
JS
1084 m_labelEditor = NULL;
1085 m_labelEditorProperty = NULL;
1086
18e543ea
JS
1087 // Fix focus (needed at least on wxGTK)
1088 if ( wasFocused )
1089 SetFocusOnCanvas();
1090
58935d4a
JS
1091 DrawItem(prop);
1092}
1093
1094// -----------------------------------------------------------------------
1095
1c4293cb
VZ
1096void wxPropertyGrid::SetExtraStyle( long exStyle )
1097{
08c1613f
JS
1098 if ( exStyle & wxPG_EX_ENABLE_TLP_TRACKING )
1099 OnTLPChanging(::wxGetTopLevelParent(this));
1100 else
1101 OnTLPChanging(NULL);
1102
1c4293cb
VZ
1103 if ( exStyle & wxPG_EX_NATIVE_DOUBLE_BUFFERING )
1104 {
1105#if defined(__WXMSW__)
1106
1107 /*
1108 // Don't use WS_EX_COMPOSITED just now.
1109 HWND hWnd;
1110
1111 if ( m_iFlags & wxPG_FL_IN_MANAGER )
1112 hWnd = (HWND)GetParent()->GetHWND();
1113 else
1114 hWnd = (HWND)GetHWND();
1115
1116 ::SetWindowLong( hWnd, GWL_EXSTYLE,
1117 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
1118 */
1119
1120//#elif defined(__WXGTK20__)
1121#endif
1122 // Only apply wxPG_EX_NATIVE_DOUBLE_BUFFERING if the window
1123 // truly was double-buffered.
1124 if ( !this->IsDoubleBuffered() )
1125 {
1126 exStyle &= ~(wxPG_EX_NATIVE_DOUBLE_BUFFERING);
1127 }
1128 else
1129 {
1130 #if wxPG_DOUBLE_BUFFER
5276b0a5 1131 wxDELETE(m_doubleBuffer);
1c4293cb
VZ
1132 #endif
1133 }
1134 }
1135
2e2e62de 1136 wxControl::SetExtraStyle( exStyle );
1c4293cb
VZ
1137
1138 if ( exStyle & wxPG_EX_INIT_NOCAT )
1139 m_pState->InitNonCatMode();
1140
1141 if ( exStyle & wxPG_EX_HELP_AS_TOOLTIPS )
1142 m_windowStyle |= wxPG_TOOLTIPS;
1143
1144 // Set global style
1145 wxPGGlobalVars->m_extraStyle = exStyle;
1146}
1147
1148// -----------------------------------------------------------------------
1149
1150// returns the best acceptable minimal size
1151wxSize wxPropertyGrid::DoGetBestSize() const
1152{
916533c0 1153 int lineHeight = wxMax(15, m_lineHeight);
1c4293cb 1154
916533c0
VZ
1155 // don't make the grid too tall (limit height to 10 items) but don't
1156 // make it too small neither
1157 int numLines = wxMin
1158 (
1159 wxMax(m_pState->m_properties->GetChildCount(), 3),
1160 10
1161 );
1162
890defb4
VZ
1163 wxClientDC dc(const_cast<wxPropertyGrid *>(this));
1164 int width = m_marginWidth;
1165 for ( unsigned int i = 0; i < m_pState->m_colWidths.size(); i++ )
1166 {
1167 width += m_pState->GetColumnFitWidth(dc, m_pState->DoGetRoot(), i, true);
1168 }
1169
1170 const wxSize sz = wxSize(width, lineHeight*numLines + 40);
1171
1c4293cb
VZ
1172 CacheBestSize(sz);
1173 return sz;
1174}
1175
6edd8829 1176// -----------------------------------------------------------------------
27c1f235
JS
1177
1178void wxPropertyGrid::OnTLPChanging( wxWindow* newTLP )
1179{
08c1613f
JS
1180 if ( newTLP == m_tlp )
1181 return;
1182
6edd8829
JS
1183 wxLongLong currentTime = ::wxGetLocalTimeMillis();
1184
27c1f235
JS
1185 //
1186 // Parent changed so let's redetermine and re-hook the
1187 // correct top-level window.
1188 if ( m_tlp )
1189 {
27c1f235
JS
1190 m_tlp->Disconnect( wxEVT_CLOSE_WINDOW,
1191 wxCloseEventHandler(wxPropertyGrid::OnTLPClose),
1192 NULL, this );
6edd8829
JS
1193 m_tlpClosed = m_tlp;
1194 m_tlpClosedTime = currentTime;
27c1f235
JS
1195 }
1196
6edd8829
JS
1197 if ( newTLP )
1198 {
1199 // Only accept new tlp if same one was not just dismissed.
1200 if ( newTLP != m_tlpClosed ||
1201 m_tlpClosedTime+250 < currentTime )
1202 {
1203 newTLP->Connect( wxEVT_CLOSE_WINDOW,
1204 wxCloseEventHandler(wxPropertyGrid::OnTLPClose),
1205 NULL, this );
1206 m_tlpClosed = NULL;
1207 }
1208 else
1209 {
1210 newTLP = NULL;
1211 }
1212 }
27c1f235
JS
1213
1214 m_tlp = newTLP;
27c1f235
JS
1215}
1216
1217// -----------------------------------------------------------------------
1218
1219void wxPropertyGrid::OnTLPClose( wxCloseEvent& event )
1220{
1221 // ClearSelection forces value validation/commit.
01b5ad3b 1222 if ( event.CanVeto() && !DoClearSelection() )
27c1f235
JS
1223 {
1224 event.Veto();
1225 return;
1226 }
1227
6edd8829
JS
1228 // Ok, it can close, set tlp pointer to NULL. Some other event
1229 // handler can of course veto the close, but our OnIdle() should
1230 // then be able to regain the tlp pointer.
1231 OnTLPChanging(NULL);
1232
27c1f235
JS
1233 event.Skip();
1234}
1235
1236// -----------------------------------------------------------------------
1237
1238bool wxPropertyGrid::Reparent( wxWindowBase *newParent )
1239{
1240 OnTLPChanging((wxWindow*)newParent);
1241
2e2e62de 1242 bool res = wxControl::Reparent(newParent);
27c1f235
JS
1243
1244 return res;
1245}
1246
1c4293cb
VZ
1247// -----------------------------------------------------------------------
1248// wxPropertyGrid Font and Colour Methods
1249// -----------------------------------------------------------------------
1250
1251void wxPropertyGrid::CalculateFontAndBitmapStuff( int vspacing )
1252{
657a8a35 1253 int x = 0, y = 0;
1c4293cb 1254
2e2e62de 1255 m_captionFont = wxControl::GetFont();
1c4293cb 1256
657a8a35 1257 GetTextExtent(wxS("jG"), &x, &y, 0, 0, &m_captionFont);
1c4293cb 1258 m_subgroup_extramargin = x + (x/2);
657a8a35 1259 m_fontHeight = y;
1c4293cb
VZ
1260
1261#if wxPG_USE_RENDERER_NATIVE
1262 m_iconWidth = wxPG_ICON_WIDTH;
1263#elif wxPG_ICON_WIDTH
1264 // scale icon
1265 m_iconWidth = (m_fontHeight * wxPG_ICON_WIDTH) / 13;
1266 if ( m_iconWidth < 5 ) m_iconWidth = 5;
1267 else if ( !(m_iconWidth & 0x01) ) m_iconWidth++; // must be odd
1268
1269#endif
1270
1271 m_gutterWidth = m_iconWidth / wxPG_GUTTER_DIV;
1272 if ( m_gutterWidth < wxPG_GUTTER_MIN )
1273 m_gutterWidth = wxPG_GUTTER_MIN;
1274
1275 int vdiv = 6;
1276 if ( vspacing <= 1 ) vdiv = 12;
1277 else if ( vspacing >= 3 ) vdiv = 3;
1278
1279 m_spacingy = m_fontHeight / vdiv;
1280 if ( m_spacingy < wxPG_YSPACING_MIN )
1281 m_spacingy = wxPG_YSPACING_MIN;
1282
1283 m_marginWidth = 0;
1284 if ( !(m_windowStyle & wxPG_HIDE_MARGIN) )
1285 m_marginWidth = m_gutterWidth*2 + m_iconWidth;
1286
1287 m_captionFont.SetWeight(wxBOLD);
657a8a35 1288 GetTextExtent(wxS("jG"), &x, &y, 0, 0, &m_captionFont);
1c4293cb
VZ
1289
1290 m_lineHeight = m_fontHeight+(2*m_spacingy)+1;
1c4293cb
VZ
1291
1292 // button spacing
1293 m_buttonSpacingY = (m_lineHeight - m_iconHeight) / 2;
1294 if ( m_buttonSpacingY < 0 ) m_buttonSpacingY = 0;
1295
1296 if ( m_pState )
1297 m_pState->CalculateFontAndBitmapStuff(vspacing);
1298
1299 if ( m_iFlags & wxPG_FL_INITIALIZED )
1300 RecalculateVirtualSize();
1301
1302 InvalidateBestSize();
1303}
1304
1305// -----------------------------------------------------------------------
1306
1307void wxPropertyGrid::OnSysColourChanged( wxSysColourChangedEvent &WXUNUSED(event) )
1308{
1309 RegainColours();
1310 Refresh();
1311}
1312
1313// -----------------------------------------------------------------------
1314
1315static wxColour wxPGAdjustColour(const wxColour& src, int ra,
1316 int ga = 1000, int ba = 1000,
1317 bool forceDifferent = false)
1318{
1319 if ( ga >= 1000 )
1320 ga = ra;
1321 if ( ba >= 1000 )
1322 ba = ra;
1323
1324 // Recursion guard (allow 2 max)
1325 static int isinside = 0;
1326 isinside++;
1327 wxCHECK_MSG( isinside < 3,
1328 *wxBLACK,
1329 wxT("wxPGAdjustColour should not be recursively called more than once") );
1330
1331 wxColour dst;
1332
1333 int r = src.Red();
1334 int g = src.Green();
1335 int b = src.Blue();
1336 int r2 = r + ra;
1337 if ( r2>255 ) r2 = 255;
1338 else if ( r2<0) r2 = 0;
1339 int g2 = g + ga;
1340 if ( g2>255 ) g2 = 255;
1341 else if ( g2<0) g2 = 0;
1342 int b2 = b + ba;
1343 if ( b2>255 ) b2 = 255;
1344 else if ( b2<0) b2 = 0;
1345
1346 // Make sure they are somewhat different
1347 if ( forceDifferent && (abs((r+g+b)-(r2+g2+b2)) < abs(ra/2)) )
1348 dst = wxPGAdjustColour(src,-(ra*2));
1349 else
1350 dst = wxColour(r2,g2,b2);
1351
1352 // Recursion guard (allow 2 max)
1353 isinside--;
1354
1355 return dst;
1356}
1357
1358
1359static int wxPGGetColAvg( const wxColour& col )
1360{
1361 return (col.Red() + col.Green() + col.Blue()) / 3;
1362}
1363
1364
1365void wxPropertyGrid::RegainColours()
1366{
1c4293cb
VZ
1367 if ( !(m_coloursCustomized & 0x0002) )
1368 {
1369 wxColour col = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE );
1370
1371 // Make sure colour is dark enough
1372 #ifdef __WXGTK__
1373 int colDec = wxPGGetColAvg(col) - 230;
1374 #else
1375 int colDec = wxPGGetColAvg(col) - 200;
1376 #endif
1377 if ( colDec > 0 )
1378 m_colCapBack = wxPGAdjustColour(col,-colDec);
1379 else
1380 m_colCapBack = col;
d7e2b522 1381 m_categoryDefaultCell.GetData()->SetBgCol(m_colCapBack);
1c4293cb
VZ
1382 }
1383
1384 if ( !(m_coloursCustomized & 0x0001) )
1385 m_colMargin = m_colCapBack;
1386
1387 if ( !(m_coloursCustomized & 0x0004) )
1388 {
1389 #ifdef __WXGTK__
1390 int colDec = -90;
1391 #else
1392 int colDec = -72;
1393 #endif
1394 wxColour capForeCol = wxPGAdjustColour(m_colCapBack,colDec,5000,5000,true);
1395 m_colCapFore = capForeCol;
d7e2b522 1396 m_categoryDefaultCell.GetData()->SetFgCol(capForeCol);
1c4293cb
VZ
1397 }
1398
1399 if ( !(m_coloursCustomized & 0x0008) )
1400 {
1401 wxColour bgCol = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
1402 m_colPropBack = bgCol;
d7e2b522 1403 m_propertyDefaultCell.GetData()->SetBgCol(bgCol);
3e6d8c31
JS
1404 if ( !m_unspecifiedAppearance.GetBgCol().IsOk() )
1405 m_unspecifiedAppearance.SetBgCol(bgCol);
1c4293cb
VZ
1406 }
1407
1408 if ( !(m_coloursCustomized & 0x0010) )
1409 {
1410 wxColour fgCol = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT );
1411 m_colPropFore = fgCol;
d7e2b522 1412 m_propertyDefaultCell.GetData()->SetFgCol(fgCol);
3e6d8c31
JS
1413 if ( !m_unspecifiedAppearance.GetFgCol().IsOk() )
1414 m_unspecifiedAppearance.SetFgCol(fgCol);
1c4293cb
VZ
1415 }
1416
1417 if ( !(m_coloursCustomized & 0x0020) )
1418 m_colSelBack = wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHT );
1419
1420 if ( !(m_coloursCustomized & 0x0040) )
1421 m_colSelFore = wxSystemSettings::GetColour( wxSYS_COLOUR_HIGHLIGHTTEXT );
1422
1423 if ( !(m_coloursCustomized & 0x0080) )
1424 m_colLine = m_colCapBack;
1425
1426 if ( !(m_coloursCustomized & 0x0100) )
1427 m_colDisPropFore = m_colCapFore;
1428
1429 m_colEmptySpace = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW );
1430}
1431
1432// -----------------------------------------------------------------------
1433
1434void wxPropertyGrid::ResetColours()
1435{
1436 m_coloursCustomized = 0;
1437
1438 RegainColours();
1439
1440 Refresh();
1441}
1442
1443// -----------------------------------------------------------------------
1444
1445bool wxPropertyGrid::SetFont( const wxFont& font )
1446{
1447 // Must disable active editor.
01b5ad3b 1448 DoClearSelection();
1c4293cb 1449
2e2e62de 1450 bool res = wxControl::SetFont( font );
521f1d83 1451 if ( res && GetParent()) // may not have been Create()ed yet if SetFont called from SetWindowVariant
1c4293cb
VZ
1452 {
1453 CalculateFontAndBitmapStuff( m_vspacing );
1c4293cb
VZ
1454 Refresh();
1455 }
1456
1457 return res;
1c4293cb
VZ
1458}
1459
1460// -----------------------------------------------------------------------
1461
1462void wxPropertyGrid::SetLineColour( const wxColour& col )
1463{
1464 m_colLine = col;
1465 m_coloursCustomized |= 0x80;
1466 Refresh();
1467}
1468
1469// -----------------------------------------------------------------------
1470
1471void wxPropertyGrid::SetMarginColour( const wxColour& col )
1472{
1473 m_colMargin = col;
1474 m_coloursCustomized |= 0x01;
1475 Refresh();
1476}
1477
1478// -----------------------------------------------------------------------
1479
1480void wxPropertyGrid::SetCellBackgroundColour( const wxColour& col )
1481{
1482 m_colPropBack = col;
1483 m_coloursCustomized |= 0x08;
1484
d7e2b522 1485 m_propertyDefaultCell.GetData()->SetBgCol(col);
3e6d8c31 1486 m_unspecifiedAppearance.SetBgCol(col);
1c4293cb
VZ
1487
1488 Refresh();
1489}
1490
1491// -----------------------------------------------------------------------
1492
1493void wxPropertyGrid::SetCellTextColour( const wxColour& col )
1494{
1495 m_colPropFore = col;
1496 m_coloursCustomized |= 0x10;
1497
d7e2b522 1498 m_propertyDefaultCell.GetData()->SetFgCol(col);
3e6d8c31 1499 m_unspecifiedAppearance.SetFgCol(col);
1c4293cb
VZ
1500
1501 Refresh();
1502}
1503
1504// -----------------------------------------------------------------------
1505
1506void wxPropertyGrid::SetEmptySpaceColour( const wxColour& col )
1507{
1508 m_colEmptySpace = col;
1509
1510 Refresh();
1511}
1512
1513// -----------------------------------------------------------------------
1514
1515void wxPropertyGrid::SetCellDisabledTextColour( const wxColour& col )
1516{
1517 m_colDisPropFore = col;
1518 m_coloursCustomized |= 0x100;
1519 Refresh();
1520}
1521
1522// -----------------------------------------------------------------------
1523
1524void wxPropertyGrid::SetSelectionBackgroundColour( const wxColour& col )
1525{
1526 m_colSelBack = col;
1527 m_coloursCustomized |= 0x20;
1528 Refresh();
1529}
1530
1531// -----------------------------------------------------------------------
1532
1533void wxPropertyGrid::SetSelectionTextColour( const wxColour& col )
1534{
1535 m_colSelFore = col;
1536 m_coloursCustomized |= 0x40;
1537 Refresh();
1538}
1539
1540// -----------------------------------------------------------------------
1541
1542void wxPropertyGrid::SetCaptionBackgroundColour( const wxColour& col )
1543{
1544 m_colCapBack = col;
1545 m_coloursCustomized |= 0x02;
d7e2b522
JS
1546
1547 m_categoryDefaultCell.GetData()->SetBgCol(col);
1548
1c4293cb
VZ
1549 Refresh();
1550}
1551
1552// -----------------------------------------------------------------------
1553
1554void wxPropertyGrid::SetCaptionTextColour( const wxColour& col )
1555{
1556 m_colCapFore = col;
1557 m_coloursCustomized |= 0x04;
1558
d7e2b522 1559 m_categoryDefaultCell.GetData()->SetFgCol(col);
1c4293cb
VZ
1560
1561 Refresh();
1562}
1563
1c4293cb
VZ
1564// -----------------------------------------------------------------------
1565// wxPropertyGrid property adding and removal
1566// -----------------------------------------------------------------------
1567
1568void wxPropertyGrid::PrepareAfterItemsAdded()
1569{
1570 if ( !m_pState || !m_pState->m_itemsAdded ) return;
1571
1572 m_pState->m_itemsAdded = 0;
1573
1574 if ( m_windowStyle & wxPG_AUTO_SORT )
0eb877f2 1575 Sort(wxPG_SORT_TOP_LEVEL_ONLY);
1c4293cb
VZ
1576
1577 RecalculateVirtualSize();
7261371b
JS
1578
1579 // Fix editor position
1580 CorrectEditorWidgetPosY();
1c4293cb
VZ
1581}
1582
1c4293cb
VZ
1583// -----------------------------------------------------------------------
1584// wxPropertyGrid property operations
1585// -----------------------------------------------------------------------
1586
1c4293cb
VZ
1587bool wxPropertyGrid::EnsureVisible( wxPGPropArg id )
1588{
1589 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1590
1591 Update();
1592
1593 bool changed = false;
1594
1595 // Is it inside collapsed section?
1596 if ( !p->IsVisible() )
1597 {
1598 // expand parents
1599 wxPGProperty* parent = p->GetParent();
1600 wxPGProperty* grandparent = parent->GetParent();
1601
1602 if ( grandparent && grandparent != m_pState->m_properties )
1603 Expand( grandparent );
1604
1605 Expand( parent );
1606 changed = true;
1607 }
1608
1609 // Need to scroll?
1610 int vx, vy;
1611 GetViewStart(&vx,&vy);
1612 vy*=wxPG_PIXELS_PER_UNIT;
1613
1614 int y = p->GetY();
1615
1616 if ( y < vy )
1617 {
1618 Scroll(vx, y/wxPG_PIXELS_PER_UNIT );
1619 m_iFlags |= wxPG_FL_SCROLLED;
1620 changed = true;
1621 }
1622 else if ( (y+m_lineHeight) > (vy+m_height) )
1623 {
1624 Scroll(vx, (y-m_height+(m_lineHeight*2))/wxPG_PIXELS_PER_UNIT );
1625 m_iFlags |= wxPG_FL_SCROLLED;
1626 changed = true;
1627 }
1628
1629 if ( changed )
1630 DrawItems( p, p );
1631
1632 return changed;
1633}
1634
1635// -----------------------------------------------------------------------
1636// wxPropertyGrid helper methods called by properties
1637// -----------------------------------------------------------------------
1638
1639// Control font changer helper.
1640void wxPropertyGrid::SetCurControlBoldFont()
1641{
bb9da4d3
JS
1642 wxWindow* editor = GetEditorControl();
1643 editor->SetFont( m_captionFont );
1c4293cb
VZ
1644}
1645
1646// -----------------------------------------------------------------------
1647
1648wxPoint wxPropertyGrid::GetGoodEditorDialogPosition( wxPGProperty* p,
1649 const wxSize& sz )
1650{
1651#if wxPG_SMALL_SCREEN
1652 // On small-screen devices, always show dialogs with default position and size.
1653 return wxDefaultPosition;
1654#else
1655 int splitterX = GetSplitterPosition();
1656 int x = splitterX;
1657 int y = p->GetY();
1658
1659 wxCHECK_MSG( y >= 0, wxPoint(-1,-1), wxT("invalid y?") );
1660
1661 ImprovedClientToScreen( &x, &y );
1662
1663 int sw = wxSystemSettings::GetMetric( ::wxSYS_SCREEN_X );
1664 int sh = wxSystemSettings::GetMetric( ::wxSYS_SCREEN_Y );
1665
1666 int new_x;
1667 int new_y;
1668
1669 if ( x > (sw/2) )
1670 // left
1671 new_x = x + (m_width-splitterX) - sz.x;
1672 else
1673 // right
1674 new_x = x;
1675
1676 if ( y > (sh/2) )
1677 // above
1678 new_y = y - sz.y;
1679 else
1680 // below
1681 new_y = y + m_lineHeight;
1682
1683 return wxPoint(new_x,new_y);
1684#endif
1685}
1686
1687// -----------------------------------------------------------------------
1688
1689wxString& wxPropertyGrid::ExpandEscapeSequences( wxString& dst_str, wxString& src_str )
1690{
6636ef8d 1691 if ( src_str.empty() )
1c4293cb
VZ
1692 {
1693 dst_str = src_str;
1694 return src_str;
1695 }
1696
1697 bool prev_is_slash = false;
1698
1699 wxString::const_iterator i = src_str.begin();
1700
1701 dst_str.clear();
1702
b7bc9d80 1703 for ( ; i != src_str.end(); ++i )
1c4293cb
VZ
1704 {
1705 wxUniChar a = *i;
1706
1707 if ( a != wxS('\\') )
1708 {
1709 if ( !prev_is_slash )
1710 {
1711 dst_str << a;
1712 }
1713 else
1714 {
1715 if ( a == wxS('n') )
1716 {
1717 #ifdef __WXMSW__
1718 dst_str << wxS('\n');
1719 #else
1720 dst_str << wxS('\n');
1721 #endif
1722 }
1723 else if ( a == wxS('t') )
1724 dst_str << wxS('\t');
1725 else
1726 dst_str << a;
1727 }
1728 prev_is_slash = false;
1729 }
1730 else
1731 {
1732 if ( prev_is_slash )
1733 {
1734 dst_str << wxS('\\');
1735 prev_is_slash = false;
1736 }
1737 else
1738 {
1739 prev_is_slash = true;
1740 }
1741 }
1742 }
1743 return dst_str;
1744}
1745
1746// -----------------------------------------------------------------------
1747
1748wxString& wxPropertyGrid::CreateEscapeSequences( wxString& dst_str, wxString& src_str )
1749{
6636ef8d 1750 if ( src_str.empty() )
1c4293cb
VZ
1751 {
1752 dst_str = src_str;
1753 return src_str;
1754 }
1755
1756 wxString::const_iterator i = src_str.begin();
1757 wxUniChar prev_a = wxS('\0');
1758
1759 dst_str.clear();
1760
b7bc9d80 1761 for ( ; i != src_str.end(); ++i )
1c4293cb
VZ
1762 {
1763 wxChar a = *i;
1764
1765 if ( a >= wxS(' ') )
1766 {
1767 // This surely is not something that requires an escape sequence.
1768 dst_str << a;
1769 }
1770 else
1771 {
1772 // This might need...
1773 if ( a == wxS('\r') )
1774 {
1775 // DOS style line end.
1776 // Already taken care below
1777 }
1778 else if ( a == wxS('\n') )
1779 // UNIX style line end.
1780 dst_str << wxS("\\n");
1781 else if ( a == wxS('\t') )
1782 // Tab.
1783 dst_str << wxS('\t');
1784 else
1785 {
1786 //wxLogDebug(wxT("WARNING: Could not create escape sequence for character #%i"),(int)a);
1787 dst_str << a;
1788 }
1789 }
1790
1791 prev_a = a;
1792 }
1793 return dst_str;
1794}
1795
1796// -----------------------------------------------------------------------
1797
1798wxPGProperty* wxPropertyGrid::DoGetItemAtY( int y ) const
1799{
1800 // Outside?
1801 if ( y < 0 )
d3b9f782 1802 return NULL;
1c4293cb
VZ
1803
1804 unsigned int a = 0;
1805 return m_pState->m_properties->GetItemAtY(y, m_lineHeight, &a);
1806}
1807
1808// -----------------------------------------------------------------------
1809// wxPropertyGrid graphics related methods
1810// -----------------------------------------------------------------------
1811
1812void wxPropertyGrid::OnPaint( wxPaintEvent& WXUNUSED(event) )
1813{
1814 wxPaintDC dc(this);
39e4e221
JS
1815 PrepareDC(dc);
1816
1817 // Don't paint after destruction has begun
1818 if ( !HasInternalFlag(wxPG_FL_INITIALIZED) )
1819 return;
1820
1821 // Find out where the window is scrolled to
1822 int vx,vy; // Top left corner of client
1823 GetViewStart(&vx,&vy);
1824 vy *= wxPG_PIXELS_PER_UNIT;
1c4293cb
VZ
1825
1826 // Update everything inside the box
1827 wxRect r = GetUpdateRegion().GetBox();
1828
39e4e221
JS
1829 r.y += vy;
1830
1831 // FIXME: This is just a workaround for a bug that causes splitters not
1832 // to paint when other windows are being dragged over the grid.
2f772c89
JS
1833 r.x = 0;
1834 r.width = GetClientSize().x;
39e4e221 1835
2e2e62de
JS
1836 r.y = vy;
1837 r.height = GetClientSize().y;
1838
39e4e221
JS
1839 // Repaint this rectangle
1840 DrawItems( dc, r.y, r.y + r.height, &r );
1841
1842 // We assume that the size set when grid is shown
1843 // is what is desired.
1844 SetInternalFlag(wxPG_FL_GOOD_SIZE_SET);
1c4293cb
VZ
1845}
1846
1847// -----------------------------------------------------------------------
1848
1849void wxPropertyGrid::DrawExpanderButton( wxDC& dc, const wxRect& rect,
1850 wxPGProperty* property ) const
1851{
1852 // Prepare rectangle to be used
1853 wxRect r(rect);
1854 r.x += m_gutterWidth; r.y += m_buttonSpacingY;
1855 r.width = m_iconWidth; r.height = m_iconHeight;
1856
1857#if (wxPG_USE_RENDERER_NATIVE)
1858 //
1859#elif wxPG_ICON_WIDTH
1860 // Drawing expand/collapse button manually
1861 dc.SetPen(m_colPropFore);
1862 if ( property->IsCategory() )
1863 dc.SetBrush(*wxTRANSPARENT_BRUSH);
1864 else
1865 dc.SetBrush(m_colPropBack);
1866
1867 dc.DrawRectangle( r );
1868 int _y = r.y+(m_iconWidth/2);
1869 dc.DrawLine(r.x+2,_y,r.x+m_iconWidth-2,_y);
1870#else
1871 wxBitmap* bmp;
1872#endif
1873
1874 if ( property->IsExpanded() )
1875 {
1876 // wxRenderer functions are non-mutating in nature, so it
1877 // should be safe to cast "const wxPropertyGrid*" to "wxWindow*".
1878 // Hopefully this does not cause problems.
1879 #if (wxPG_USE_RENDERER_NATIVE)
1880 wxRendererNative::Get().DrawTreeItemButton(
1881 (wxWindow*)this,
1882 dc,
1883 r,
1884 wxCONTROL_EXPANDED
1885 );
1886 #elif wxPG_ICON_WIDTH
1887 //
1888 #else
1889 bmp = m_collbmp;
1890 #endif
1891
1892 }
1893 else
1894 {
1895 #if (wxPG_USE_RENDERER_NATIVE)
1896 wxRendererNative::Get().DrawTreeItemButton(
1897 (wxWindow*)this,
1898 dc,
1899 r,
1900 0
1901 );
1902 #elif wxPG_ICON_WIDTH
1903 int _x = r.x+(m_iconWidth/2);
1904 dc.DrawLine(_x,r.y+2,_x,r.y+m_iconWidth-2);
1905 #else
1906 bmp = m_expandbmp;
1907 #endif
1908 }
1909
1910#if (wxPG_USE_RENDERER_NATIVE)
1911 //
1912#elif wxPG_ICON_WIDTH
1913 //
1914#else
1915 dc.DrawBitmap( *bmp, r.x, r.y, true );
1916#endif
1917}
1918
1919// -----------------------------------------------------------------------
1920
1921//
1922// This is the one called by OnPaint event handler and others.
1923// topy and bottomy are already unscrolled (ie. physical)
1924//
1925void wxPropertyGrid::DrawItems( wxDC& dc,
b5e184c6
JS
1926 unsigned int topItemY,
1927 unsigned int bottomItemY,
2e2e62de 1928 const wxRect* itemsRect )
1c4293cb 1929{
b5e184c6
JS
1930 if ( m_frozen ||
1931 m_height < 1 ||
1932 bottomItemY < topItemY ||
1933 !m_pState )
39e4e221 1934 return;
1c4293cb
VZ
1935
1936 m_pState->EnsureVirtualHeight();
1937
2e2e62de
JS
1938 wxRect tempItemsRect;
1939 if ( !itemsRect )
1c4293cb 1940 {
2e2e62de
JS
1941 tempItemsRect = wxRect(0, topItemY,
1942 m_pState->m_width,
1943 bottomItemY);
1944 itemsRect = &tempItemsRect;
1c4293cb
VZ
1945 }
1946
2e2e62de
JS
1947 int vx, vy;
1948 GetViewStart(&vx, &vy);
1949 vx *= wxPG_PIXELS_PER_UNIT;
1950 vy *= wxPG_PIXELS_PER_UNIT;
1951
36b7e3a2 1952 // itemRect is in virtual grid space
2e2e62de
JS
1953 wxRect drawRect(itemsRect->x - vx,
1954 itemsRect->y - vy,
1955 itemsRect->width,
1956 itemsRect->height);
1957
1c4293cb
VZ
1958 // items added check
1959 if ( m_pState->m_itemsAdded ) PrepareAfterItemsAdded();
1960
1961 int paintFinishY = 0;
1962
1963 if ( m_pState->m_properties->GetChildCount() > 0 )
1964 {
1965 wxDC* dcPtr = &dc;
1966 bool isBuffered = false;
1967
1968 #if wxPG_DOUBLE_BUFFER
1969 wxMemoryDC* bufferDC = NULL;
1970
1971 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING) )
1972 {
1973 if ( !m_doubleBuffer )
1974 {
2e2e62de 1975 paintFinishY = itemsRect->y;
1c4293cb
VZ
1976 dcPtr = NULL;
1977 }
1978 else
1979 {
1980 bufferDC = new wxMemoryDC();
1981
1982 // If nothing was changed, then just copy from double-buffer
1983 bufferDC->SelectObject( *m_doubleBuffer );
1984 dcPtr = bufferDC;
1985
1986 isBuffered = true;
1987 }
1988 }
1989 #endif
1990
1991 if ( dcPtr )
1992 {
36b7e3a2 1993 // paintFinishY and drawBottomY are in buffer/physical space
2e2e62de 1994 paintFinishY = DoDrawItems( *dcPtr, itemsRect, isBuffered );
36b7e3a2 1995 int drawBottomY = itemsRect->y + itemsRect->height - vy;
39e4e221 1996
b5e184c6 1997 // Clear area beyond last painted property
0b6a0a72 1998 if ( paintFinishY < drawBottomY )
39e4e221
JS
1999 {
2000 dcPtr->SetPen(m_colEmptySpace);
2001 dcPtr->SetBrush(m_colEmptySpace);
0b6a0a72
JS
2002 dcPtr->DrawRectangle(0, paintFinishY,
2003 m_width,
2004 drawBottomY );
39e4e221 2005 }
1c4293cb
VZ
2006 }
2007
2008 #if wxPG_DOUBLE_BUFFER
2009 if ( bufferDC )
2010 {
2e2e62de
JS
2011 dc.Blit( drawRect.x, drawRect.y, drawRect.width,
2012 drawRect.height,
39e4e221 2013 bufferDC, 0, 0, wxCOPY );
1c4293cb
VZ
2014 delete bufferDC;
2015 }
2016 #endif
2017 }
39e4e221 2018 else
1c4293cb 2019 {
39e4e221 2020 // Just clear the area
1c4293cb
VZ
2021 dc.SetPen(m_colEmptySpace);
2022 dc.SetBrush(m_colEmptySpace);
2e2e62de 2023 dc.DrawRectangle(drawRect);
1c4293cb
VZ
2024 }
2025}
2026
2027// -----------------------------------------------------------------------
2028
2029int wxPropertyGrid::DoDrawItems( wxDC& dc,
2e2e62de 2030 const wxRect* itemsRect,
1c4293cb
VZ
2031 bool isBuffered ) const
2032{
bcf324be
JS
2033 const wxPGProperty* firstItem;
2034 const wxPGProperty* lastItem;
1c4293cb 2035
2e2e62de
JS
2036 firstItem = DoGetItemAtY(itemsRect->y);
2037 lastItem = DoGetItemAtY(itemsRect->y+itemsRect->height-1);
1c4293cb
VZ
2038
2039 if ( !lastItem )
bcf324be 2040 lastItem = GetLastItem( wxPG_ITERATE_VISIBLE );
1c4293cb
VZ
2041
2042 if ( m_frozen || m_height < 1 || firstItem == NULL )
2e2e62de 2043 return itemsRect->y;
1c4293cb 2044
2e2e62de 2045 wxCHECK_MSG( !m_pState->m_itemsAdded, itemsRect->y,
b5e184c6 2046 "no items added" );
1c4293cb
VZ
2047 wxASSERT( m_pState->m_properties->GetChildCount() );
2048
2049 int lh = m_lineHeight;
2050
2051 int firstItemTopY;
2052 int lastItemBottomY;
2053
2e2e62de
JS
2054 firstItemTopY = itemsRect->y;
2055 lastItemBottomY = itemsRect->y + itemsRect->height;
1c4293cb
VZ
2056
2057 // Align y coordinates to item boundaries
2058 firstItemTopY -= firstItemTopY % lh;
2059 lastItemBottomY += lh - (lastItemBottomY % lh);
2060 lastItemBottomY -= 1;
2061
2062 // Entire range outside scrolled, visible area?
b5e184c6
JS
2063 if ( firstItemTopY >= (int)m_pState->GetVirtualHeight() ||
2064 lastItemBottomY <= 0 )
2e2e62de 2065 return itemsRect->y;
1c4293cb 2066
b5e184c6 2067 wxCHECK_MSG( firstItemTopY < lastItemBottomY,
2e2e62de 2068 itemsRect->y,
b5e184c6 2069 "invalid y values" );
1c4293cb
VZ
2070
2071 /*
b5e184c6 2072 wxLogDebug(" -> DoDrawItems ( \"%s\" -> \"%s\"
2e2e62de 2073 "height=%i (ch=%i), itemsRect = 0x%lX )",
1c4293cb
VZ
2074 firstItem->GetLabel().c_str(),
2075 lastItem->GetLabel().c_str(),
2076 (int)(lastItemBottomY - firstItemTopY),
2077 (int)m_height,
2e2e62de 2078 (unsigned long)&itemsRect );
1c4293cb
VZ
2079 */
2080
2081 wxRect r;
2082
2083 long windowStyle = m_windowStyle;
2084
2085 int xRelMod = 0;
1c4293cb
VZ
2086
2087 //
2088 // With wxPG_DOUBLE_BUFFER, do double buffering
2e2e62de 2089 // - buffer's y = 0, so align itemsRect and coordinates to that
1c4293cb
VZ
2090 //
2091#if wxPG_DOUBLE_BUFFER
31d4e105 2092 int yRelMod = 0;
1c4293cb
VZ
2093
2094 wxRect cr2;
2095
2096 if ( isBuffered )
2097 {
2e2e62de
JS
2098 xRelMod = itemsRect->x;
2099 yRelMod = itemsRect->y;
1c4293cb
VZ
2100
2101 //
2e2e62de
JS
2102 // itemsRect conversion
2103 cr2 = *itemsRect;
b7bc9d80
PC
2104 cr2.x -= xRelMod;
2105 cr2.y -= yRelMod;
2e2e62de 2106 itemsRect = &cr2;
1c4293cb
VZ
2107 firstItemTopY -= yRelMod;
2108 lastItemBottomY -= yRelMod;
2109 }
2110#else
2111 wxUnusedVar(isBuffered);
2112#endif
2113
2114 int x = m_marginWidth - xRelMod;
2115
2197ec80 2116 wxFont normalFont = GetFont();
1c4293cb 2117
b7bc9d80 2118 bool reallyFocused = (m_iFlags & wxPG_FL_FOCUSED) != 0;
1c4293cb 2119
fc72fab6 2120 bool isPgEnabled = IsEnabled();
1c4293cb
VZ
2121
2122 //
2123 // Prepare some pens and brushes that are often changed to.
2124 //
2125
2126 wxBrush marginBrush(m_colMargin);
2127 wxPen marginPen(m_colMargin);
2128 wxBrush capbgbrush(m_colCapBack,wxSOLID);
2129 wxPen linepen(m_colLine,1,wxSOLID);
2130
fc72fab6
JS
2131 wxColour selBackCol;
2132 if ( isPgEnabled )
2133 selBackCol = m_colSelBack;
2134 else
2135 selBackCol = m_colMargin;
2136
1c4293cb
VZ
2137 // pen that has same colour as text
2138 wxPen outlinepen(m_colPropFore,1,wxSOLID);
2139
2140 //
2141 // Clear margin with background colour
2142 //
2143 dc.SetBrush( marginBrush );
2144 if ( !(windowStyle & wxPG_HIDE_MARGIN) )
2145 {
2146 dc.SetPen( *wxTRANSPARENT_PEN );
2147 dc.DrawRectangle(-1-xRelMod,firstItemTopY-1,x+2,lastItemBottomY-firstItemTopY+2);
2148 }
2149
fc72fab6 2150 const wxPGProperty* firstSelected = GetSelection();
1c4293cb 2151 const wxPropertyGridPageState* state = m_pState;
e16bff8e 2152 const wxArrayInt& colWidths = state->m_colWidths;
1c4293cb
VZ
2153
2154#if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2155 bool wasSelectedPainted = false;
2156#endif
2157
2158 // TODO: Only render columns that are within clipping region.
2159
2197ec80 2160 dc.SetFont(normalFont);
1c4293cb
VZ
2161
2162 wxPropertyGridConstIterator it( state, wxPG_ITERATE_VISIBLE, firstItem );
2163 int endScanBottomY = lastItemBottomY + lh;
2164 int y = firstItemTopY;
23b4f320
JS
2165
2166 //
2167 // Pregenerate list of visible properties.
2168 wxArrayPGProperty visPropArray;
2169 visPropArray.reserve((m_height/m_lineHeight)+6);
1c4293cb
VZ
2170
2171 for ( ; !it.AtEnd(); it.Next() )
2172 {
2173 const wxPGProperty* p = *it;
2174
2175 if ( !p->HasFlag(wxPG_PROP_HIDDEN) )
2176 {
23b4f320 2177 visPropArray.push_back((wxPGProperty*)p);
1c4293cb
VZ
2178
2179 if ( y > endScanBottomY )
2180 break;
2181
2182 y += lh;
2183 }
2184 }
2185
23b4f320
JS
2186 visPropArray.push_back(NULL);
2187
2188 wxPGProperty* nextP = visPropArray[0];
1c4293cb
VZ
2189
2190 int gridWidth = state->m_width;
2191
2192 y = firstItemTopY;
23b4f320
JS
2193 for ( unsigned int arrInd=1;
2194 nextP && y <= lastItemBottomY;
1c4293cb
VZ
2195 arrInd++ )
2196 {
23b4f320
JS
2197 wxPGProperty* p = nextP;
2198 nextP = visPropArray[arrInd];
1c4293cb
VZ
2199
2200 int rowHeight = m_fontHeight+(m_spacingy*2)+1;
2201 int textMarginHere = x;
d7e2b522 2202 int renderFlags = 0;
1c4293cb
VZ
2203
2204 int greyDepth = m_marginWidth;
2205 if ( !(windowStyle & wxPG_HIDE_CATEGORIES) )
2206 greyDepth = (((int)p->m_depthBgCol)-1) * m_subgroup_extramargin + m_marginWidth;
2207
2208 int greyDepthX = greyDepth - xRelMod;
2209
2210 // Use basic depth if in non-categoric mode and parent is base array.
2211 if ( !(windowStyle & wxPG_HIDE_CATEGORIES) || p->GetParent() != m_pState->m_properties )
2212 {
2213 textMarginHere += ((unsigned int)((p->m_depth-1)*m_subgroup_extramargin));
2214 }
2215
2216 // Paint margin area
2217 dc.SetBrush(marginBrush);
2218 dc.SetPen(marginPen);
2219 dc.DrawRectangle( -xRelMod, y, greyDepth, lh );
2220
2221 dc.SetPen( linepen );
2222
2223 int y2 = y + lh;
2224
521f1d83 2225#ifdef __WXMSW__
1c4293cb 2226 // Margin Edge
521f1d83
JS
2227 // Modified by JACS to not draw a margin if wxPG_HIDE_MARGIN is specified, since it
2228 // looks better, at least under Windows when we have a themed border (the themed-window-specific
2229 // whitespace between the real border and the propgrid margin exacerbates the double-border look).
2230
2231 // Is this or its parent themed?
2232 bool suppressMarginEdge = (GetWindowStyle() & wxPG_HIDE_MARGIN) &&
2233 (((GetWindowStyle() & wxBORDER_MASK) == wxBORDER_THEME) ||
2234 (((GetWindowStyle() & wxBORDER_MASK) == wxBORDER_NONE) && ((GetParent()->GetWindowStyle() & wxBORDER_MASK) == wxBORDER_THEME)));
2235#else
2236 bool suppressMarginEdge = false;
2237#endif
2238 if (!suppressMarginEdge)
2239 dc.DrawLine( greyDepthX, y, greyDepthX, y2 );
2240 else
2241 {
2242 // Blank out the margin edge
2243 dc.SetPen(wxPen(GetBackgroundColour()));
2244 dc.DrawLine( greyDepthX, y, greyDepthX, y2 );
2245 dc.SetPen( linepen );
2246 }
1c4293cb
VZ
2247
2248 // Splitters
2249 unsigned int si;
2250 int sx = x;
2251
e16bff8e 2252 for ( si=0; si<colWidths.size(); si++ )
1c4293cb 2253 {
e16bff8e 2254 sx += colWidths[si];
1c4293cb
VZ
2255 dc.DrawLine( sx, y, sx, y2 );
2256 }
2257
2258 // Horizontal Line, below
2259 // (not if both this and next is category caption)
2260 if ( p->IsCategory() &&
2261 nextP && nextP->IsCategory() )
2262 dc.SetPen(m_colCapBack);
2263
2264 dc.DrawLine( greyDepthX, y2-1, gridWidth-xRelMod, y2-1 );
2265
d7e2b522
JS
2266 //
2267 // Need to override row colours?
1c4293cb 2268 wxColour rowFgCol;
d7e2b522 2269 wxColour rowBgCol;
1c4293cb 2270
fc72fab6
JS
2271 bool isSelected = state->DoIsPropertySelected(p);
2272
2273 if ( !isSelected )
1c4293cb
VZ
2274 {
2275 // Disabled may get different colour.
2276 if ( !p->IsEnabled() )
d7e2b522
JS
2277 {
2278 renderFlags |= wxPGCellRenderer::Disabled |
2279 wxPGCellRenderer::DontUseCellFgCol;
1c4293cb 2280 rowFgCol = m_colDisPropFore;
d7e2b522 2281 }
1c4293cb
VZ
2282 }
2283 else
2284 {
fc72fab6
JS
2285#if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2286 if ( p == firstSelected )
2287 wasSelectedPainted = true;
2288#endif
2289
b7bc9d80 2290 renderFlags |= wxPGCellRenderer::Selected;
d7e2b522 2291
b7bc9d80
PC
2292 if ( !p->IsCategory() )
2293 {
d7e2b522
JS
2294 renderFlags |= wxPGCellRenderer::DontUseCellFgCol |
2295 wxPGCellRenderer::DontUseCellBgCol;
2296
fc72fab6 2297 if ( reallyFocused && p == firstSelected )
d7e2b522
JS
2298 {
2299 rowFgCol = m_colSelFore;
fc72fab6 2300 rowBgCol = selBackCol;
d7e2b522 2301 }
fc72fab6 2302 else if ( isPgEnabled )
d7e2b522
JS
2303 {
2304 rowFgCol = m_colPropFore;
fc72fab6
JS
2305 if ( p == firstSelected )
2306 rowBgCol = m_colMargin;
2307 else
2308 rowBgCol = selBackCol;
d7e2b522
JS
2309 }
2310 else
2311 {
2312 rowFgCol = m_colDisPropFore;
fc72fab6 2313 rowBgCol = selBackCol;
d7e2b522 2314 }
1c4293cb 2315 }
d7e2b522
JS
2316 }
2317
2318 wxBrush rowBgBrush;
2319
2320 if ( rowBgCol.IsOk() )
2321 rowBgBrush = wxBrush(rowBgCol);
2322
2323 if ( HasInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL) )
2324 renderFlags = renderFlags & ~wxPGCellRenderer::DontUseCellColours;
2325
2326 //
2327 // Fill additional margin area with background colour of first cell
2328 if ( greyDepthX < textMarginHere )
2329 {
2330 if ( !(renderFlags & wxPGCellRenderer::DontUseCellBgCol) )
1c4293cb 2331 {
d7e2b522
JS
2332 wxPGCell& cell = p->GetCell(0);
2333 rowBgCol = cell.GetBgCol();
2334 rowBgBrush = wxBrush(rowBgCol);
1c4293cb 2335 }
d7e2b522
JS
2336 dc.SetBrush(rowBgBrush);
2337 dc.SetPen(rowBgCol);
2338 dc.DrawRectangle(greyDepthX+1, y,
2339 textMarginHere-greyDepthX, lh-1);
1c4293cb
VZ
2340 }
2341
2342 bool fontChanged = false;
2343
d7e2b522 2344 // Expander button rectangle
1c4293cb
VZ
2345 wxRect butRect( ((p->m_depth - 1) * m_subgroup_extramargin) - xRelMod,
2346 y,
2347 m_marginWidth,
2348 lh );
2349
e16bff8e
JS
2350 // Default cell rect fill the entire row
2351 wxRect cellRect(greyDepthX, y,
2352 gridWidth - greyDepth + 2, rowHeight-1 );
2353
2354 bool isCategory = p->IsCategory();
2355
2356 if ( isCategory )
1c4293cb 2357 {
1c4293cb
VZ
2358 dc.SetFont(m_captionFont);
2359 fontChanged = true;
1c4293cb 2360
d7e2b522
JS
2361 if ( renderFlags & wxPGCellRenderer::DontUseCellBgCol )
2362 {
2363 dc.SetBrush(rowBgBrush);
2364 dc.SetPen(rowBgCol);
2365 }
1c4293cb 2366
d7e2b522
JS
2367 if ( renderFlags & wxPGCellRenderer::DontUseCellFgCol )
2368 {
2369 dc.SetTextForeground(rowFgCol);
2370 }
1c4293cb
VZ
2371 }
2372 else
2373 {
0a327b9c
JS
2374 // Fine tune button rectangle to actually fit the cell
2375 if ( butRect.x > 0 )
2376 butRect.x += IN_CELL_EXPANDER_BUTTON_X_ADJUST;
2377
e16bff8e
JS
2378 if ( p->m_flags & wxPG_PROP_MODIFIED &&
2379 (windowStyle & wxPG_BOLD_MODIFIED) )
1c4293cb
VZ
2380 {
2381 dc.SetFont(m_captionFont);
2382 fontChanged = true;
2383 }
2384
e16bff8e
JS
2385 // Magic fine-tuning for non-category rows
2386 cellRect.x += 1;
2387 }
2388
2389 int firstCellWidth = colWidths[0] - (greyDepthX - m_marginWidth);
2390 int firstCellX = cellRect.x;
2391
2392 // Calculate cellRect.x for the last cell
2393 unsigned int ci = 0;
2394 int cellX = x + 1;
2395 for ( ci=0; ci<colWidths.size(); ci++ )
2396 cellX += colWidths[ci];
2397 cellRect.x = cellX;
2398
2399 // Draw cells from back to front so that we can easily tell if the
2400 // cell on the right was empty from text
2401 bool prevFilled = true;
2402 ci = colWidths.size();
2403 do
2404 {
2405 ci--;
2406
2407 int textXAdd = 0;
1c4293cb 2408
e16bff8e
JS
2409 if ( ci == 0 )
2410 {
2411 textXAdd = textMarginHere - greyDepthX;
2412 cellRect.width = firstCellWidth;
2413 cellRect.x = firstCellX;
2414 }
2415 else
1c4293cb 2416 {
e16bff8e
JS
2417 int colWidth = colWidths[ci];
2418 cellRect.width = colWidth;
2419 cellRect.x -= colWidth;
2420 }
2421
2422 // Merge with column to the right?
2423 if ( !prevFilled && isCategory )
2424 {
2425 cellRect.width += colWidths[ci+1];
2426 }
2427
2428 if ( !isCategory )
2429 cellRect.width -= 1;
1c4293cb 2430
e16bff8e
JS
2431 wxWindow* cellEditor = NULL;
2432 int cellRenderFlags = renderFlags;
d7e2b522 2433
e16bff8e
JS
2434 // Tree Item Button (must be drawn before clipping is set up)
2435 if ( ci == 0 && !HasFlag(wxPG_HIDE_MARGIN) && p->HasVisibleChildren() )
2436 DrawExpanderButton( dc, butRect, p );
1c4293cb 2437
e16bff8e
JS
2438 // Background
2439 if ( isSelected && (ci == 1 || ci == m_selColumn) )
2440 {
2441 if ( p == firstSelected )
1c4293cb 2442 {
e16bff8e
JS
2443 if ( ci == 1 && m_wndEditor )
2444 cellEditor = m_wndEditor;
2445 else if ( ci == m_selColumn && m_labelEditor )
2446 cellEditor = m_labelEditor;
2447 }
2448
2449 if ( cellEditor )
2450 {
2451 wxColour editorBgCol =
2452 cellEditor->GetBackgroundColour();
2453 dc.SetBrush(editorBgCol);
2454 dc.SetPen(editorBgCol);
2455 dc.SetTextForeground(m_colPropFore);
2456 dc.DrawRectangle(cellRect);
2457
2458 if ( m_dragStatus != 0 ||
2459 (m_iFlags & wxPG_FL_CUR_USES_CUSTOM_IMAGE) )
2460 cellEditor = NULL;
1c4293cb
VZ
2461 }
2462 else
2463 {
e16bff8e
JS
2464 dc.SetBrush(m_colPropBack);
2465 dc.SetPen(m_colPropBack);
e16bff8e 2466 if ( p->IsEnabled() )
34c921fc 2467 dc.SetTextForeground(m_colPropFore);
e16bff8e
JS
2468 else
2469 dc.SetTextForeground(m_colDisPropFore);
2470 }
2471 }
2472 else
2473 {
2474 if ( renderFlags & wxPGCellRenderer::DontUseCellBgCol )
2475 {
2476 dc.SetBrush(rowBgBrush);
2477 dc.SetPen(rowBgCol);
d7e2b522 2478 }
1c4293cb 2479
e16bff8e
JS
2480 if ( renderFlags & wxPGCellRenderer::DontUseCellFgCol )
2481 {
2482 dc.SetTextForeground(rowFgCol);
2483 }
2484 }
1c4293cb 2485
e16bff8e 2486 dc.SetClippingRegion(cellRect);
1c4293cb 2487
e16bff8e
JS
2488 cellRect.x += textXAdd;
2489 cellRect.width -= textXAdd;
2490
2491 // Foreground
2492 if ( !cellEditor )
2493 {
2494 wxPGCellRenderer* renderer;
2495 int cmnVal = p->GetCommonValue();
2496 if ( cmnVal == -1 || ci != 1 )
1c4293cb 2497 {
e16bff8e
JS
2498 renderer = p->GetCellRenderer(ci);
2499 prevFilled = renderer->Render(dc, cellRect, this,
2500 p, ci, -1,
2501 cellRenderFlags );
2502 }
2503 else
2504 {
2505 renderer = GetCommonValue(cmnVal)->GetRenderer();
2506 prevFilled = renderer->Render(dc, cellRect, this,
2507 p, ci, -1,
2508 cellRenderFlags );
1c4293cb 2509 }
1c4293cb 2510 }
e16bff8e
JS
2511 else
2512 {
2513 prevFilled = true;
2514 }
2515
2516 dc.DestroyClippingRegion(); // Is this really necessary?
1c4293cb 2517 }
e16bff8e 2518 while ( ci > 0 );
1c4293cb
VZ
2519
2520 if ( fontChanged )
2197ec80 2521 dc.SetFont(normalFont);
1c4293cb
VZ
2522
2523 y += rowHeight;
2524 }
2525
2526 // Refresh editor controls (seems not needed on msw)
2527 // NOTE: This code is mandatory for GTK!
2528#if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2529 if ( wasSelectedPainted )
2530 {
2531 if ( m_wndEditor )
2532 m_wndEditor->Refresh();
2533 if ( m_wndEditor2 )
2534 m_wndEditor2->Refresh();
2535 }
2536#endif
2537
0b6a0a72 2538 return y;
1c4293cb
VZ
2539}
2540
2541// -----------------------------------------------------------------------
2542
2543wxRect wxPropertyGrid::GetPropertyRect( const wxPGProperty* p1, const wxPGProperty* p2 ) const
2544{
2545 wxRect r;
2546
2547 if ( m_width < 10 || m_height < 10 ||
2548 !m_pState->m_properties->GetChildCount() ||
d3b9f782 2549 p1 == NULL )
1c4293cb
VZ
2550 return wxRect(0,0,0,0);
2551
2552 int vy = 0;
2553
2554 //
2555 // Return rect which encloses the given property range
e948e214 2556 // (in logical grid coordinates)
ce00f59b 2557 //
1c4293cb
VZ
2558
2559 int visTop = p1->GetY();
2560 int visBottom;
2561 if ( p2 )
2562 visBottom = p2->GetY() + m_lineHeight;
2563 else
2564 visBottom = m_height + visTop;
2565
2566 // If seleced property is inside the range, we'll extend the range to include
2567 // control's size.
fc72fab6 2568 wxPGProperty* selected = GetSelection();
1c4293cb
VZ
2569 if ( selected )
2570 {
2571 int selectedY = selected->GetY();
2572 if ( selectedY >= visTop && selectedY < visBottom )
2573 {
2574 wxWindow* editor = GetEditorControl();
2575 if ( editor )
2576 {
2577 int visBottom2 = selectedY + editor->GetSize().y;
2578 if ( visBottom2 > visBottom )
2579 visBottom = visBottom2;
2580 }
2581 }
2582 }
2583
2584 return wxRect(0,visTop-vy,m_pState->m_width,visBottom-visTop);
2585}
2586
2587// -----------------------------------------------------------------------
2588
2589void wxPropertyGrid::DrawItems( const wxPGProperty* p1, const wxPGProperty* p2 )
2590{
2591 if ( m_frozen )
2592 return;
2593
2594 if ( m_pState->m_itemsAdded )
2595 PrepareAfterItemsAdded();
2596
2597 wxRect r = GetPropertyRect(p1, p2);
2598 if ( r.width > 0 )
2599 {
e948e214
JS
2600 // Convert rectangle from logical grid coordinates to physical ones
2601 int vx, vy;
2602 GetViewStart(&vx, &vy);
2603 vx *= wxPG_PIXELS_PER_UNIT;
2604 vy *= wxPG_PIXELS_PER_UNIT;
2605 r.x -= vx;
2606 r.y -= vy;
39e4e221 2607 RefreshRect(r);
1c4293cb
VZ
2608 }
2609}
2610
2611// -----------------------------------------------------------------------
2612
2613void wxPropertyGrid::RefreshProperty( wxPGProperty* p )
2614{
fc72fab6
JS
2615 if ( m_pState->DoIsPropertySelected(p) )
2616 {
2617 // NB: We must copy the selection.
2618 wxArrayPGProperty selection = m_pState->m_selection;
2619 DoSetSelection(selection, wxPG_SEL_FORCE);
2620 }
1c4293cb
VZ
2621
2622 DrawItemAndChildren(p);
2623}
2624
2625// -----------------------------------------------------------------------
2626
2627void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty* p )
2628{
2629 if ( m_frozen )
2630 return;
2631
2632 // Draw item, children, and parent too, if it is not category
2633 wxPGProperty* parent = p->GetParent();
2634
2635 while ( parent &&
2636 !parent->IsCategory() &&
2637 parent->GetParent() )
2638 {
2639 DrawItem(parent);
2640 parent = parent->GetParent();
2641 }
2642
2643 DrawItemAndChildren(p);
2644}
2645
2646void wxPropertyGrid::DrawItemAndChildren( wxPGProperty* p )
2647{
2648 wxCHECK_RET( p, wxT("invalid property id") );
2649
2650 // Do not draw if in non-visible page
2651 if ( p->GetParentState() != m_pState )
2652 return;
2653
2654 // do not draw a single item if multiple pending
2655 if ( m_pState->m_itemsAdded || m_frozen )
2656 return;
2657
1c4293cb 2658 // Update child control.
fc72fab6
JS
2659 wxPGProperty* selected = GetSelection();
2660 if ( selected && selected->GetParent() == p )
a6353fe8 2661 RefreshEditor();
1c4293cb
VZ
2662
2663 const wxPGProperty* lastDrawn = p->GetLastVisibleSubItem();
2664
2665 DrawItems(p, lastDrawn);
2666}
2667
2668// -----------------------------------------------------------------------
2669
2670void wxPropertyGrid::Refresh( bool WXUNUSED(eraseBackground),
2671 const wxRect *rect )
2672{
2673 PrepareAfterItemsAdded();
2674
39e4e221 2675 wxWindow::Refresh(false, rect);
1c4293cb
VZ
2676
2677#if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
2678 // I think this really helps only GTK+1.2
2679 if ( m_wndEditor ) m_wndEditor->Refresh();
2680 if ( m_wndEditor2 ) m_wndEditor2->Refresh();
2681#endif
2682}
2683
2684// -----------------------------------------------------------------------
2685// wxPropertyGrid global operations
2686// -----------------------------------------------------------------------
2687
2688void wxPropertyGrid::Clear()
2689{
1c4293cb
VZ
2690 m_pState->DoClear();
2691
2692 m_propHover = NULL;
2693
2694 m_prevVY = 0;
2695
2696 RecalculateVirtualSize();
2697
2698 // Need to clear some area at the end
2699 if ( !m_frozen )
2700 RefreshRect(wxRect(0, 0, m_width, m_height));
2701}
2702
2703// -----------------------------------------------------------------------
2704
2705bool wxPropertyGrid::EnableCategories( bool enable )
2706{
01b5ad3b 2707 DoClearSelection();
1c4293cb
VZ
2708
2709 if ( enable )
2710 {
2711 //
2712 // Enable categories
2713 //
2714
2715 m_windowStyle &= ~(wxPG_HIDE_CATEGORIES);
2716 }
2717 else
2718 {
2719 //
2720 // Disable categories
2721 //
2722 m_windowStyle |= wxPG_HIDE_CATEGORIES;
2723 }
2724
2725 if ( !m_pState->EnableCategories(enable) )
2726 return false;
2727
2728 if ( !m_frozen )
2729 {
2730 if ( m_windowStyle & wxPG_AUTO_SORT )
2731 {
2732 m_pState->m_itemsAdded = 1; // force
2733 PrepareAfterItemsAdded();
2734 }
2735 }
2736 else
2737 m_pState->m_itemsAdded = 1;
2738
2739 // No need for RecalculateVirtualSize() here - it is already called in
2740 // wxPropertyGridPageState method above.
2741
2742 Refresh();
2743
2744 return true;
2745}
2746
2747// -----------------------------------------------------------------------
2748
2749void wxPropertyGrid::SwitchState( wxPropertyGridPageState* pNewState )
2750{
2751 wxASSERT( pNewState );
2752 wxASSERT( pNewState->GetGrid() );
2753
2754 if ( pNewState == m_pState )
2755 return;
2756
fc72fab6 2757 wxArrayPGProperty oldSelection = m_pState->m_selection;
1c4293cb 2758
fc72fab6
JS
2759 // Call ClearSelection() instead of DoClearSelection()
2760 // so that selection clear events are not sent.
2761 ClearSelection();
1c4293cb 2762
fc72fab6 2763 m_pState->m_selection = oldSelection;
1c4293cb
VZ
2764
2765 bool orig_mode = m_pState->IsInNonCatMode();
2766 bool new_state_mode = pNewState->IsInNonCatMode();
2767
2768 m_pState = pNewState;
2769
2770 // Validate width
2771 int pgWidth = GetClientSize().x;
2772 if ( HasVirtualWidth() )
2773 {
2774 int minWidth = pgWidth;
2775 if ( pNewState->m_width < minWidth )
2776 {
2777 pNewState->m_width = minWidth;
2778 pNewState->CheckColumnWidths();
2779 }
2780 }
2781 else
2782 {
2783 //
2784 // Just in case, fully re-center splitter
0da1f1c4
JS
2785 //if ( HasFlag( wxPG_SPLITTER_AUTO_CENTER ) )
2786 // pNewState->m_fSplitterX = -1.0;
1c4293cb 2787
0da1f1c4
JS
2788 pNewState->OnClientWidthChange(pgWidth,
2789 pgWidth - pNewState->m_width);
1c4293cb
VZ
2790 }
2791
d3b9f782 2792 m_propHover = NULL;
1c4293cb
VZ
2793
2794 // If necessary, convert state to correct mode.
2795 if ( orig_mode != new_state_mode )
2796 {
2797 // This should refresh as well.
2798 EnableCategories( orig_mode?false:true );
2799 }
2800 else if ( !m_frozen )
2801 {
2802 // Refresh, if not frozen.
0eb877f2 2803 m_pState->PrepareAfterItemsAdded();
1c4293cb 2804
fc72fab6
JS
2805 // Reselect (Use SetSelection() instead of Do-variant so that
2806 // events won't be sent).
2807 SetSelection(m_pState->m_selection);
1c4293cb
VZ
2808
2809 RecalculateVirtualSize(0);
2810 Refresh();
2811 }
2812 else
2813 m_pState->m_itemsAdded = 1;
2814}
2815
2816// -----------------------------------------------------------------------
2817
1c4293cb
VZ
2818// Call to SetSplitterPosition will always disable splitter auto-centering
2819// if parent window is shown.
f5254768
JS
2820void wxPropertyGrid::DoSetSplitterPosition( int newxpos,
2821 int splitterIndex,
2822 int flags )
1c4293cb
VZ
2823{
2824 if ( ( newxpos < wxPG_DRAG_MARGIN ) )
2825 return;
2826
2827 wxPropertyGridPageState* state = m_pState;
2828
f5254768
JS
2829 if ( flags & wxPG_SPLITTER_FROM_EVENT )
2830 state->m_dontCenterSplitter = true;
1c4293cb 2831
f5254768
JS
2832 state->DoSetSplitterPosition(newxpos, splitterIndex, flags);
2833
2834 if ( flags & wxPG_SPLITTER_REFRESH )
1c4293cb 2835 {
fc72fab6 2836 if ( GetSelection() )
1c4293cb
VZ
2837 CorrectEditorWidgetSizeX();
2838
2839 Refresh();
2840 }
f5254768
JS
2841
2842 return;
1c4293cb
VZ
2843}
2844
2845// -----------------------------------------------------------------------
2846
76733d4c
JS
2847void wxPropertyGrid::ResetColumnSizes( bool enableAutoResizing )
2848{
2849 wxPropertyGridPageState* state = m_pState;
2850 if ( state )
2851 state->ResetColumnSizes(0);
2852
2853 if ( enableAutoResizing && HasFlag(wxPG_SPLITTER_AUTO_CENTER) )
2854 m_pState->m_dontCenterSplitter = false;
2855}
2856
2857// -----------------------------------------------------------------------
2858
2859void wxPropertyGrid::CenterSplitter( bool enableAutoResizing )
1c4293cb 2860{
0da1f1c4 2861 SetSplitterPosition( m_width/2 );
76733d4c 2862 if ( enableAutoResizing && HasFlag(wxPG_SPLITTER_AUTO_CENTER) )
0da1f1c4 2863 m_pState->m_dontCenterSplitter = false;
1c4293cb
VZ
2864}
2865
2866// -----------------------------------------------------------------------
2867// wxPropertyGrid item iteration (GetNextProperty etc.) methods
2868// -----------------------------------------------------------------------
2869
2870// Returns nearest paint visible property (such that will be painted unless
2871// window is scrolled or resized). If given property is paint visible, then
2872// it itself will be returned
2873wxPGProperty* wxPropertyGrid::GetNearestPaintVisible( wxPGProperty* p ) const
2874{
2875 int vx,vy1;// Top left corner of client
2876 GetViewStart(&vx,&vy1);
2877 vy1 *= wxPG_PIXELS_PER_UNIT;
2878
2879 int vy2 = vy1 + m_height;
2880 int propY = p->GetY2(m_lineHeight);
2881
2882 if ( (propY + m_lineHeight) < vy1 )
2883 {
2884 // Too high
2885 return DoGetItemAtY( vy1 );
2886 }
2887 else if ( propY > vy2 )
2888 {
2889 // Too low
2890 return DoGetItemAtY( vy2 );
2891 }
2892
2893 // Itself paint visible
2894 return p;
2895
2896}
2897
1c4293cb
VZ
2898// -----------------------------------------------------------------------
2899// Methods related to change in value, value modification and sending events
2900// -----------------------------------------------------------------------
2901
2902// commits any changes in editor of selected property
2903// return true if validation did not fail
2904// flags are same as with DoSelectProperty
2905bool wxPropertyGrid::CommitChangesFromEditor( wxUint32 flags )
2906{
2907 // Committing already?
2908 if ( m_inCommitChangesFromEditor )
2909 return true;
2910
2911 // Don't do this if already processing editor event. It might
2912 // induce recursive dialogs and crap like that.
b0996c3d 2913 if ( m_iFlags & wxPG_FL_IN_HANDLECUSTOMEDITOREVENT )
1c4293cb
VZ
2914 {
2915 if ( m_inDoPropertyChanged )
2916 return true;
2917
2918 return false;
2919 }
2920
fc72fab6
JS
2921 wxPGProperty* selected = GetSelection();
2922
1c4293cb
VZ
2923 if ( m_wndEditor &&
2924 IsEditorsValueModified() &&
2925 (m_iFlags & wxPG_FL_INITIALIZED) &&
fc72fab6 2926 selected )
1c4293cb 2927 {
88f47aa7 2928 m_inCommitChangesFromEditor = true;
1c4293cb 2929
fc72fab6 2930 wxVariant variant(selected->GetValueRef());
1c4293cb
VZ
2931 bool valueIsPending = false;
2932
2933 // JACS - necessary to avoid new focus being found spuriously within OnIdle
2934 // due to another window getting focus
2935 wxWindow* oldFocus = m_curFocused;
2936
2937 bool validationFailure = false;
2938 bool forceSuccess = (flags & (wxPG_SEL_NOVALIDATE|wxPG_SEL_FORCE)) ? true : false;
2939
2940 m_chgInfo_changedProperty = NULL;
2941
2942 // If truly modified, schedule value as pending.
fc72fab6
JS
2943 if ( selected->GetEditorClass()->
2944 GetValueFromControl( variant,
2945 selected,
2946 GetEditorControl() ) )
1c4293cb
VZ
2947 {
2948 if ( DoEditorValidate() &&
fc72fab6 2949 PerformValidation(selected, variant) )
1c4293cb
VZ
2950 {
2951 valueIsPending = true;
2952 }
2953 else
2954 {
2955 validationFailure = true;
2956 }
2957 }
2958 else
2959 {
2960 EditorsValueWasNotModified();
2961 }
2962
88f47aa7 2963 m_inCommitChangesFromEditor = false;
1c4293cb 2964
88f47aa7 2965 bool res = true;
1c4293cb
VZ
2966
2967 if ( validationFailure && !forceSuccess )
2968 {
2969 if (oldFocus)
2970 {
2971 oldFocus->SetFocus();
2972 m_curFocused = oldFocus;
2973 }
2974
fc72fab6 2975 res = OnValidationFailure(selected, variant);
1c4293cb
VZ
2976
2977 // Now prevent further validation failure messages
2978 if ( res )
2979 {
2980 EditorsValueWasNotModified();
fc72fab6 2981 OnValidationFailureReset(selected);
1c4293cb
VZ
2982 }
2983 }
2984 else if ( valueIsPending )
2985 {
fc72fab6 2986 DoPropertyChanged( selected, flags );
1c4293cb
VZ
2987 EditorsValueWasNotModified();
2988 }
2989
2990 return res;
2991 }
2992
2993 return true;
2994}
2995
2996// -----------------------------------------------------------------------
2997
9b5bafcf
JS
2998bool wxPropertyGrid::PerformValidation( wxPGProperty* p, wxVariant& pendingValue,
2999 int flags )
1c4293cb
VZ
3000{
3001 //
3002 // Runs all validation functionality.
3003 // Returns true if value passes all tests.
3004 //
3005
3006 m_validationInfo.m_failureBehavior = m_permanentValidationFailureBehavior;
8915141c 3007 m_validationInfo.m_isFailing = true;
1c4293cb 3008
c579ac62
JS
3009 //
3010 // Variant list a special value that cannot be validated
3011 // by normal means.
3012 if ( pendingValue.GetType() != wxPG_VARIANT_TYPE_LIST )
1c4293cb
VZ
3013 {
3014 if ( !p->ValidateValue(pendingValue, m_validationInfo) )
3015 return false;
3016 }
3017
3018 //
3019 // Adapt list to child values, if necessary
3020 wxVariant listValue = pendingValue;
3021 wxVariant* pPendingValue = &pendingValue;
3022 wxVariant* pList = NULL;
3023
3024 // If parent has wxPG_PROP_AGGREGATE flag, or uses composite
3025 // string value, then we need treat as it was changed instead
3026 // (or, in addition, as is the case with composite string parent).
3027 // This includes creating list variant for child values.
3028
3029 wxPGProperty* pwc = p->GetParent();
3030 wxPGProperty* changedProperty = p;
3031 wxPGProperty* baseChangedProperty = changedProperty;
3032 wxVariant bcpPendingList;
3033
3034 listValue = pendingValue;
d665918b 3035 listValue.SetName(p->GetBaseName());
1c4293cb
VZ
3036
3037 while ( pwc &&
3038 (pwc->HasFlag(wxPG_PROP_AGGREGATE) || pwc->HasFlag(wxPG_PROP_COMPOSED_VALUE)) )
3039 {
3040 wxVariantList tempList;
d665918b 3041 wxVariant lv(tempList, pwc->GetBaseName());
1c4293cb
VZ
3042 lv.Append(listValue);
3043 listValue = lv;
3044 pPendingValue = &listValue;
3045
3046 if ( pwc->HasFlag(wxPG_PROP_AGGREGATE) )
3047 {
3048 baseChangedProperty = pwc;
3049 bcpPendingList = lv;
3050 }
3051
3052 changedProperty = pwc;
3053 pwc = pwc->GetParent();
3054 }
3055
3056 wxVariant value;
3057 wxPGProperty* evtChangingProperty = changedProperty;
3058
0372d42e 3059 if ( pPendingValue->GetType() != wxPG_VARIANT_TYPE_LIST )
1c4293cb
VZ
3060 {
3061 value = *pPendingValue;
3062 }
3063 else
3064 {
3065 // Convert list to child values
3066 pList = pPendingValue;
3067 changedProperty->AdaptListToValue( *pPendingValue, &value );
3068 }
3069
3070 wxVariant evtChangingValue = value;
3071
9b5bafcf 3072 if ( flags & SendEvtChanging )
1c4293cb 3073 {
9b5bafcf
JS
3074 // FIXME: After proper ValueToString()s added, remove
3075 // this. It is just a temporary fix, as evt_changing
3076 // will simply not work for wxPG_PROP_COMPOSED_VALUE
3077 // (unless it is selected, and textctrl editor is open).
3078 if ( changedProperty->HasFlag(wxPG_PROP_COMPOSED_VALUE) )
1c4293cb 3079 {
9b5bafcf
JS
3080 evtChangingProperty = baseChangedProperty;
3081 if ( evtChangingProperty != p )
3082 {
3083 evtChangingProperty->AdaptListToValue( bcpPendingList, &evtChangingValue );
3084 }
3085 else
3086 {
3087 evtChangingValue = pendingValue;
3088 }
1c4293cb 3089 }
1c4293cb 3090
9b5bafcf 3091 if ( evtChangingProperty->HasFlag(wxPG_PROP_COMPOSED_VALUE) )
1c4293cb 3092 {
fc72fab6 3093 if ( changedProperty == GetSelection() )
9b5bafcf
JS
3094 {
3095 wxWindow* editor = GetEditorControl();
3096 wxASSERT( editor->IsKindOf(CLASSINFO(wxTextCtrl)) );
3097 evtChangingValue = wxStaticCast(editor, wxTextCtrl)->GetValue();
3098 }
3099 else
3100 {
3101 wxLogDebug(wxT("WARNING: wxEVT_PG_CHANGING is about to happen with old value."));
3102 }
1c4293cb
VZ
3103 }
3104 }
3105
3106 wxASSERT( m_chgInfo_changedProperty == NULL );
3107 m_chgInfo_changedProperty = changedProperty;
3108 m_chgInfo_baseChangedProperty = baseChangedProperty;
3109 m_chgInfo_pendingValue = value;
3110
3111 if ( pList )
3112 m_chgInfo_valueList = *pList;
3113 else
3114 m_chgInfo_valueList.MakeNull();
3115
3116 // If changedProperty is not property which value was edited,
3117 // then call wxPGProperty::ValidateValue() for that as well.
0372d42e 3118 if ( p != changedProperty && value.GetType() != wxPG_VARIANT_TYPE_LIST )
1c4293cb
VZ
3119 {
3120 if ( !changedProperty->ValidateValue(value, m_validationInfo) )
3121 return false;
3122 }
3123
9b5bafcf
JS
3124 if ( flags & SendEvtChanging )
3125 {
3126 // SendEvent returns true if event was vetoed
58935d4a
JS
3127 if ( SendEvent( wxEVT_PG_CHANGING, evtChangingProperty,
3128 &evtChangingValue ) )
9b5bafcf
JS
3129 return false;
3130 }
3131
3132 if ( flags & IsStandaloneValidation )
3133 {
3134 // If called in 'generic' context, we need to reset
3135 // m_chgInfo_changedProperty and write back translated value.
3136 m_chgInfo_changedProperty = NULL;
3137 pendingValue = value;
3138 }
1c4293cb 3139
8915141c
JS
3140 m_validationInfo.m_isFailing = false;
3141
1c4293cb
VZ
3142 return true;
3143}
3144
3145// -----------------------------------------------------------------------
3146
2d8d109b
JS
3147#if wxUSE_STATUSBAR
3148wxStatusBar* wxPropertyGrid::GetStatusBar()
3149{
3150 wxWindow* topWnd = ::wxGetTopLevelParent(this);
3151 if ( topWnd && topWnd->IsKindOf(CLASSINFO(wxFrame)) )
3152 {
3153 wxFrame* pFrame = wxStaticCast(topWnd, wxFrame);
3154 if ( pFrame )
3155 return pFrame->GetStatusBar();
3156 }
3157 return NULL;
3158}
3159#endif
3160
3161// -----------------------------------------------------------------------
3162
1c4293cb
VZ
3163void wxPropertyGrid::DoShowPropertyError( wxPGProperty* WXUNUSED(property), const wxString& msg )
3164{
6636ef8d 3165 if ( msg.empty() )
1c4293cb
VZ
3166 return;
3167
3168#if wxUSE_STATUSBAR
3169 if ( !wxPGGlobalVars->m_offline )
3170 {
2d8d109b
JS
3171 wxStatusBar* pStatusBar = GetStatusBar();
3172 if ( pStatusBar )
1c4293cb 3173 {
2d8d109b
JS
3174 pStatusBar->SetStatusText(msg);
3175 return;
1c4293cb
VZ
3176 }
3177 }
3178#endif
3179
8923cccd 3180 ::wxMessageBox(msg, _("Property Error"));
1c4293cb
VZ
3181}
3182
3183// -----------------------------------------------------------------------
3184
2d8d109b
JS
3185void wxPropertyGrid::DoHidePropertyError( wxPGProperty* WXUNUSED(property) )
3186{
3187#if wxUSE_STATUSBAR
3188 if ( !wxPGGlobalVars->m_offline )
3189 {
3190 wxStatusBar* pStatusBar = GetStatusBar();
3191 if ( pStatusBar )
3192 {
3193 pStatusBar->SetStatusText(wxEmptyString);
3194 return;
3195 }
3196 }
3197#endif
3198}
3199
3200// -----------------------------------------------------------------------
3201
d8812c6e
JS
3202bool wxPropertyGrid::OnValidationFailure( wxPGProperty* property,
3203 wxVariant& invalidValue )
3204{
03d47fcf
JS
3205 if ( m_inOnValidationFailure )
3206 return true;
3207
3208 m_inOnValidationFailure = true;
3209 wxON_BLOCK_EXIT_SET(m_inOnValidationFailure, false);
3210
d8812c6e 3211 wxWindow* editor = GetEditorControl();
03d47fcf
JS
3212 int vfb = m_validationInfo.m_failureBehavior;
3213
3214 if ( m_inDoSelectProperty )
3215 {
3216 // When property selection is being changed, do not display any
3217 // messages, if some were already shown for this property.
3218 if ( property->HasFlag(wxPG_PROP_INVALID_VALUE) )
3219 {
3220 m_validationInfo.m_failureBehavior =
3221 vfb & ~(wxPG_VFB_SHOW_MESSAGE |
3222 wxPG_VFB_SHOW_MESSAGEBOX |
3223 wxPG_VFB_SHOW_MESSAGE_ON_STATUSBAR);
3224 }
3225 }
d8812c6e
JS
3226
3227 // First call property's handler
3228 property->OnValidationFailure(invalidValue);
3229
3230 bool res = DoOnValidationFailure(property, invalidValue);
3231
3232 //
3233 // For non-wxTextCtrl editors, we do need to revert the value
3234 if ( !editor->IsKindOf(CLASSINFO(wxTextCtrl)) &&
fc72fab6 3235 property == GetSelection() )
d8812c6e
JS
3236 {
3237 property->GetEditorClass()->UpdateControl(property, editor);
3238 }
3239
3240 property->SetFlag(wxPG_PROP_INVALID_VALUE);
3241
3242 return res;
3243}
3244
1c4293cb
VZ
3245bool wxPropertyGrid::DoOnValidationFailure( wxPGProperty* property, wxVariant& WXUNUSED(invalidValue) )
3246{
3247 int vfb = m_validationInfo.m_failureBehavior;
3248
3249 if ( vfb & wxPG_VFB_BEEP )
3250 ::wxBell();
3251
3252 if ( (vfb & wxPG_VFB_MARK_CELL) &&
3253 !property->HasFlag(wxPG_PROP_INVALID_VALUE) )
3254 {
d7e2b522 3255 unsigned int colCount = m_pState->GetColumnCount();
1c4293cb 3256
d7e2b522
JS
3257 // We need backup marked property's cells
3258 m_propCellsBackup = property->m_cells;
3259
3260 wxColour vfbFg = *wxWHITE;
3261 wxColour vfbBg = *wxRED;
3262
3263 property->EnsureCells(colCount);
3264
3265 for ( unsigned int i=0; i<colCount; i++ )
1c4293cb 3266 {
d7e2b522
JS
3267 wxPGCell& cell = property->m_cells[i];
3268 cell.SetFgCol(vfbFg);
3269 cell.SetBgCol(vfbBg);
3270 }
1c4293cb 3271
d7e2b522 3272 DrawItemAndChildren(property);
1c4293cb 3273
fc72fab6 3274 if ( property == GetSelection() )
d7e2b522
JS
3275 {
3276 SetInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL);
1c4293cb 3277
d7e2b522
JS
3278 wxWindow* editor = GetEditorControl();
3279 if ( editor )
3280 {
3281 editor->SetForegroundColour(vfbFg);
3282 editor->SetBackgroundColour(vfbBg);
1c4293cb
VZ
3283 }
3284 }
3285 }
3286
0ea0604a
JS
3287 if ( vfb & (wxPG_VFB_SHOW_MESSAGE |
3288 wxPG_VFB_SHOW_MESSAGEBOX |
3289 wxPG_VFB_SHOW_MESSAGE_ON_STATUSBAR) )
1c4293cb
VZ
3290 {
3291 wxString msg = m_validationInfo.m_failureMessage;
3292
6636ef8d 3293 if ( msg.empty() )
0ea0604a
JS
3294 msg = _("You have entered invalid value. Press ESC to cancel editing.");
3295
3296 #if wxUSE_STATUSBAR
3297 if ( vfb & wxPG_VFB_SHOW_MESSAGE_ON_STATUSBAR )
3298 {
3299 if ( !wxPGGlobalVars->m_offline )
3300 {
3301 wxStatusBar* pStatusBar = GetStatusBar();
3302 if ( pStatusBar )
3303 pStatusBar->SetStatusText(msg);
3304 }
3305 }
3306 #endif
3307
3308 if ( vfb & wxPG_VFB_SHOW_MESSAGE )
3309 DoShowPropertyError(property, msg);
1c4293cb 3310
0ea0604a
JS
3311 if ( vfb & wxPG_VFB_SHOW_MESSAGEBOX )
3312 ::wxMessageBox(msg, _("Property Error"));
1c4293cb
VZ
3313 }
3314
3315 return (vfb & wxPG_VFB_STAY_IN_PROPERTY) ? false : true;
3316}
3317
3318// -----------------------------------------------------------------------
3319
3320void wxPropertyGrid::DoOnValidationFailureReset( wxPGProperty* property )
3321{
3322 int vfb = m_validationInfo.m_failureBehavior;
3323
3324 if ( vfb & wxPG_VFB_MARK_CELL )
3325 {
d7e2b522
JS
3326 // Revert cells
3327 property->m_cells = m_propCellsBackup;
1c4293cb
VZ
3328
3329 ClearInternalFlag(wxPG_FL_CELL_OVERRIDES_SEL);
3330
fc72fab6 3331 if ( property == GetSelection() && GetEditorControl() )
1c4293cb
VZ
3332 {
3333 // Calling this will recreate the control, thus resetting its colour
3334 RefreshProperty(property);
3335 }
3336 else
3337 {
3338 DrawItemAndChildren(property);
3339 }
3340 }
8915141c 3341
0ea0604a
JS
3342#if wxUSE_STATUSBAR
3343 if ( vfb & wxPG_VFB_SHOW_MESSAGE_ON_STATUSBAR )
3344 {
3345 if ( !wxPGGlobalVars->m_offline )
3346 {
3347 wxStatusBar* pStatusBar = GetStatusBar();
3348 if ( pStatusBar )
3349 pStatusBar->SetStatusText(wxEmptyString);
3350 }
3351 }
3352#endif
3353
2d8d109b
JS
3354 if ( vfb & wxPG_VFB_SHOW_MESSAGE )
3355 {
3356 DoHidePropertyError(property);
3357 }
3358
8915141c 3359 m_validationInfo.m_isFailing = false;
1c4293cb
VZ
3360}
3361
3362// -----------------------------------------------------------------------
3363
3364// flags are same as with DoSelectProperty
3365bool wxPropertyGrid::DoPropertyChanged( wxPGProperty* p, unsigned int selFlags )
3366{
3367 if ( m_inDoPropertyChanged )
3368 return true;
3369
88f47aa7
JS
3370 m_inDoPropertyChanged = true;
3371 wxON_BLOCK_EXIT_SET(m_inDoPropertyChanged, false);
3372
fc72fab6 3373 wxPGProperty* selected = GetSelection();
f9189014 3374
1c4293cb
VZ
3375 m_pState->m_anyModified = 1;
3376
8915141c
JS
3377 // If property's value is being changed, assume it is valid
3378 OnValidationFailureReset(selected);
3379
1c4293cb
VZ
3380 // Maybe need to update control
3381 wxASSERT( m_chgInfo_changedProperty != NULL );
3382
3383 // These values were calculated in PerformValidation()
3384 wxPGProperty* changedProperty = m_chgInfo_changedProperty;
3385 wxVariant value = m_chgInfo_pendingValue;
3386
3387 wxPGProperty* topPaintedProperty = changedProperty;
3388
3389 while ( !topPaintedProperty->IsCategory() &&
3390 !topPaintedProperty->IsRoot() )
3391 {
3392 topPaintedProperty = topPaintedProperty->GetParent();
3393 }
3394
8f18b252 3395 changedProperty->SetValue(value, &m_chgInfo_valueList, wxPG_SETVAL_BY_USER);
1c4293cb 3396
cc98c785
JS
3397 // NB: Call GetEditorControl() as late as possible, because OnSetValue()
3398 // and perhaps other user-defined virtual functions may change it.
3399 wxWindow* editor = GetEditorControl();
3400
1c4293cb
VZ
3401 // Set as Modified (not if dragging just began)
3402 if ( !(p->m_flags & wxPG_PROP_MODIFIED) )
3403 {
3404 p->m_flags |= wxPG_PROP_MODIFIED;
fc72fab6 3405 if ( p == selected && (m_windowStyle & wxPG_BOLD_MODIFIED) )
1c4293cb 3406 {
f9189014 3407 if ( editor )
1c4293cb
VZ
3408 SetCurControlBoldFont();
3409 }
3410 }
3411
3412 wxPGProperty* pwc;
3413
3414 // Propagate updates to parent(s)
3415 pwc = p;
3416 wxPGProperty* prevPwc = NULL;
3417
3418 while ( prevPwc != topPaintedProperty )
3419 {
3420 pwc->m_flags |= wxPG_PROP_MODIFIED;
3421
fc72fab6 3422 if ( pwc == selected && (m_windowStyle & wxPG_BOLD_MODIFIED) )
1c4293cb 3423 {
f9189014 3424 if ( editor )
1c4293cb
VZ
3425 SetCurControlBoldFont();
3426 }
3427
3428 prevPwc = pwc;
3429 pwc = pwc->GetParent();
3430 }
3431
3432 // Draw the actual property
3433 DrawItemAndChildren( topPaintedProperty );
3434
3435 //
3436 // If value was set by wxPGProperty::OnEvent, then update the editor
3437 // control.
3438 if ( selFlags & wxPG_SEL_DIALOGVAL )
3439 {
a6353fe8 3440 RefreshEditor();
1c4293cb
VZ
3441 }
3442 else
3443 {
3444#if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3445 if ( m_wndEditor ) m_wndEditor->Refresh();
3446 if ( m_wndEditor2 ) m_wndEditor2->Refresh();
3447#endif
3448 }
3449
3450 // Sanity check
3451 wxASSERT( !changedProperty->GetParent()->HasFlag(wxPG_PROP_AGGREGATE) );
3452
3453 // If top parent has composite string value, then send to child parents,
3454 // starting from baseChangedProperty.
3455 if ( changedProperty->HasFlag(wxPG_PROP_COMPOSED_VALUE) )
3456 {
3457 pwc = m_chgInfo_baseChangedProperty;
3458
3459 while ( pwc != changedProperty )
3460 {
58935d4a 3461 SendEvent( wxEVT_PG_CHANGED, pwc, NULL );
1c4293cb
VZ
3462 pwc = pwc->GetParent();
3463 }
3464 }
3465
58935d4a 3466 SendEvent( wxEVT_PG_CHANGED, changedProperty, NULL );
1c4293cb 3467
1c4293cb
VZ
3468 return true;
3469}
3470
3471// -----------------------------------------------------------------------
3472
3473bool wxPropertyGrid::ChangePropertyValue( wxPGPropArg id, wxVariant newValue )
3474{
3475 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
3476
3477 m_chgInfo_changedProperty = NULL;
3478
3479 if ( PerformValidation(p, newValue) )
3480 {
3481 DoPropertyChanged(p);
3482 return true;
3483 }
3484 else
3485 {
3486 OnValidationFailure(p, newValue);
3487 }
3488
3489 return false;
3490}
3491
3492// -----------------------------------------------------------------------
9b5bafcf 3493
703ee9f5 3494wxVariant wxPropertyGrid::GetUncommittedPropertyValue()
9b5bafcf
JS
3495{
3496 wxPGProperty* prop = GetSelectedProperty();
3497
3498 if ( !prop )
3499 return wxNullVariant;
3500
3501 wxTextCtrl* tc = GetEditorTextCtrl();
3502 wxVariant value = prop->GetValue();
3503
3504 if ( !tc || !IsEditorsValueModified() )
3505 return value;
3506
3507 if ( !prop->StringToValue(value, tc->GetValue()) )
3508 return value;
3509
3510 if ( !PerformValidation(prop, value, IsStandaloneValidation) )
3511 return prop->GetValue();
3512
3513 return value;
3514}
3515
3516// -----------------------------------------------------------------------
1c4293cb
VZ
3517
3518// Runs wxValidator for the selected property
3519bool wxPropertyGrid::DoEditorValidate()
3520{
e954958f
JS
3521#if wxUSE_VALIDATORS
3522 wxRecursionGuard guard(m_validatingEditor);
3523 if ( guard.IsInside() )
3524 return false;
3525
3526 wxPGProperty* selected = GetSelection();
3527 if ( selected )
3528 {
3529 wxWindow* wnd = GetEditorControl();
3530
3531 wxValidator* validator = selected->GetValidator();
3532 if ( validator && wnd )
3533 {
3534 validator->SetWindow(wnd);
3535 if ( !validator->Validate(this) )
3536 return false;
3537 }
3538 }
3539#endif
1c4293cb
VZ
3540 return true;
3541}
3542
3543// -----------------------------------------------------------------------
3544
b2960098 3545bool wxPropertyGrid::HandleCustomEditorEvent( wxEvent &event )
1c4293cb 3546{
b2960098
JS
3547 //
3548 // NB: We should return true if the event was recognized as
3549 // a dedicated wxPropertyGrid event, and as such was
3550 // either properly handled or ignored.
3551 //
3552
1103c4ca
JS
3553 // It is possible that this handler receives event even before
3554 // the control has been properly initialized. Let's skip the
3555 // event handling in that case.
3556 if ( !m_pState )
b2960098 3557 return false;
1103c4ca 3558
ad2db6f8
JS
3559 // Don't care about the event if it originated from the
3560 // 'label editor'. In this function we only care about the
3561 // property value editor.
3562 if ( m_labelEditor && event.GetId() == m_labelEditor->GetId() )
3563 {
3564 event.Skip();
b2960098 3565 return true;
ad2db6f8
JS
3566 }
3567
fc72fab6 3568 wxPGProperty* selected = GetSelection();
1c4293cb 3569
1c4293cb
VZ
3570 // Somehow, event is handled after property has been deselected.
3571 // Possibly, but very rare.
cd4b15e5
JS
3572 if ( !selected ||
3573 selected->HasFlag(wxPG_PROP_BEING_DELETED) ||
03d47fcf 3574 m_inOnValidationFailure ||
cd4b15e5
JS
3575 // Also don't handle editor event if wxEVT_PG_CHANGED or
3576 // similar is currently doing something (showing a
3577 // message box, for instance).
3578 m_processedEvent )
b2960098 3579 return true;
1c4293cb 3580
b0996c3d 3581 if ( m_iFlags & wxPG_FL_IN_HANDLECUSTOMEDITOREVENT )
b2960098 3582 return true;
1c4293cb
VZ
3583
3584 wxVariant pendingValue(selected->GetValueRef());
3585 wxWindow* wnd = GetEditorControl();
6086bcc8 3586 wxWindow* editorWnd = wxDynamicCast(event.GetEventObject(), wxWindow);
1c4293cb
VZ
3587 int selFlags = 0;
3588 bool wasUnspecified = selected->IsValueUnspecified();
3589 int usesAutoUnspecified = selected->UsesAutoUnspecified();
1c4293cb
VZ
3590 bool valueIsPending = false;
3591
3592 m_chgInfo_changedProperty = NULL;
3593
e954958f 3594 m_iFlags &= ~wxPG_FL_VALUE_CHANGE_IN_EVENT;
1c4293cb
VZ
3595
3596 //
3597 // Filter out excess wxTextCtrl modified events
3020453f 3598 if ( event.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED && wnd )
1c4293cb 3599 {
3020453f
JS
3600 if ( wnd->IsKindOf(CLASSINFO(wxTextCtrl)) )
3601 {
3602 wxTextCtrl* tc = (wxTextCtrl*) wnd;
1c4293cb 3603
3020453f
JS
3604 wxString newTcValue = tc->GetValue();
3605 if ( m_prevTcValue == newTcValue )
b2960098 3606 return true;
3020453f
JS
3607 m_prevTcValue = newTcValue;
3608 }
3609 else if ( wnd->IsKindOf(CLASSINFO(wxComboCtrl)) )
3610 {
b718a533
JS
3611 // In some cases we might stumble unintentionally on
3612 // wxComboCtrl's embedded wxTextCtrl's events. Let's
3613 // avoid them.
3614 if ( editorWnd->IsKindOf(CLASSINFO(wxTextCtrl)) )
3615 return false;
3616
3020453f 3617 wxComboCtrl* cc = (wxComboCtrl*) wnd;
1c4293cb 3618
3020453f
JS
3619 wxString newTcValue = cc->GetTextCtrl()->GetValue();
3620 if ( m_prevTcValue == newTcValue )
b2960098 3621 return true;
3020453f
JS
3622 m_prevTcValue = newTcValue;
3623 }
1c4293cb
VZ
3624 }
3625
b0996c3d 3626 SetInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT);
1c4293cb
VZ
3627
3628 bool validationFailure = false;
3629 bool buttonWasHandled = false;
b2960098 3630 bool result = false;
1c4293cb
VZ
3631
3632 //
3633 // Try common button handling
3634 if ( m_wndEditor2 && event.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED )
3635 {
3636 wxPGEditorDialogAdapter* adapter = selected->GetEditorDialog();
3637
3638 if ( adapter )
3639 {
3640 buttonWasHandled = true;
3641 // Store as res2, as previously (and still currently alternatively)
3642 // dialogs can be shown by handling wxEVT_COMMAND_BUTTON_CLICKED
3643 // in wxPGProperty::OnEvent().
3644 adapter->ShowDialog( this, selected );
3645 delete adapter;
3646 }
3647 }
3648
7de050ad 3649 if ( !buttonWasHandled )
1c4293cb 3650 {
6086bcc8 3651 if ( wnd || m_wndEditor2 )
1c4293cb 3652 {
7de050ad
JS
3653 // First call editor class' event handler.
3654 const wxPGEditor* editor = selected->GetEditorClass();
3655
6086bcc8 3656 if ( editor->OnEvent( this, selected, editorWnd, event ) )
1c4293cb 3657 {
b2960098
JS
3658 result = true;
3659
7de050ad
JS
3660 // If changes, validate them
3661 if ( DoEditorValidate() )
3662 {
6086bcc8 3663 if ( editor->GetValueFromControl( pendingValue,
fc72fab6 3664 selected,
6086bcc8 3665 wnd ) )
7de050ad 3666 valueIsPending = true;
8915141c
JS
3667
3668 // Mark value always as pending if validation is currently
3669 // failing and value was not unspecified
3670 if ( !valueIsPending &&
3671 !pendingValue.IsNull() &&
3672 m_validationInfo.m_isFailing )
3673 valueIsPending = true;
7de050ad
JS
3674 }
3675 else
3676 {
3677 validationFailure = true;
3678 }
1c4293cb
VZ
3679 }
3680 }
3681
3682 // Then the property's custom handler (must be always called, unless
3683 // validation failed).
3684 if ( !validationFailure )
6086bcc8 3685 buttonWasHandled = selected->OnEvent( this, editorWnd, event );
1c4293cb
VZ
3686 }
3687
3688 // SetValueInEvent(), as called in one of the functions referred above
3689 // overrides editor's value.
3690 if ( m_iFlags & wxPG_FL_VALUE_CHANGE_IN_EVENT )
3691 {
3692 valueIsPending = true;
3693 pendingValue = m_changeInEventValue;
3694 selFlags |= wxPG_SEL_DIALOGVAL;
3695 }
3696
3697 if ( !validationFailure && valueIsPending )
fc72fab6 3698 if ( !PerformValidation(selected, pendingValue) )
1c4293cb
VZ
3699 validationFailure = true;
3700
a5d56762 3701 if ( validationFailure)
1c4293cb
VZ
3702 {
3703 OnValidationFailure(selected, pendingValue);
3704 }
3705 else if ( valueIsPending )
3706 {
3707 selFlags |= ( !wasUnspecified && selected->IsValueUnspecified() && usesAutoUnspecified ) ? wxPG_SEL_SETUNSPEC : 0;
3708
3709 DoPropertyChanged(selected, selFlags);
3710 EditorsValueWasNotModified();
0d4884cb 3711
0d4884cb
JS
3712 // Regardless of editor type, unfocus editor on
3713 // text-editing related enter press.
3714 if ( event.GetEventType() == wxEVT_COMMAND_TEXT_ENTER )
3715 {
3716 SetFocusOnCanvas();
3717 }
1c4293cb
VZ
3718 }
3719 else
3720 {
3721 // No value after all
23318a53 3722
a5d56762
RR
3723 // Regardless of editor type, unfocus editor on
3724 // text-editing related enter press.
3725 if ( event.GetEventType() == wxEVT_COMMAND_TEXT_ENTER )
3726 {
3727 SetFocusOnCanvas();
3728 }
1c4293cb
VZ
3729
3730 // Let unhandled button click events go to the parent
3731 if ( !buttonWasHandled && event.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED )
3732 {
b2960098 3733 result = true;
1c4293cb
VZ
3734 wxCommandEvent evt(wxEVT_COMMAND_BUTTON_CLICKED,GetId());
3735 GetEventHandler()->AddPendingEvent(evt);
3736 }
3737 }
3738
b0996c3d 3739 ClearInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT);
b2960098
JS
3740
3741 return result;
1c4293cb
VZ
3742}
3743
3744// -----------------------------------------------------------------------
3745// wxPropertyGrid editor control helper methods
3746// -----------------------------------------------------------------------
3747
3748wxRect wxPropertyGrid::GetEditorWidgetRect( wxPGProperty* p, int column ) const
3749{
3750 int itemy = p->GetY2(m_lineHeight);
1c4293cb
VZ
3751 int splitterX = m_pState->DoGetSplitterPosition(column-1);
3752 int colEnd = splitterX + m_pState->m_colWidths[column];
4aee8334 3753 int imageOffset = 0;
1c4293cb 3754
39e4e221
JS
3755 int vx, vy; // Top left corner of client
3756 GetViewStart(&vx, &vy);
3757 vy *= wxPG_PIXELS_PER_UNIT;
3758
be7e1039
JS
3759 if ( column == 1 )
3760 {
3761 // TODO: If custom image detection changes from current, change this.
3762 if ( m_iFlags & wxPG_FL_CUR_USES_CUSTOM_IMAGE )
3763 {
3764 //m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3765 int iw = p->OnMeasureImage().x;
3766 if ( iw < 1 )
3767 iw = wxPG_CUSTOM_IMAGE_WIDTH;
3768 imageOffset = p->GetImageOffset(iw);
3769 }
3770 }
3771 else if ( column == 0 )
3772 {
3773 splitterX += (p->m_depth - 1) * m_subgroup_extramargin;
1c4293cb
VZ
3774 }
3775
3776 return wxRect
3777 (
4aee8334 3778 splitterX+imageOffset+wxPG_XBEFOREWIDGET+wxPG_CONTROL_MARGIN+1,
1c4293cb 3779 itemy-vy,
4aee8334 3780 colEnd-splitterX-wxPG_XBEFOREWIDGET-wxPG_CONTROL_MARGIN-imageOffset-1,
1c4293cb
VZ
3781 m_lineHeight-1
3782 );
3783}
3784
3785// -----------------------------------------------------------------------
3786
3787wxRect wxPropertyGrid::GetImageRect( wxPGProperty* p, int item ) const
3788{
3789 wxSize sz = GetImageSize(p, item);
3790 return wxRect(wxPG_CONTROL_MARGIN + wxCC_CUSTOM_IMAGE_MARGIN1,
3791 wxPG_CUSTOM_IMAGE_SPACINGY,
3792 sz.x,
3793 sz.y);
3794}
3795
3796// return size of custom paint image
3797wxSize wxPropertyGrid::GetImageSize( wxPGProperty* p, int item ) const
3798{
3799 // If called with NULL property, then return default image
3800 // size for properties that use image.
3801 if ( !p )
3802 return wxSize(wxPG_CUSTOM_IMAGE_WIDTH,wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight));
3803
3804 wxSize cis = p->OnMeasureImage(item);
3805
939d9364 3806 int choiceCount = p->m_choices.GetCount();
1c4293cb
VZ
3807 int comVals = p->GetDisplayedCommonValueCount();
3808 if ( item >= choiceCount && comVals > 0 )
3809 {
3810 unsigned int cvi = item-choiceCount;
3811 cis = GetCommonValue(cvi)->GetRenderer()->GetImageSize(NULL, 1, cvi);
3812 }
3813 else if ( item >= 0 && choiceCount == 0 )
3814 return wxSize(0, 0);
3815
3816 if ( cis.x < 0 )
3817 {
3818 if ( cis.x <= -1 )
3819 cis.x = wxPG_CUSTOM_IMAGE_WIDTH;
3820 }
3821 if ( cis.y <= 0 )
3822 {
3823 if ( cis.y >= -1 )
3824 cis.y = wxPG_STD_CUST_IMAGE_HEIGHT(m_lineHeight);
3825 else
3826 cis.y = -cis.y;
3827 }
3828 return cis;
3829}
3830
3831// -----------------------------------------------------------------------
3832
3833// takes scrolling into account
3834void wxPropertyGrid::ImprovedClientToScreen( int* px, int* py )
3835{
3836 int vx, vy;
3837 GetViewStart(&vx,&vy);
3838 vy*=wxPG_PIXELS_PER_UNIT;
3839 vx*=wxPG_PIXELS_PER_UNIT;
3840 *px -= vx;
3841 *py -= vy;
3842 ClientToScreen( px, py );
3843}
3844
3845// -----------------------------------------------------------------------
3846
3847wxPropertyGridHitTestResult wxPropertyGrid::HitTest( const wxPoint& pt ) const
3848{
3849 wxPoint pt2;
3850 GetViewStart(&pt2.x,&pt2.y);
3851 pt2.x *= wxPG_PIXELS_PER_UNIT;
3852 pt2.y *= wxPG_PIXELS_PER_UNIT;
3853 pt2.x += pt.x;
3854 pt2.y += pt.y;
3855
3856 return m_pState->HitTest(pt2);
3857}
3858
3859// -----------------------------------------------------------------------
3860
3861// custom set cursor
3862void wxPropertyGrid::CustomSetCursor( int type, bool override )
3863{
3864 if ( type == m_curcursor && !override ) return;
3865
3866 wxCursor* cursor = &wxPG_DEFAULT_CURSOR;
3867
3868 if ( type == wxCURSOR_SIZEWE )
3869 cursor = m_cursorSizeWE;
3870
39e4e221 3871 SetCursor( *cursor );
1c4293cb
VZ
3872
3873 m_curcursor = type;
3874}
3875
3e6d8c31
JS
3876// -----------------------------------------------------------------------
3877
68174df3 3878wxString
3e6d8c31 3879wxPropertyGrid::GetUnspecifiedValueText( int argFlags ) const
68174df3 3880{
3e6d8c31
JS
3881 const wxPGCell& ua = GetUnspecifiedValueAppearance();
3882
3883 if ( ua.HasText() &&
3884 !(argFlags & wxPG_FULL_VALUE) &&
3885 !(argFlags & wxPG_EDITABLE_VALUE) )
3886 return ua.GetText();
3887
68174df3
JS
3888 return wxEmptyString;
3889}
3890
1c4293cb 3891// -----------------------------------------------------------------------
b0996c3d 3892// wxPropertyGrid property selection, editor creation
1c4293cb
VZ
3893// -----------------------------------------------------------------------
3894
b0996c3d
JS
3895//
3896// This class forwards events from property editor controls to wxPropertyGrid.
3897class wxPropertyGridEditorEventForwarder : public wxEvtHandler
3898{
3899public:
3900 wxPropertyGridEditorEventForwarder( wxPropertyGrid* propGrid )
3901 : wxEvtHandler(), m_propGrid(propGrid)
3902 {
3903 }
3904
3905 virtual ~wxPropertyGridEditorEventForwarder()
3906 {
3907 }
3908
3909private:
3910 bool ProcessEvent( wxEvent& event )
3911 {
3912 // Always skip
3913 event.Skip();
3914
5569834d 3915 m_propGrid->HandleCustomEditorEvent(event);
b2960098
JS
3916
3917 //
3918 // NB: We should return true if the event was recognized as
3919 // a dedicated wxPropertyGrid event, and as such was
3920 // either properly handled or ignored.
3921 //
3922 if ( m_propGrid->IsMainButtonEvent(event) )
3923 return true;
b0996c3d 3924
d2a82a6f
JS
3925 //
3926 // NB: On wxMSW, a wxTextCtrl with wxTE_PROCESS_ENTER
3927 // may beep annoyingly if that event is skipped
3928 // and passed to parent event handler.
3929 if ( event.GetEventType() == wxEVT_COMMAND_TEXT_ENTER )
3930 return true;
3931
b0996c3d
JS
3932 return wxEvtHandler::ProcessEvent(event);
3933 }
3934
3935 wxPropertyGrid* m_propGrid;
3936};
3937
1c4293cb 3938// Setups event handling for child control
28fb19ef 3939void wxPropertyGrid::SetupChildEventHandling( wxWindow* argWnd )
1c4293cb 3940{
28fb19ef
JS
3941 wxWindowID id = argWnd->GetId();
3942
1c4293cb
VZ
3943 if ( argWnd == m_wndEditor )
3944 {
6d24f9a9
JS
3945 argWnd->Connect(id, wxEVT_MOTION,
3946 wxMouseEventHandler(wxPropertyGrid::OnMouseMoveChild),
3947 NULL, this);
3948 argWnd->Connect(id, wxEVT_LEFT_UP,
3949 wxMouseEventHandler(wxPropertyGrid::OnMouseUpChild),
3950 NULL, this);
3951 argWnd->Connect(id, wxEVT_LEFT_DOWN,
3952 wxMouseEventHandler(wxPropertyGrid::OnMouseClickChild),
3953 NULL, this);
3954 argWnd->Connect(id, wxEVT_RIGHT_UP,
3955 wxMouseEventHandler(wxPropertyGrid::OnMouseRightClickChild),
3956 NULL, this);
3957 argWnd->Connect(id, wxEVT_ENTER_WINDOW,
3958 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry),
3959 NULL, this);
3960 argWnd->Connect(id, wxEVT_LEAVE_WINDOW,
3961 wxMouseEventHandler(wxPropertyGrid::OnMouseEntry),
3962 NULL, this);
1c4293cb 3963 }
2cbd2892 3964
b0996c3d
JS
3965 wxPropertyGridEditorEventForwarder* forwarder;
3966 forwarder = new wxPropertyGridEditorEventForwarder(this);
3967 argWnd->PushEventHandler(forwarder);
3968
2cbd2892
JS
3969 argWnd->Connect(id, wxEVT_KEY_DOWN,
3970 wxCharEventHandler(wxPropertyGrid::OnChildKeyDown),
3971 NULL, this);
1c4293cb
VZ
3972}
3973
58935d4a
JS
3974void wxPropertyGrid::DestroyEditorWnd( wxWindow* wnd )
3975{
3976 if ( !wnd )
3977 return;
3978
3979 wnd->Hide();
3980
3981 // Do not free editors immediately (for sake of processing events)
3982 wxPendingDelete.Append(wnd);
3983}
3984
1c4293cb
VZ
3985void wxPropertyGrid::FreeEditors()
3986{
d35947a2
JS
3987 //
3988 // Return focus back to canvas from children (this is required at least for
3989 // GTK+, which, unlike Windows, clears focus when control is destroyed
3990 // instead of moving it to closest parent).
52a368fe 3991 SetFocusOnCanvas();
d35947a2 3992
1c4293cb 3993 // Do not free editors immediately if processing events
1c4293cb
VZ
3994 if ( m_wndEditor2 )
3995 {
17ba2086 3996 wxEvtHandler* handler = m_wndEditor2->PopEventHandler(false);
1c4293cb 3997 m_wndEditor2->Hide();
17ba2086 3998 wxPendingDelete.Append( handler );
58935d4a 3999 DestroyEditorWnd(m_wndEditor2);
d3b9f782 4000 m_wndEditor2 = NULL;
1c4293cb
VZ
4001 }
4002
4003 if ( m_wndEditor )
4004 {
17ba2086 4005 wxEvtHandler* handler = m_wndEditor->PopEventHandler(false);
1c4293cb 4006 m_wndEditor->Hide();
17ba2086 4007 wxPendingDelete.Append( handler );
58935d4a 4008 DestroyEditorWnd(m_wndEditor);
d3b9f782 4009 m_wndEditor = NULL;
1c4293cb
VZ
4010 }
4011}
4012
4013// Call with NULL to de-select property
4014bool wxPropertyGrid::DoSelectProperty( wxPGProperty* p, unsigned int flags )
4015{
4016 /*
4017 if (p)
43b2d5e7 4018 {
1c4293cb
VZ
4019 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
4020 p->m_parent->m_label.c_str(),p->GetIndexInParent());
43b2d5e7 4021 }
1c4293cb 4022 else
43b2d5e7 4023 {
1c4293cb 4024 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
43b2d5e7 4025 }
1c4293cb
VZ
4026 */
4027
4028 if ( m_inDoSelectProperty )
4029 return true;
4030
96bffa12
JS
4031 m_inDoSelectProperty = true;
4032 wxON_BLOCK_EXIT_SET(m_inDoSelectProperty, false);
1c4293cb 4033
1c4293cb 4034 if ( !m_pState )
1c4293cb 4035 return false;
1c4293cb 4036
fc72fab6
JS
4037 wxArrayPGProperty prevSelection = m_pState->m_selection;
4038 wxPGProperty* prevFirstSel;
4039
4040 if ( prevSelection.size() > 0 )
4041 prevFirstSel = prevSelection[0];
4042 else
4043 prevFirstSel = NULL;
4044
4045 if ( prevFirstSel && prevFirstSel->HasFlag(wxPG_PROP_BEING_DELETED) )
4046 prevFirstSel = NULL;
4047
58935d4a
JS
4048 // Always send event, as this is indirect call
4049 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE);
4050
a5d56762 4051/*
fc72fab6
JS
4052 if ( prevFirstSel )
4053 wxPrintf( "Selected %s\n", prevFirstSel->GetClassInfo()->GetClassName() );
a5d56762
RR
4054 else
4055 wxPrintf( "None selected\n" );
23318a53 4056
a5d56762
RR
4057 if (p)
4058 wxPrintf( "P = %s\n", p->GetClassInfo()->GetClassName() );
4059 else
4060 wxPrintf( "P = NULL\n" );
4061*/
23318a53 4062
b89b2469
JS
4063 wxWindow* primaryCtrl = NULL;
4064
1c4293cb
VZ
4065 // If we are frozen, then just set the values.
4066 if ( m_frozen )
4067 {
4068 m_iFlags &= ~(wxPG_FL_ABNORMAL_EDITOR);
4069 m_editorFocused = 0;
fc72fab6 4070 m_pState->DoSetSelection(p);
1c4293cb
VZ
4071
4072 // If frozen, always free controls. But don't worry, as Thaw will
4073 // recall SelectProperty to recreate them.
4074 FreeEditors();
4075
4076 // Prevent any further selection measures in this call
d3b9f782 4077 p = NULL;
1c4293cb
VZ
4078 }
4079 else
4080 {
4081 // Is it the same?
fc72fab6
JS
4082 if ( prevFirstSel == p &&
4083 prevSelection.size() <= 1 &&
4084 !(flags & wxPG_SEL_FORCE) )
1c4293cb
VZ
4085 {
4086 // Only set focus if not deselecting
4087 if ( p )
4088 {
4089 if ( flags & wxPG_SEL_FOCUS )
4090 {
4091 if ( m_wndEditor )
4092 {
4093 m_wndEditor->SetFocus();
4094 m_editorFocused = 1;
4095 }
4096 }
4097 else
4098 {
c29e714c 4099 SetFocusOnCanvas();
1c4293cb
VZ
4100 }
4101 }
4102
1c4293cb
VZ
4103 return true;
4104 }
4105
4106 //
4107 // First, deactivate previous
fc72fab6 4108 if ( prevFirstSel )
1c4293cb 4109 {
1c4293cb 4110 // Must double-check if this is an selected in case of forceswitch
fc72fab6 4111 if ( p != prevFirstSel )
1c4293cb
VZ
4112 {
4113 if ( !CommitChangesFromEditor(flags) )
4114 {
4115 // Validation has failed, so we can't exit the previous editor
4116 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
4117 // _("Invalid Value"),wxOK|wxICON_ERROR);
1c4293cb
VZ
4118 return false;
4119 }
4120 }
4121
03d47fcf
JS
4122 // This should be called after CommitChangesFromEditor(), so that
4123 // OnValidationFailure() still has information on property's
4124 // validation state.
4125 OnValidationFailureReset(prevFirstSel);
4126
1c4293cb 4127 FreeEditors();
1c4293cb
VZ
4128
4129 m_iFlags &= ~(wxPG_FL_ABNORMAL_EDITOR);
4130 EditorsValueWasNotModified();
4131 }
4132
4133 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY);
4134
fc72fab6
JS
4135 m_pState->DoSetSelection(p);
4136
58935d4a
JS
4137 // Redraw unselected
4138 for ( unsigned int i=0; i<prevSelection.size(); i++ )
4139 {
4140 DrawItem(prevSelection[i]);
4141 }
4142
1c4293cb
VZ
4143 //
4144 // Then, activate the one given.
4145 if ( p )
4146 {
4147 int propY = p->GetY2(m_lineHeight);
4148
4149 int splitterX = GetSplitterPosition();
4150 m_editorFocused = 0;
1c4293cb 4151 m_iFlags |= wxPG_FL_PRIMARY_FILLS_ENTIRE;
1c4293cb 4152
d3b9f782 4153 wxASSERT( m_wndEditor == NULL );
1c4293cb 4154
1c4293cb
VZ
4155 //
4156 // Only create editor for non-disabled non-caption
4157 if ( !p->IsCategory() && !(p->m_flags & wxPG_PROP_DISABLED) )
4158 {
4159 // do this for non-caption items
4160
4161 m_selColumn = 1;
4162
4163 // Do we need to paint the custom image, if any?
4164 m_iFlags &= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE);
4165 if ( (p->m_flags & wxPG_PROP_CUSTOMIMAGE) &&
4166 !p->GetEditorClass()->CanContainCustomImage()
4167 )
4168 m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
4169
4170 wxRect grect = GetEditorWidgetRect(p, m_selColumn);
4171 wxPoint goodPos = grect.GetPosition();
1c4293cb 4172
3e6d8c31
JS
4173 // Editor appearance can now be considered clear
4174 m_editorAppearance.SetEmptyData();
4175
1c4293cb
VZ
4176 const wxPGEditor* editor = p->GetEditorClass();
4177 wxCHECK_MSG(editor, false,
4178 wxT("NULL editor class not allowed"));
4179
4180 m_iFlags &= ~wxPG_FL_FIXED_WIDTH_EDITOR;
4181
39e4e221
JS
4182 wxPGWindowList wndList =
4183 editor->CreateControls(this,
4184 p,
4185 goodPos,
4186 grect.GetSize());
1c4293cb
VZ
4187
4188 m_wndEditor = wndList.m_primary;
4189 m_wndEditor2 = wndList.m_secondary;
b89b2469 4190 primaryCtrl = GetEditorControl();
1c4293cb 4191
14c14060
JS
4192 //
4193 // Essentially, primaryCtrl == m_wndEditor
4194 //
4195
39e4e221
JS
4196 // NOTE: It is allowed for m_wndEditor to be NULL - in this
4197 // case value is drawn as normal, and m_wndEditor2 is
4198 // assumed to be a right-aligned button that triggers
4199 // a separate editorCtrl window.
1c4293cb
VZ
4200
4201 if ( m_wndEditor )
4202 {
b0f0eda8 4203 wxASSERT_MSG( m_wndEditor->GetParent() == GetPanel(),
39e4e221
JS
4204 "CreateControls must use result of "
4205 "wxPropertyGrid::GetPanel() as parent "
4206 "of controls." );
1c4293cb
VZ
4207
4208 // Set validator, if any
4209 #if wxUSE_VALIDATORS
704ceca8
JS
4210 wxValidator* validator = p->GetValidator();
4211 if ( validator )
0fd5c401 4212 primaryCtrl->SetValidator(*validator);
1c4293cb
VZ
4213 #endif
4214
4215 if ( m_wndEditor->GetSize().y > (m_lineHeight+6) )
4216 m_iFlags |= wxPG_FL_ABNORMAL_EDITOR;
4217
4218 // If it has modified status, use bold font
4219 // (must be done before capturing m_ctrlXAdjust)
39e4e221
JS
4220 if ( (p->m_flags & wxPG_PROP_MODIFIED) &&
4221 (m_windowStyle & wxPG_BOLD_MODIFIED) )
1c4293cb
VZ
4222 SetCurControlBoldFont();
4223
1c4293cb
VZ
4224 // Store x relative to splitter (we'll need it).
4225 m_ctrlXAdjust = m_wndEditor->GetPosition().x - splitterX;
4226
4227 // Check if background clear is not necessary
4228 wxPoint pos = m_wndEditor->GetPosition();
4229 if ( pos.x > (splitterX+1) || pos.y > propY )
4230 {
4231 m_iFlags &= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE);
4232 }
4233
4234 m_wndEditor->SetSizeHints(3, 3);
4235
28fb19ef 4236 SetupChildEventHandling(primaryCtrl);
1c4293cb
VZ
4237
4238 // Focus and select all (wxTextCtrl, wxComboBox etc)
4239 if ( flags & wxPG_SEL_FOCUS )
4240 {
4241 primaryCtrl->SetFocus();
4242
4243 p->GetEditorClass()->OnFocus(p, primaryCtrl);
4244 }
3e6d8c31
JS
4245 else
4246 {
4247 if ( p->IsValueUnspecified() )
4248 SetEditorAppearance(m_unspecifiedAppearance,
4249 true);
4250 }
1c4293cb
VZ
4251 }
4252
4253 if ( m_wndEditor2 )
4254 {
b0f0eda8 4255 wxASSERT_MSG( m_wndEditor2->GetParent() == GetPanel(),
39e4e221
JS
4256 "CreateControls must use result of "
4257 "wxPropertyGrid::GetPanel() as parent "
4258 "of controls." );
1c4293cb
VZ
4259
4260 // Get proper id for wndSecondary
4261 m_wndSecId = m_wndEditor2->GetId();
4262 wxWindowList children = m_wndEditor2->GetChildren();
4263 wxWindowList::iterator node = children.begin();
4264 if ( node != children.end() )
4265 m_wndSecId = ((wxWindow*)*node)->GetId();
4266
4267 m_wndEditor2->SetSizeHints(3,3);
4268
1c4293cb
VZ
4269 m_wndEditor2->Show();
4270
28fb19ef 4271 SetupChildEventHandling(m_wndEditor2);
1c4293cb
VZ
4272
4273 // If no primary editor, focus to button to allow
4274 // it to interprete ENTER etc.
4275 // NOTE: Due to problems focusing away from it, this
4276 // has been disabled.
4277 /*
4278 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
4279 m_wndEditor2->SetFocus();
4280 */
4281 }
4282
4283 if ( flags & wxPG_SEL_FOCUS )
4284 m_editorFocused = 1;
4285
4286 }
4287 else
4288 {
39e4e221
JS
4289 // Make sure focus is in grid canvas (important for wxGTK,
4290 // at least)
c29e714c 4291 SetFocusOnCanvas();
1c4293cb
VZ
4292 }
4293
4294 EditorsValueWasNotModified();
4295
4296 // If it's inside collapsed section, expand parent, scroll, etc.
4297 // Also, if it was partially visible, scroll it into view.
4298 if ( !(flags & wxPG_SEL_NONVISIBLE) )
4299 EnsureVisible( p );
4300
4301 if ( m_wndEditor )
4302 {
1c4293cb
VZ
4303 m_wndEditor->Show(true);
4304 }
4305
58935d4a
JS
4306 if ( !(flags & wxPG_SEL_NO_REFRESH) )
4307 DrawItem(p);
1c4293cb 4308 }
e213da24
JS
4309 else
4310 {
c29e714c
JS
4311 // Make sure focus is in grid canvas
4312 SetFocusOnCanvas();
e213da24 4313 }
1c4293cb
VZ
4314
4315 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY);
4316 }
4317
b89b2469 4318 const wxString* pHelpString = NULL;
1c4293cb 4319
b89b2469
JS
4320 if ( p )
4321 pHelpString = &p->GetHelpString();
1c4293cb
VZ
4322
4323 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS) )
4324 {
b89b2469
JS
4325#if wxUSE_STATUSBAR
4326
4327 //
4328 // Show help text in status bar.
4329 // (if found and grid not embedded in manager with help box and
4330 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
4331 //
2d8d109b 4332 wxStatusBar* statusbar = GetStatusBar();
1c4293cb
VZ
4333 if ( statusbar )
4334 {
6636ef8d 4335 if ( pHelpString && !pHelpString->empty() )
1c4293cb 4336 {
b89b2469
JS
4337 // Set help box text.
4338 statusbar->SetStatusText( *pHelpString );
4339 m_iFlags |= wxPG_FL_STRING_IN_STATUSBAR;
1c4293cb 4340 }
b89b2469 4341 else if ( m_iFlags & wxPG_FL_STRING_IN_STATUSBAR )
1c4293cb
VZ
4342 {
4343 // Clear help box - but only if it was written
4344 // by us at previous time.
4345 statusbar->SetStatusText( m_emptyString );
4346 m_iFlags &= ~(wxPG_FL_STRING_IN_STATUSBAR);
4347 }
4348 }
b89b2469 4349#endif
1c4293cb 4350 }
b89b2469
JS
4351 else
4352 {
4353#if wxPG_SUPPORT_TOOLTIPS
4354 //
4355 // Show help as a tool tip on the editor control.
4356 //
6636ef8d 4357 if ( pHelpString && !pHelpString->empty() &&
b89b2469
JS
4358 primaryCtrl )
4359 {
4360 primaryCtrl->SetToolTip(*pHelpString);
4361 }
1c4293cb 4362#endif
b89b2469 4363 }
1c4293cb 4364
1c4293cb 4365 // call wx event handler (here so that it also occurs on deselection)
01b5ad3b 4366 if ( !(flags & wxPG_SEL_DONT_SEND_EVENT) )
58935d4a 4367 SendEvent( wxEVT_PG_SELECTED, p, NULL );
1c4293cb
VZ
4368
4369 return true;
4370}
4371
4372// -----------------------------------------------------------------------
4373
4374bool wxPropertyGrid::UnfocusEditor()
4375{
fc72fab6
JS
4376 wxPGProperty* selected = GetSelection();
4377
4378 if ( !selected || !m_wndEditor || m_frozen )
1c4293cb
VZ
4379 return true;
4380
4381 if ( !CommitChangesFromEditor(0) )
4382 return false;
4383
c29e714c 4384 SetFocusOnCanvas();
fc72fab6 4385 DrawItem(selected);
1c4293cb
VZ
4386
4387 return true;
4388}
4389
4390// -----------------------------------------------------------------------
4391
f521bae6
JS
4392void wxPropertyGrid::RefreshEditor()
4393{
fc72fab6 4394 wxPGProperty* p = GetSelection();
03647350 4395 if ( !p )
a6353fe8
JS
4396 return;
4397
4398 wxWindow* wnd = GetEditorControl();
4399 if ( !wnd )
f521bae6 4400 return;
a6353fe8
JS
4401
4402 // Set editor font boldness - must do this before
4403 // calling UpdateControl().
4404 if ( HasFlag(wxPG_BOLD_MODIFIED) )
4405 {
4406 if ( p->HasFlag(wxPG_PROP_MODIFIED) )
4407 wnd->SetFont(GetCaptionFont());
4408 else
4409 wnd->SetFont(GetFont());
4410 }
4411
daeb4e4d
JS
4412 const wxPGEditor* editorClass = p->GetEditorClass();
4413
4414 editorClass->UpdateControl(p, wnd);
4415
4416 if ( p->IsValueUnspecified() )
3e6d8c31 4417 SetEditorAppearance(m_unspecifiedAppearance, true);
f521bae6
JS
4418}
4419
4420// -----------------------------------------------------------------------
4421
01b5ad3b
JS
4422bool wxPropertyGrid::SelectProperty( wxPGPropArg id, bool focus )
4423{
4424 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
4425
4426 int flags = wxPG_SEL_DONT_SEND_EVENT;
4427 if ( focus )
4428 flags |= wxPG_SEL_FOCUS;
4429
4430 return DoSelectProperty(p, flags);
4431}
4432
1c4293cb
VZ
4433// -----------------------------------------------------------------------
4434// wxPropertyGrid expand/collapse state
4435// -----------------------------------------------------------------------
4436
4437bool wxPropertyGrid::DoCollapse( wxPGProperty* p, bool sendEvents )
4438{
4439 wxPGProperty* pwc = wxStaticCast(p, wxPGProperty);
fc72fab6 4440 wxPGProperty* selected = GetSelection();
1c4293cb
VZ
4441
4442 // If active editor was inside collapsed section, then disable it
fc72fab6 4443 if ( selected && selected->IsSomeParent(p) )
1c4293cb 4444 {
01b5ad3b 4445 DoClearSelection();
1c4293cb
VZ
4446 }
4447
4448 // Store dont-center-splitter flag 'cause we need to temporarily set it
0da1f1c4
JS
4449 bool prevDontCenterSplitter = m_pState->m_dontCenterSplitter;
4450 m_pState->m_dontCenterSplitter = true;
1c4293cb
VZ
4451
4452 bool res = m_pState->DoCollapse(pwc);
4453
4454 if ( res )
4455 {
4456 if ( sendEvents )
4457 SendEvent( wxEVT_PG_ITEM_COLLAPSED, p );
4458
4459 RecalculateVirtualSize();
aff6c20a 4460 Refresh();
1c4293cb
VZ
4461 }
4462
0da1f1c4 4463 m_pState->m_dontCenterSplitter = prevDontCenterSplitter;
1c4293cb
VZ
4464
4465 return res;
4466}
4467
4468// -----------------------------------------------------------------------
4469
4470bool wxPropertyGrid::DoExpand( wxPGProperty* p, bool sendEvents )
4471{
4472 wxCHECK_MSG( p, false, wxT("invalid property id") );
4473
4474 wxPGProperty* pwc = (wxPGProperty*)p;
4475
4476 // Store dont-center-splitter flag 'cause we need to temporarily set it
0da1f1c4
JS
4477 bool prevDontCenterSplitter = m_pState->m_dontCenterSplitter;
4478 m_pState->m_dontCenterSplitter = true;
1c4293cb
VZ
4479
4480 bool res = m_pState->DoExpand(pwc);
4481
4482 if ( res )
4483 {
4484 if ( sendEvents )
4485 SendEvent( wxEVT_PG_ITEM_EXPANDED, p );
4486
4487 RecalculateVirtualSize();
aff6c20a 4488 Refresh();
1c4293cb
VZ
4489 }
4490
0da1f1c4 4491 m_pState->m_dontCenterSplitter = prevDontCenterSplitter;
1c4293cb
VZ
4492
4493 return res;
4494}
4495
4496// -----------------------------------------------------------------------
4497
4498bool wxPropertyGrid::DoHideProperty( wxPGProperty* p, bool hide, int flags )
4499{
4500 if ( m_frozen )
4501 return m_pState->DoHideProperty(p, hide, flags);
4502
fc72fab6
JS
4503 wxArrayPGProperty selection = m_pState->m_selection; // Must use a copy
4504 int selRemoveCount = 0;
4505 for ( unsigned int i=0; i<selection.size(); i++ )
4506 {
4507 wxPGProperty* selected = selection[i];
4508 if ( selected == p || selected->IsSomeParent(p) )
1c4293cb 4509 {
fc72fab6
JS
4510 if ( !DoRemoveFromSelection(p, flags) )
4511 return false;
4512 selRemoveCount += 1;
1c4293cb 4513 }
fc72fab6 4514 }
1c4293cb
VZ
4515
4516 m_pState->DoHideProperty(p, hide, flags);
4517
4518 RecalculateVirtualSize();
4519 Refresh();
4520
4521 return true;
4522}
4523
4524
4525// -----------------------------------------------------------------------
4526// wxPropertyGrid size related methods
4527// -----------------------------------------------------------------------
4528
4529void wxPropertyGrid::RecalculateVirtualSize( int forceXPos )
4530{
bca35e84
JS
4531 // Don't check for !HasInternalFlag(wxPG_FL_INITIALIZED) here. Otherwise
4532 // virtual size calculation may go wrong.
1bc74ec9 4533 if ( HasInternalFlag(wxPG_FL_RECALCULATING_VIRTUAL_SIZE) ||
0564ae93 4534 m_frozen ||
bca35e84 4535 !m_pState )
1c4293cb
VZ
4536 return;
4537
4538 //
4539 // If virtual height was changed, then recalculate editor control position(s)
4540 if ( m_pState->m_vhCalcPending )
4541 CorrectEditorWidgetPosY();
4542
4543 m_pState->EnsureVirtualHeight();
4544
4b6a582b
VZ
4545 wxASSERT_LEVEL_2_MSG(
4546 m_pState->GetVirtualHeight() == m_pState->GetActualVirtualHeight(),
4547 "VirtualHeight and ActualVirtualHeight should match"
4548 );
1c4293cb
VZ
4549
4550 m_iFlags |= wxPG_FL_RECALCULATING_VIRTUAL_SIZE;
4551
4552 int x = m_pState->m_width;
4553 int y = m_pState->m_virtualHeight;
4554
4555 int width, height;
4556 GetClientSize(&width,&height);
4557
4558 // Now adjust virtual size.
657a8a35 4559 SetVirtualSize(x, y);
1c4293cb
VZ
4560
4561 int xAmount = 0;
4562 int xPos = 0;
4563
4564 //
4565 // Adjust scrollbars
4566 if ( HasVirtualWidth() )
4567 {
4568 xAmount = x/wxPG_PIXELS_PER_UNIT;
4569 xPos = GetScrollPos( wxHORIZONTAL );
4570 }
4571
4572 if ( forceXPos != -1 )
4573 xPos = forceXPos;
4574 // xPos too high?
4575 else if ( xPos > (xAmount-(width/wxPG_PIXELS_PER_UNIT)) )
4576 xPos = 0;
4577
bb2e05cf 4578 int yAmount = y / wxPG_PIXELS_PER_UNIT;
1c4293cb
VZ
4579 int yPos = GetScrollPos( wxVERTICAL );
4580
4581 SetScrollbars( wxPG_PIXELS_PER_UNIT, wxPG_PIXELS_PER_UNIT,
4582 xAmount, yAmount, xPos, yPos, true );
4583
769ede72
JS
4584 // This may be needed in addition to calling SetScrollbars()
4585 // when class inherits from wxScrollHelper instead of
4586 // actual wxScrolled<T>.
4587 AdjustScrollbars();
4588
1c4293cb
VZ
4589 // Must re-get size now
4590 GetClientSize(&width,&height);
4591
4592 if ( !HasVirtualWidth() )
4593 {
4594 m_pState->SetVirtualWidth(width);
4595 x = width;
4596 }
4597
4598 m_width = width;
4599 m_height = height;
4600
1c4293cb
VZ
4601 m_pState->CheckColumnWidths();
4602
fc72fab6 4603 if ( GetSelection() )
1c4293cb
VZ
4604 CorrectEditorWidgetSizeX();
4605
4606 m_iFlags &= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE;
4607}
4608
4609// -----------------------------------------------------------------------
4610
4611void wxPropertyGrid::OnResize( wxSizeEvent& event )
4612{
4613 if ( !(m_iFlags & wxPG_FL_INITIALIZED) )
4614 return;
4615
4616 int width, height;
39e4e221 4617 GetClientSize(&width, &height);
1c4293cb
VZ
4618
4619 m_width = width;
4620 m_height = height;
4621
1c4293cb
VZ
4622#if wxPG_DOUBLE_BUFFER
4623 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING) )
4624 {
4625 int dblh = (m_lineHeight*2);
4626 if ( !m_doubleBuffer )
4627 {
4628 // Create double buffer bitmap to draw on, if none
4629 int w = (width>250)?width:250;
4630 int h = height + dblh;
4631 h = (h>400)?h:400;
4632 m_doubleBuffer = new wxBitmap( w, h );
4633 }
4634 else
4635 {
4636 int w = m_doubleBuffer->GetWidth();
4637 int h = m_doubleBuffer->GetHeight();
4638
4639 // Double buffer must be large enough
4640 if ( w < width || h < (height+dblh) )
4641 {
4642 if ( w < width ) w = width;
4643 if ( h < (height+dblh) ) h = height + dblh;
4644 delete m_doubleBuffer;
4645 m_doubleBuffer = new wxBitmap( w, h );
4646 }
4647 }
4648 }
4649
4650#endif
4651
4652 m_pState->OnClientWidthChange( width, event.GetSize().x - m_ncWidth, true );
4653 m_ncWidth = event.GetSize().x;
4654
4655 if ( !m_frozen )
4656 {
4657 if ( m_pState->m_itemsAdded )
4658 PrepareAfterItemsAdded();
4659 else
4660 // Without this, virtual size (atleast under wxGTK) will be skewed
4661 RecalculateVirtualSize();
4662
4663 Refresh();
4664 }
4665}
4666
4667// -----------------------------------------------------------------------
4668
4669void wxPropertyGrid::SetVirtualWidth( int width )
4670{
4671 if ( width == -1 )
4672 {
4673 // Disable virtual width
4674 width = GetClientSize().x;
4675 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH);
4676 }
4677 else
4678 {
4679 // Enable virtual width
4680 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH);
4681 }
4682 m_pState->SetVirtualWidth( width );
4683}
4684
0ca422ef
RR
4685void wxPropertyGrid::SetFocusOnCanvas()
4686{
52a368fe
JS
4687 // To prevent wxPropertyGrid from stealing focus from other controls,
4688 // only move focus to the grid if it was already in one if its child
4689 // controls.
4690 wxWindow* focus = wxWindow::FindFocus();
4691 if ( focus )
4692 {
4693 wxWindow* parent = focus->GetParent();
4694 while ( parent )
4695 {
4696 if ( parent == this )
4697 {
4698 SetFocus();
4699 break;
4700 }
4701 parent = parent->GetParent();
4702 }
4703 }
4704
0ca422ef
RR
4705 m_editorFocused = 0;
4706}
4707
1c4293cb
VZ
4708// -----------------------------------------------------------------------
4709// wxPropertyGrid mouse event handling
4710// -----------------------------------------------------------------------
4711
4712// selFlags uses same values DoSelectProperty's flags
4713// Returns true if event was vetoed.
58935d4a
JS
4714bool wxPropertyGrid::SendEvent( int eventType, wxPGProperty* p,
4715 wxVariant* pValue,
4716 unsigned int selFlags,
4717 unsigned int column )
1c4293cb 4718{
5405bfb4
JS
4719 // selFlags should have wxPG_SEL_NOVALIDATE if event is not
4720 // vetoable.
4721
1c4293cb
VZ
4722 // Send property grid event of specific type and with specific property
4723 wxPropertyGridEvent evt( eventType, m_eventObject->GetId() );
4724 evt.SetPropertyGrid(this);
4725 evt.SetEventObject(m_eventObject);
4726 evt.SetProperty(p);
58935d4a 4727 evt.SetColumn(column);
644b283d 4728 if ( eventType == wxEVT_PG_CHANGING )
1c4293cb 4729 {
644b283d 4730 wxASSERT( pValue );
1c4293cb 4731 evt.SetCanVeto(true);
1c4293cb 4732 m_validationInfo.m_pValue = pValue;
644b283d 4733 evt.SetupValidationInfo();
1c4293cb 4734 }
644b283d 4735 else
58935d4a 4736 {
644b283d
JS
4737 if ( p )
4738 evt.SetPropertyValue(p->GetValue());
4739
4740 if ( !(selFlags & wxPG_SEL_NOVALIDATE) )
4741 evt.SetCanVeto(true);
58935d4a
JS
4742 }
4743
f231df8a 4744 wxPropertyGridEvent* prevProcessedEvent = m_processedEvent;
e84e5ba3 4745 m_processedEvent = &evt;
644b283d 4746 m_eventObject->HandleWindowEvent(evt);
f231df8a 4747 m_processedEvent = prevProcessedEvent;
e84e5ba3 4748
1c4293cb
VZ
4749 return evt.WasVetoed();
4750}
4751
4752// -----------------------------------------------------------------------
4753
4754// Return false if should be skipped
4755bool wxPropertyGrid::HandleMouseClick( int x, unsigned int y, wxMouseEvent &event )
4756{
4757 bool res = true;
4758
4759 // Need to set focus?
4760 if ( !(m_iFlags & wxPG_FL_FOCUSED) )
4761 {
c29e714c 4762 SetFocusOnCanvas();
1c4293cb
VZ
4763 }
4764
4765 wxPropertyGridPageState* state = m_pState;
4766 int splitterHit;
4767 int splitterHitOffset;
4768 int columnHit = state->HitTestH( x, &splitterHit, &splitterHitOffset );
4769
4770 wxPGProperty* p = DoGetItemAtY(y);
4771
4772 if ( p )
4773 {
4774 int depth = (int)p->GetDepth() - 1;
4775
4776 int marginEnds = m_marginWidth + ( depth * m_subgroup_extramargin );
4777
4778 if ( x >= marginEnds )
4779 {
4780 // Outside margin.
4781
4782 if ( p->IsCategory() )
4783 {
4784 // This is category.
4785 wxPropertyCategory* pwc = (wxPropertyCategory*)p;
4786
4787 int textX = m_marginWidth + ((unsigned int)((pwc->m_depth-1)*m_subgroup_extramargin));
4788
4789 // Expand, collapse, activate etc. if click on text or left of splitter.
4790 if ( x >= textX
4791 &&
4792 ( x < (textX+pwc->GetTextExtent(this, m_captionFont)+(wxPG_CAPRECTXMARGIN*2)) ||
4793 columnHit == 0
4794 )
4795 )
4796 {
58935d4a
JS
4797 if ( !AddToSelectionFromInputEvent( p,
4798 columnHit,
4799 &event ) )
1c4293cb
VZ
4800 return res;
4801
4802 // On double-click, expand/collapse.
4803 if ( event.ButtonDClick() && !(m_windowStyle & wxPG_HIDE_MARGIN) )
4804 {
4805 if ( pwc->IsExpanded() ) DoCollapse( p, true );
4806 else DoExpand( p, true );
4807 }
4808 }
4809 }
4810 else if ( splitterHit == -1 )
4811 {
4812 // Click on value.
4813 unsigned int selFlag = 0;
4814 if ( columnHit == 1 )
4815 {
4816 m_iFlags |= wxPG_FL_ACTIVATION_BY_CLICK;
4817 selFlag = wxPG_SEL_FOCUS;
4818 }
58935d4a
JS
4819 if ( !AddToSelectionFromInputEvent( p,
4820 columnHit,
4821 &event,
4822 selFlag ) )
1c4293cb
VZ
4823 return res;
4824
4825 m_iFlags &= ~(wxPG_FL_ACTIVATION_BY_CLICK);
4826
4827 if ( p->GetChildCount() && !p->IsCategory() )
4828 // On double-click, expand/collapse.
4829 if ( event.ButtonDClick() && !(m_windowStyle & wxPG_HIDE_MARGIN) )
4830 {
4831 wxPGProperty* pwc = (wxPGProperty*)p;
4832 if ( pwc->IsExpanded() ) DoCollapse( p, true );
4833 else DoExpand( p, true );
4834 }
4835
2e2e62de 4836 // Do not Skip() the event after selection has been made.
4c51a665 4837 // Otherwise default event handling behaviour kicks in
2e2e62de
JS
4838 // and may revert focus back to the main canvas.
4839 res = true;
1c4293cb
VZ
4840 }
4841 else
4842 {
4843 // click on splitter
4844 if ( !(m_windowStyle & wxPG_STATIC_SPLITTER) )
4845 {
4846 if ( event.GetEventType() == wxEVT_LEFT_DCLICK )
4847 {
4848 // Double-clicking the splitter causes auto-centering
f5254768
JS
4849 if ( m_pState->GetColumnCount() <= 2 )
4850 {
76733d4c 4851 ResetColumnSizes( true );
f5254768
JS
4852
4853 SendEvent(wxEVT_PG_COL_DRAGGING,
4854 m_propHover,
4855 NULL,
4856 wxPG_SEL_NOVALIDATE,
4857 (unsigned int)m_draggedSplitter);
4858 }
1c4293cb
VZ
4859 }
4860 else if ( m_dragStatus == 0 )
4861 {
58935d4a
JS
4862 //
4863 // Begin draggin the splitter
4864 //
4865
4866 // send event
4867 DoEndLabelEdit(true, wxPG_SEL_NOVALIDATE);
4868
5405bfb4
JS
4869 // Allow application to veto dragging
4870 if ( !SendEvent(wxEVT_PG_COL_BEGIN_DRAG,
4871 p, NULL, 0,
4872 (unsigned int)splitterHit) )
1c4293cb 4873 {
5405bfb4
JS
4874 if ( m_wndEditor )
4875 {
4876 // Changes must be committed here or the
4877 // value won't be drawn correctly
4878 if ( !CommitChangesFromEditor() )
4879 return res;
1c4293cb 4880
5405bfb4
JS
4881 m_wndEditor->Show ( false );
4882 }
1c4293cb 4883
5405bfb4
JS
4884 if ( !(m_iFlags & wxPG_FL_MOUSE_CAPTURED) )
4885 {
4886 CaptureMouse();
4887 m_iFlags |= wxPG_FL_MOUSE_CAPTURED;
4888 }
1c4293cb 4889
5405bfb4
JS
4890 m_dragStatus = 1;
4891 m_draggedSplitter = splitterHit;
4892 m_dragOffset = splitterHitOffset;
1c4293cb 4893
5405bfb4
JS
4894 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4895 // Fixes button disappearance bug
4896 if ( m_wndEditor2 )
4897 m_wndEditor2->Show ( false );
4898 #endif
1c4293cb 4899
5405bfb4
JS
4900 m_startingSplitterX = x - splitterHitOffset;
4901 }
1c4293cb
VZ
4902 }
4903 }
4904 }
4905 }
4906 else
4907 {
4908 // Click on margin.
4909 if ( p->GetChildCount() )
4910 {
4911 int nx = x + m_marginWidth - marginEnds; // Normalize x.
4912
0a327b9c
JS
4913 // Fine tune cell button x
4914 if ( !p->IsCategory() )
4915 nx -= IN_CELL_EXPANDER_BUTTON_X_ADJUST;
4916
1c4293cb
VZ
4917 if ( (nx >= m_gutterWidth && nx < (m_gutterWidth+m_iconWidth)) )
4918 {
4919 int y2 = y % m_lineHeight;
4920 if ( (y2 >= m_buttonSpacingY && y2 < (m_buttonSpacingY+m_iconHeight)) )
4921 {
4922 // On click on expander button, expand/collapse
4923 if ( ((wxPGProperty*)p)->IsExpanded() )
4924 DoCollapse( p, true );
4925 else
4926 DoExpand( p, true );
4927 }
4928 }
4929 }
4930 }
4931 }
4932 return res;
4933}
4934
4935// -----------------------------------------------------------------------
4936
fc72fab6
JS
4937bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x),
4938 unsigned int WXUNUSED(y),
4939 wxMouseEvent& event )
1c4293cb
VZ
4940{
4941 if ( m_propHover )
4942 {
4943 // Select property here as well
4944 wxPGProperty* p = m_propHover;
58935d4a 4945 AddToSelectionFromInputEvent(p, m_colHover, &event);
1c4293cb
VZ
4946
4947 // Send right click event.
4948 SendEvent( wxEVT_PG_RIGHT_CLICK, p );
4949
4950 return true;
4951 }
4952 return false;
4953}
4954
4955// -----------------------------------------------------------------------
4956
fc72fab6
JS
4957bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x),
4958 unsigned int WXUNUSED(y),
4959 wxMouseEvent& event )
1c4293cb
VZ
4960{
4961 if ( m_propHover )
4962 {
4963 // Select property here as well
4964 wxPGProperty* p = m_propHover;
4965
58935d4a 4966 AddToSelectionFromInputEvent(p, m_colHover, &event);
1c4293cb
VZ
4967
4968 // Send double-click event.
4969 SendEvent( wxEVT_PG_DOUBLE_CLICK, m_propHover );
4970
4971 return true;
4972 }
4973 return false;
4974}
4975
4976// -----------------------------------------------------------------------
4977
1c4293cb 4978// Return false if should be skipped
39e4e221
JS
4979bool wxPropertyGrid::HandleMouseMove( int x, unsigned int y,
4980 wxMouseEvent &event )
1c4293cb
VZ
4981{
4982 // Safety check (needed because mouse capturing may
4983 // otherwise freeze the control)
4984 if ( m_dragStatus > 0 && !event.Dragging() )
4985 {
39e4e221 4986 HandleMouseUp(x, y, event);
1c4293cb
VZ
4987 }
4988
4989 wxPropertyGridPageState* state = m_pState;
4990 int splitterHit;
4991 int splitterHitOffset;
4992 int columnHit = state->HitTestH( x, &splitterHit, &splitterHitOffset );
4993 int splitterX = x - splitterHitOffset;
4994
58935d4a
JS
4995 m_colHover = columnHit;
4996
1c4293cb
VZ
4997 if ( m_dragStatus > 0 )
4998 {
4999 if ( x > (m_marginWidth + wxPG_DRAG_MARGIN) &&
5000 x < (m_pState->m_width - wxPG_DRAG_MARGIN) )
5001 {
5002
5003 int newSplitterX = x - m_dragOffset;
1c4293cb
VZ
5004
5005 // Splitter redraw required?
5006 if ( newSplitterX != splitterX )
5007 {
5008 // Move everything
f5254768
JS
5009 DoSetSplitterPosition(newSplitterX,
5010 m_draggedSplitter,
5011 wxPG_SPLITTER_REFRESH |
5012 wxPG_SPLITTER_FROM_EVENT);
5405bfb4
JS
5013
5014 SendEvent(wxEVT_PG_COL_DRAGGING,
5015 m_propHover,
5016 NULL,
5017 wxPG_SEL_NOVALIDATE,
5018 (unsigned int)m_draggedSplitter);
1c4293cb
VZ
5019 }
5020
5021 m_dragStatus = 2;
5022 }
5023
5024 return false;
5025 }
5026 else
5027 {
5028
5029 int ih = m_lineHeight;
5030 int sy = y;
5031
5032 #if wxPG_SUPPORT_TOOLTIPS
5033 wxPGProperty* prevHover = m_propHover;
5034 unsigned char prevSide = m_mouseSide;
5035 #endif
5036 int curPropHoverY = y - (y % ih);
5037
5038 // On which item it hovers
b7bc9d80 5039 if ( !m_propHover
1c4293cb 5040 ||
b7bc9d80 5041 ( sy < m_propHoverY || sy >= (m_propHoverY+ih) )
1c4293cb
VZ
5042 )
5043 {
5044 // Mouse moves on another property
5045
5046 m_propHover = DoGetItemAtY(y);
5047 m_propHoverY = curPropHoverY;
5048
5049 // Send hover event
5050 SendEvent( wxEVT_PG_HIGHLIGHTED, m_propHover );
5051 }
5052
5053 #if wxPG_SUPPORT_TOOLTIPS
5054 // Store which side we are on
5055 m_mouseSide = 0;
5056 if ( columnHit == 1 )
5057 m_mouseSide = 2;
5058 else if ( columnHit == 0 )
5059 m_mouseSide = 1;
5060
5061 //
5062 // If tooltips are enabled, show label or value as a tip
5063 // in case it doesn't otherwise show in full length.
5064 //
5065 if ( m_windowStyle & wxPG_TOOLTIPS )
5066 {
1c4293cb
VZ
5067 if ( m_propHover != prevHover || prevSide != m_mouseSide )
5068 {
5069 if ( m_propHover && !m_propHover->IsCategory() )
5070 {
5071
5072 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS )
5073 {
5074 // Show help string as a tooltip
5075 wxString tipString = m_propHover->GetHelpString();
5076
5077 SetToolTip(tipString);
5078 }
5079 else
5080 {
5081 // Show cropped value string as a tooltip
5082 wxString tipString;
5083 int space = 0;
5084
5085 if ( m_mouseSide == 1 )
5086 {
5087 tipString = m_propHover->m_label;
5088 space = splitterX-m_marginWidth-3;
5089 }
5090 else if ( m_mouseSide == 2 )
5091 {
5092 tipString = m_propHover->GetDisplayedString();
5093
5094 space = m_width - splitterX;
5095 if ( m_propHover->m_flags & wxPG_PROP_CUSTOMIMAGE )
39e4e221
JS
5096 space -= wxPG_CUSTOM_IMAGE_WIDTH +
5097 wxCC_CUSTOM_IMAGE_MARGIN1 +
5098 wxCC_CUSTOM_IMAGE_MARGIN2;
1c4293cb
VZ
5099 }
5100
5101 if ( space )
5102 {
5103 int tw, th;
657a8a35 5104 GetTextExtent( tipString, &tw, &th, 0, 0 );
1c4293cb 5105 if ( tw > space )
1c4293cb 5106 SetToolTip( tipString );
1c4293cb
VZ
5107 }
5108 else
5109 {
c27615f5 5110 SetToolTip( m_emptyString );
1c4293cb
VZ
5111 }
5112
5113 }
5114 }
5115 else
5116 {
c27615f5 5117 SetToolTip( m_emptyString );
1c4293cb
VZ
5118 }
5119 }
5120 }
5121 #endif
5122
5123 if ( splitterHit == -1 ||
5124 !m_propHover ||
5125 HasFlag(wxPG_STATIC_SPLITTER) )
5126 {
5127 // hovering on something else
5128 if ( m_curcursor != wxCURSOR_ARROW )
5129 CustomSetCursor( wxCURSOR_ARROW );
5130 }
5131 else
5132 {
5133 // Do not allow splitter cursor on caption items.
5134 // (also not if we were dragging and its started
5135 // outside the splitter region)
5136
b7bc9d80 5137 if ( !m_propHover->IsCategory() &&
1c4293cb
VZ
5138 !event.Dragging() )
5139 {
5140
5141 // hovering on splitter
5142
39e4e221
JS
5143 // NB: Condition disabled since MouseLeave event (from the
5144 // editor control) cannot be reliably detected.
1c4293cb
VZ
5145 //if ( m_curcursor != wxCURSOR_SIZEWE )
5146 CustomSetCursor( wxCURSOR_SIZEWE, true );
5147
5148 return false;
5149 }
5150 else
5151 {
5152 // hovering on something else
5153 if ( m_curcursor != wxCURSOR_ARROW )
5154 CustomSetCursor( wxCURSOR_ARROW );
5155 }
5156 }
fc72fab6
JS
5157
5158 //
5159 // Multi select by dragging
5160 //
169dc975 5161 if ( (GetExtraStyle() & wxPG_EX_MULTIPLE_SELECTION) &&
fc72fab6
JS
5162 event.LeftIsDown() &&
5163 m_propHover &&
5164 GetSelection() &&
37e188ea 5165 columnHit != 1 &&
fc72fab6
JS
5166 !state->DoIsPropertySelected(m_propHover) )
5167 {
169dc975
JS
5168 // Additional requirement is that the hovered property
5169 // is adjacent to edges of selection.
5170 const wxArrayPGProperty& selection = GetSelectedProperties();
5171
5172 // Since categories cannot be selected along with 'other'
5173 // properties, exclude them from iterator flags.
5174 int iterFlags = wxPG_ITERATE_VISIBLE & (~wxPG_PROP_CATEGORY);
5175
5176 for ( int i=(selection.size()-1); i>=0; i-- )
5177 {
5178 // TODO: This could be optimized by keeping track of
5179 // which properties are at the edges of selection.
5180 wxPGProperty* selProp = selection[i];
5181 if ( state->ArePropertiesAdjacent(m_propHover, selProp,
5182 iterFlags) )
5183 {
5184 DoAddToSelection(m_propHover);
5185 break;
5186 }
5187 }
fc72fab6 5188 }
1c4293cb
VZ
5189 }
5190 return true;
5191}
5192
5193// -----------------------------------------------------------------------
5194
5195// Also handles Leaving event
5196bool wxPropertyGrid::HandleMouseUp( int x, unsigned int WXUNUSED(y),
5197 wxMouseEvent &WXUNUSED(event) )
5198{
5199 wxPropertyGridPageState* state = m_pState;
5200 bool res = false;
5201
5202 int splitterHit;
5203 int splitterHitOffset;
5204 state->HitTestH( x, &splitterHit, &splitterHitOffset );
5205
5206 // No event type check - basicly calling this method should
5207 // just stop dragging.
5208 // Left up after dragged?
5209 if ( m_dragStatus >= 1 )
5210 {
5211 //
5212 // End Splitter Dragging
5213 //
5214 // DO NOT ENABLE FOLLOWING LINE!
5215 // (it is only here as a reminder to not to do it)
5216 //splitterX = x;
5217
5405bfb4
JS
5218 SendEvent(wxEVT_PG_COL_END_DRAG,
5219 m_propHover,
5220 NULL,
5221 wxPG_SEL_NOVALIDATE,
5222 (unsigned int)m_draggedSplitter);
5223
76733d4c
JS
5224 // Disable splitter auto-centering (but only if moved any -
5225 // otherwise we end up disabling auto-center even after a
5226 // recentering double-click).
ce00f59b 5227 int posDiff = abs(m_startingSplitterX -
76733d4c
JS
5228 GetSplitterPosition(m_draggedSplitter));
5229
5230 if ( posDiff > 1 )
5231 state->m_dontCenterSplitter = true;
1c4293cb
VZ
5232
5233 // This is necessary to return cursor
5234 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED )
5235 {
39e4e221 5236 ReleaseMouse();
1c4293cb
VZ
5237 m_iFlags &= ~(wxPG_FL_MOUSE_CAPTURED);
5238 }
5239
5240 // Set back the default cursor, if necessary
5241 if ( splitterHit == -1 ||
5242 !m_propHover )
5243 {
5244 CustomSetCursor( wxCURSOR_ARROW );
5245 }
5246
5247 m_dragStatus = 0;
5248
5249 // Control background needs to be cleared
fc72fab6
JS
5250 wxPGProperty* selected = GetSelection();
5251 if ( !(m_iFlags & wxPG_FL_PRIMARY_FILLS_ENTIRE) && selected )
5252 DrawItem( selected );
1c4293cb
VZ
5253
5254 if ( m_wndEditor )
5255 {
5256 m_wndEditor->Show ( true );
5257 }
5258
5259 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
5260 // Fixes button disappearance bug
5261 if ( m_wndEditor2 )
5262 m_wndEditor2->Show ( true );
5263 #endif
5264
5265 // This clears the focus.
5266 m_editorFocused = 0;
5267
5268 }
5269 return res;
5270}
5271
5272// -----------------------------------------------------------------------
5273
5274bool wxPropertyGrid::OnMouseCommon( wxMouseEvent& event, int* px, int* py )
5275{
5276 int splitterX = GetSplitterPosition();
5277
39e4e221
JS
5278 int ux, uy;
5279 CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
1c4293cb 5280
0fd5c401 5281 wxWindow* wnd = GetEditorControl();
1c4293cb
VZ
5282
5283 // Hide popup on clicks
5284 if ( event.GetEventType() != wxEVT_MOTION )
5285 if ( wnd && wnd->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)) )
5286 {
0fd5c401 5287 ((wxOwnerDrawnComboBox*)wnd)->HidePopup();
1c4293cb
VZ
5288 }
5289
5290 wxRect r;
5291 if ( wnd )
5292 r = wnd->GetRect();
d3b9f782 5293 if ( wnd == NULL || m_dragStatus ||
1c4293cb
VZ
5294 (
5295 ux <= (splitterX + wxPG_SPLITTERX_DETECTMARGIN2) ||
5296 ux >= (r.x+r.width) ||
5297 event.m_y < r.y ||
5298 event.m_y >= (r.y+r.height)
5299 )
5300 )
5301 {
5302 *px = ux;
5303 *py = uy;
5304 return true;
5305 }
5306 else
5307 {
5308 if ( m_curcursor != wxCURSOR_ARROW ) CustomSetCursor ( wxCURSOR_ARROW );
5309 }
5310 return false;
5311}
5312
5313// -----------------------------------------------------------------------
5314
5315void wxPropertyGrid::OnMouseClick( wxMouseEvent &event )
5316{
5317 int x, y;
5318 if ( OnMouseCommon( event, &x, &y ) )
5319 {
2e2e62de
JS
5320 if ( !HandleMouseClick(x, y, event) )
5321 event.Skip();
5322 }
5323 else
5324 {
5325 event.Skip();
1c4293cb 5326 }
1c4293cb
VZ
5327}
5328
5329// -----------------------------------------------------------------------
5330
5331void wxPropertyGrid::OnMouseRightClick( wxMouseEvent &event )
5332{
5333 int x, y;
5334 CalcUnscrolledPosition( event.m_x, event.m_y, &x, &y );
5335 HandleMouseRightClick(x,y,event);
5336 event.Skip();
5337}
5338
5339// -----------------------------------------------------------------------
5340
5341void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent &event )
5342{
5343 // Always run standard mouse-down handler as well
5344 OnMouseClick(event);
5345
5346 int x, y;
5347 CalcUnscrolledPosition( event.m_x, event.m_y, &x, &y );
5348 HandleMouseDoubleClick(x,y,event);
2e2e62de
JS
5349
5350 // Do not Skip() event here - OnMouseClick() call above
5351 // should have already taken care of it.
1c4293cb
VZ
5352}
5353
5354// -----------------------------------------------------------------------
5355
5356void wxPropertyGrid::OnMouseMove( wxMouseEvent &event )
5357{
5358 int x, y;
5359 if ( OnMouseCommon( event, &x, &y ) )
5360 {
5361 HandleMouseMove(x,y,event);
5362 }
5363 event.Skip();
5364}
5365
5366// -----------------------------------------------------------------------
5367
1c4293cb
VZ
5368void wxPropertyGrid::OnMouseUp( wxMouseEvent &event )
5369{
5370 int x, y;
5371 if ( OnMouseCommon( event, &x, &y ) )
5372 {
2e2e62de
JS
5373 if ( !HandleMouseUp(x, y, event) )
5374 event.Skip();
5375 }
5376 else
5377 {
5378 event.Skip();
1c4293cb 5379 }
1c4293cb
VZ
5380}
5381
5382// -----------------------------------------------------------------------
5383
5384void wxPropertyGrid::OnMouseEntry( wxMouseEvent &event )
5385{
5386 // This may get called from child control as well, so event's
5387 // mouse position cannot be relied on.
5388
5389 if ( event.Entering() )
5390 {
5391 if ( !(m_iFlags & wxPG_FL_MOUSE_INSIDE) )
5392 {
5393 // TODO: Fix this (detect parent and only do
5394 // cursor trick if it is a manager).
5395 wxASSERT( GetParent() );
5396 GetParent()->SetCursor(wxNullCursor);
5397
5398 m_iFlags |= wxPG_FL_MOUSE_INSIDE;
5399 }
5400 else
5401 GetParent()->SetCursor(wxNullCursor);
5402 }
5403 else if ( event.Leaving() )
5404 {
5405 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
39e4e221 5406 SetCursor( wxNullCursor );
1c4293cb
VZ
5407
5408 // Get real cursor position
5409 wxPoint pt = ScreenToClient(::wxGetMousePosition());
5410
5411 if ( ( pt.x <= 0 || pt.y <= 0 || pt.x >= m_width || pt.y >= m_height ) )
5412 {
5413 {
5414 if ( (m_iFlags & wxPG_FL_MOUSE_INSIDE) )
5415 {
5416 m_iFlags &= ~(wxPG_FL_MOUSE_INSIDE);
5417 }
5418
5419 if ( m_dragStatus )
5420 wxPropertyGrid::HandleMouseUp ( -1, 10000, event );
5421 }
5422 }
5423 }
5424
5425 event.Skip();
5426}
5427
5428// -----------------------------------------------------------------------
5429
5430// Common code used by various OnMouseXXXChild methods.
5431bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent &event, int* px, int *py )
5432{
5433 wxWindow* topCtrlWnd = (wxWindow*)event.GetEventObject();
5434 wxASSERT( topCtrlWnd );
5435 int x, y;
5436 event.GetPosition(&x,&y);
5437
1c4293cb
VZ
5438 int splitterX = GetSplitterPosition();
5439
5440 wxRect r = topCtrlWnd->GetRect();
5441 if ( !m_dragStatus &&
5442 x > (splitterX-r.x+wxPG_SPLITTERX_DETECTMARGIN2) &&
5443 y >= 0 && y < r.height \
5444 )
5445 {
5446 if ( m_curcursor != wxCURSOR_ARROW ) CustomSetCursor ( wxCURSOR_ARROW );
5447 event.Skip();
5448 }
5449 else
5450 {
5451 CalcUnscrolledPosition( event.m_x + r.x, event.m_y + r.y, \
5452 px, py );
5453 return true;
5454 }
5455 return false;
5456}
5457
5458void wxPropertyGrid::OnMouseClickChild( wxMouseEvent &event )
5459{
5460 int x,y;
5461 if ( OnMouseChildCommon(event,&x,&y) )
5462 {
5463 bool res = HandleMouseClick(x,y,event);
5464 if ( !res ) event.Skip();
5465 }
5466}
5467
5468void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent &event )
5469{
5470 int x,y;
5471 wxASSERT( m_wndEditor );
5472 // These coords may not be exact (about +-2),
5473 // but that should not matter (right click is about item, not position).
5474 wxPoint pt = m_wndEditor->GetPosition();
5475 CalcUnscrolledPosition( event.m_x + pt.x, event.m_y + pt.y, &x, &y );
fc72fab6
JS
5476
5477 // FIXME: Used to set m_propHover to selection here. Was it really
5478 // necessary?
5479
1c4293cb
VZ
5480 bool res = HandleMouseRightClick(x,y,event);
5481 if ( !res ) event.Skip();
5482}
5483
5484void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent &event )
5485{
5486 int x,y;
5487 if ( OnMouseChildCommon(event,&x,&y) )
5488 {
5489 bool res = HandleMouseMove(x,y,event);
5490 if ( !res ) event.Skip();
5491 }
5492}
5493
5494void wxPropertyGrid::OnMouseUpChild( wxMouseEvent &event )
5495{
5496 int x,y;
5497 if ( OnMouseChildCommon(event,&x,&y) )
5498 {
5499 bool res = HandleMouseUp(x,y,event);
5500 if ( !res ) event.Skip();
5501 }
5502}
5503
5504// -----------------------------------------------------------------------
5505// wxPropertyGrid keyboard event handling
5506// -----------------------------------------------------------------------
5507
1c4293cb
VZ
5508int wxPropertyGrid::KeyEventToActions(wxKeyEvent &event, int* pSecond) const
5509{
5510 // Translates wxKeyEvent to wxPG_ACTION_XXX
5511
5512 int keycode = event.GetKeyCode();
5513 int modifiers = event.GetModifiers();
5514
5515 wxASSERT( !(modifiers&~(0xFFFF)) );
5516
5517 int hashMapKey = (keycode & 0xFFFF) | ((modifiers & 0xFFFF) << 16);
5518
5519 wxPGHashMapI2I::const_iterator it = m_actionTriggers.find(hashMapKey);
5520
5521 if ( it == m_actionTriggers.end() )
5522 return 0;
5523
5524 if ( pSecond )
5525 {
5526 int second = (it->second>>16) & 0xFFFF;
5527 *pSecond = second;
5528 }
5529
5530 return (it->second & 0xFFFF);
5531}
5532
5533void wxPropertyGrid::AddActionTrigger( int action, int keycode, int modifiers )
5534{
5535 wxASSERT( !(modifiers&~(0xFFFF)) );
5536
5537 int hashMapKey = (keycode & 0xFFFF) | ((modifiers & 0xFFFF) << 16);
5538
5539 wxPGHashMapI2I::iterator it = m_actionTriggers.find(hashMapKey);
5540
5541 if ( it != m_actionTriggers.end() )
5542 {
5543 // This key combination is already used
5544
5545 // Can add secondary?
5546 wxASSERT_MSG( !(it->second&~(0xFFFF)),
5547 wxT("You can only add up to two separate actions per key combination.") );
5548
5549 action = it->second | (action<<16);
5550 }
5551
5552 m_actionTriggers[hashMapKey] = action;
5553}
5554
5555void wxPropertyGrid::ClearActionTriggers( int action )
5556{
5557 wxPGHashMapI2I::iterator it;
36a2b429 5558 bool didSomething;
1c4293cb 5559
36a2b429 5560 do
1c4293cb 5561 {
36a2b429
JS
5562 didSomething = false;
5563
5564 for ( it = m_actionTriggers.begin();
5565 it != m_actionTriggers.end();
5566 it++ )
1c4293cb 5567 {
36a2b429
JS
5568 if ( it->second == action )
5569 {
5570 m_actionTriggers.erase(it);
5571 didSomething = true;
5572 break;
5573 }
1c4293cb
VZ
5574 }
5575 }
36a2b429 5576 while ( didSomething );
1c4293cb
VZ
5577}
5578
68f9e025 5579void wxPropertyGrid::HandleKeyEvent( wxKeyEvent &event, bool fromChild )
1c4293cb
VZ
5580{
5581 //
5582 // Handles key event when editor control is not focused.
5583 //
5584
b7bc9d80 5585 wxCHECK2(!m_frozen, return);
1c4293cb
VZ
5586
5587 // Travelsal between items, collapsing/expanding, etc.
fc72fab6 5588 wxPGProperty* selected = GetSelection();
1c4293cb 5589 int keycode = event.GetKeyCode();
68f9e025 5590 bool editorFocused = IsEditorFocused();
1c4293cb
VZ
5591
5592 if ( keycode == WXK_TAB )
5593 {
b50e81c6
JS
5594 wxWindow* mainControl;
5595
5596 if ( HasInternalFlag(wxPG_FL_IN_MANAGER) )
5597 mainControl = GetParent();
5598 else
5599 mainControl = this;
5600
68f9e025
JS
5601 if ( !event.ShiftDown() )
5602 {
5603 if ( !editorFocused && m_wndEditor )
b50e81c6 5604 {
fc72fab6 5605 DoSelectProperty( selected, wxPG_SEL_FOCUS );
b50e81c6 5606 }
68f9e025 5607 else
b50e81c6
JS
5608 {
5609 // Tab traversal workaround for platforms on which
5610 // wxWindow::Navigate() may navigate into first child
5611 // instead of next sibling. Does not work perfectly
5612 // in every scenario (for instance, when property grid
5613 // is either first or last control).
5614 #if defined(__WXGTK__)
5615 wxWindow* sibling = mainControl->GetNextSibling();
5616 if ( sibling )
5617 sibling->SetFocusFromKbd();
5618 #else
68f9e025 5619 Navigate(wxNavigationKeyEvent::IsForward);
b50e81c6
JS
5620 #endif
5621 }
68f9e025
JS
5622 }
5623 else
5624 {
5625 if ( editorFocused )
b50e81c6 5626 {
68f9e025 5627 UnfocusEditor();
b50e81c6 5628 }
68f9e025 5629 else
b50e81c6
JS
5630 {
5631 #if defined(__WXGTK__)
5632 wxWindow* sibling = mainControl->GetPrevSibling();
5633 if ( sibling )
5634 sibling->SetFocusFromKbd();
5635 #else
68f9e025 5636 Navigate(wxNavigationKeyEvent::IsBackward);
b50e81c6
JS
5637 #endif
5638 }
68f9e025
JS
5639 }
5640
1c4293cb
VZ
5641 return;
5642 }
5643
5644 // Ignore Alt and Control when they are down alone
5645 if ( keycode == WXK_ALT ||
5646 keycode == WXK_CONTROL )
5647 {
5648 event.Skip();
5649 return;
5650 }
5651
5652 int secondAction;
5653 int action = KeyEventToActions(event, &secondAction);
5654
68f9e025 5655 if ( editorFocused && action == wxPG_ACTION_CANCEL_EDIT )
1c4293cb 5656 {
68f9e025
JS
5657 //
5658 // Esc cancels any changes
5659 if ( IsEditorsValueModified() )
5660 {
5661 EditorsValueWasNotModified();
1c4293cb 5662
68f9e025 5663 // Update the control as well
fc72fab6
JS
5664 selected->GetEditorClass()->
5665 SetControlStringValue( selected,
5666 GetEditorControl(),
5667 selected->GetDisplayedString() );
68f9e025
JS
5668 }
5669
fc72fab6 5670 OnValidationFailureReset(selected);
68f9e025
JS
5671
5672 UnfocusEditor();
5673 return;
5674 }
5675
8d2c7041
JS
5676 // Except for TAB, ESC, and any keys specifically dedicated to
5677 // wxPropertyGrid itself, handle child control events in child control.
5678 if ( fromChild &&
5679 wxPGFindInVector(m_dedicatedKeys, keycode) == wxNOT_FOUND )
4d11369d 5680 {
c12822fe
JS
5681 // Only propagate event if it had modifiers
5682 if ( !event.HasModifiers() )
5683 {
5684 event.StopPropagation();
5685 }
4d11369d 5686 event.Skip();
68f9e025 5687 return;
4d11369d
JS
5688 }
5689
5690 bool wasHandled = false;
68f9e025 5691
fc72fab6 5692 if ( selected )
68f9e025 5693 {
1c4293cb 5694 // Show dialog?
1766bf34 5695 if ( ButtonTriggerKeyTest(action, event) )
1c4293cb
VZ
5696 return;
5697
fc72fab6 5698 wxPGProperty* p = selected;
1c4293cb 5699
abbd88b5
JS
5700 if ( action == wxPG_ACTION_EDIT && !editorFocused )
5701 {
5702 DoSelectProperty( p, wxPG_SEL_FOCUS );
5703 wasHandled = true;
5704 }
5705
174b59ac
JS
5706 // Travel and expand/collapse
5707 int selectDir = -2;
5708
48f0334d 5709 if ( p->GetChildCount() )
1c4293cb 5710 {
174b59ac
JS
5711 if ( action == wxPG_ACTION_COLLAPSE_PROPERTY || secondAction == wxPG_ACTION_COLLAPSE_PROPERTY )
5712 {
5713 if ( (m_windowStyle & wxPG_HIDE_MARGIN) || Collapse(p) )
4d11369d 5714 wasHandled = true;
174b59ac
JS
5715 }
5716 else if ( action == wxPG_ACTION_EXPAND_PROPERTY || secondAction == wxPG_ACTION_EXPAND_PROPERTY )
5717 {
5718 if ( (m_windowStyle & wxPG_HIDE_MARGIN) || Expand(p) )
4d11369d 5719 wasHandled = true;
174b59ac 5720 }
1c4293cb 5721 }
1c4293cb 5722
4d11369d 5723 if ( !wasHandled )
174b59ac
JS
5724 {
5725 if ( action == wxPG_ACTION_PREV_PROPERTY || secondAction == wxPG_ACTION_PREV_PROPERTY )
1c4293cb 5726 {
174b59ac 5727 selectDir = -1;
1c4293cb 5728 }
174b59ac 5729 else if ( action == wxPG_ACTION_NEXT_PROPERTY || secondAction == wxPG_ACTION_NEXT_PROPERTY )
1c4293cb 5730 {
174b59ac 5731 selectDir = 1;
1c4293cb 5732 }
174b59ac
JS
5733 }
5734
5735 if ( selectDir >= -1 )
5736 {
5737 p = wxPropertyGridIterator::OneStep( m_pState, wxPG_ITERATE_VISIBLE, p, selectDir );
5738 if ( p )
8d2c7041 5739 {
8d2c7041 5740 int selFlags = 0;
372d0bdd
JS
5741 int reopenLabelEditorCol = -1;
5742
8d2c7041 5743 if ( editorFocused )
372d0bdd
JS
5744 {
5745 // If editor was focused, then make the next editor
5746 // focused as well
8d2c7041 5747 selFlags |= wxPG_SEL_FOCUS;
372d0bdd
JS
5748 }
5749 else
5750 {
5751 // Also maintain the same label editor focus state
5752 if ( m_labelEditor )
5753 reopenLabelEditorCol = m_selColumn;
5754 }
5755
8d2c7041 5756 DoSelectProperty(p, selFlags);
372d0bdd
JS
5757
5758 if ( reopenLabelEditorCol >= 0 )
5759 DoBeginLabelEdit(reopenLabelEditorCol);
8d2c7041 5760 }
4d11369d 5761 wasHandled = true;
1c4293cb
VZ
5762 }
5763 }
5764 else
5765 {
5766 // If nothing was selected, select the first item now
5767 // (or navigate out of tab).
5768 if ( action != wxPG_ACTION_CANCEL_EDIT && secondAction != wxPG_ACTION_CANCEL_EDIT )
5769 {
5770 wxPGProperty* p = wxPropertyGridInterface::GetFirst();
5771 if ( p ) DoSelectProperty(p);
4d11369d 5772 wasHandled = true;
1c4293cb
VZ
5773 }
5774 }
4d11369d
JS
5775
5776 if ( !wasHandled )
5777 event.Skip();
1c4293cb
VZ
5778}
5779
5780// -----------------------------------------------------------------------
5781
1c4293cb
VZ
5782void wxPropertyGrid::OnKey( wxKeyEvent &event )
5783{
c12822fe
JS
5784 // If there was editor open and focused, then this event should not
5785 // really be processed here.
5786 if ( IsEditorFocused() )
5787 {
5788 // However, if event had modifiers, it is probably still best
5789 // to skip it.
5790 if ( event.HasModifiers() )
5791 event.Skip();
5792 else
5793 event.StopPropagation();
5794 return;
5795 }
5796
68f9e025 5797 HandleKeyEvent(event, false);
1c4293cb
VZ
5798}
5799
5800// -----------------------------------------------------------------------
5801
1766bf34 5802bool wxPropertyGrid::ButtonTriggerKeyTest( int action, wxKeyEvent& event )
1c4293cb 5803{
1766bf34
JS
5804 if ( action == -1 )
5805 {
5806 int secondAction;
5807 action = KeyEventToActions(event, &secondAction);
5808 }
1c4293cb
VZ
5809
5810 // Does the keycode trigger button?
1766bf34
JS
5811 if ( action == wxPG_ACTION_PRESS_BUTTON &&
5812 m_wndEditor2 )
1c4293cb 5813 {
1766bf34 5814 wxCommandEvent evt(wxEVT_COMMAND_BUTTON_CLICKED, m_wndEditor2->GetId());
1c4293cb
VZ
5815 GetEventHandler()->AddPendingEvent(evt);
5816 return true;
5817 }
5818
5819 return false;
5820}
5821
5822// -----------------------------------------------------------------------
5823
5824void wxPropertyGrid::OnChildKeyDown( wxKeyEvent &event )
5825{
68f9e025 5826 HandleKeyEvent(event, true);
1c4293cb
VZ
5827}
5828
5829// -----------------------------------------------------------------------
5830// wxPropertyGrid miscellaneous event handling
5831// -----------------------------------------------------------------------
5832
5833void wxPropertyGrid::OnIdle( wxIdleEvent& WXUNUSED(event) )
5834{
5835 //
5836 // Check if the focus is in this control or one of its children
5837 wxWindow* newFocused = wxWindow::FindFocus();
5838
5839 if ( newFocused != m_curFocused )
5840 HandleFocusChange( newFocused );
6edd8829
JS
5841
5842 //
5843 // Check if top-level parent has changed
08c1613f 5844 if ( GetExtraStyle() & wxPG_EX_ENABLE_TLP_TRACKING )
6edd8829 5845 {
08c1613f
JS
5846 wxWindow* tlp = ::wxGetTopLevelParent(this);
5847 if ( tlp != m_tlp )
5848 OnTLPChanging(tlp);
6edd8829 5849 }
f231df8a
JS
5850
5851 //
5852 // Resolve pending property removals
5853 if ( m_deletedProperties.size() > 0 )
5854 {
5855 wxArrayPGProperty& arr = m_deletedProperties;
5856 for ( unsigned int i=0; i<arr.size(); i++ )
5857 {
5858 DeleteProperty(arr[i]);
5859 }
5860 arr.clear();
5861 }
5862 if ( m_removedProperties.size() > 0 )
5863 {
5864 wxArrayPGProperty& arr = m_removedProperties;
5865 for ( unsigned int i=0; i<arr.size(); i++ )
5866 {
5867 RemoveProperty(arr[i]);
5868 }
5869 arr.clear();
5870 }
1c4293cb
VZ
5871}
5872
68f9e025
JS
5873bool wxPropertyGrid::IsEditorFocused() const
5874{
5875 wxWindow* focus = wxWindow::FindFocus();
5876
5877 if ( focus == m_wndEditor || focus == m_wndEditor2 ||
5878 focus == GetEditorControl() )
5879 return true;
5880
5881 return false;
5882}
5883
1c4293cb
VZ
5884// Called by focus event handlers. newFocused is the window that becomes focused.
5885void wxPropertyGrid::HandleFocusChange( wxWindow* newFocused )
5886{
f18b71b0
JS
5887 //
5888 // Never allow focus to be changed when handling editor event.
5889 // Especially because they may be displaing a dialog which
5890 // could cause all kinds of weird (native) focus changes.
5891 if ( HasInternalFlag(wxPG_FL_IN_HANDLECUSTOMEDITOREVENT) )
5892 return;
5893
1c4293cb 5894 unsigned int oldFlags = m_iFlags;
bc0f2534
JS
5895 bool wasEditorFocused = false;
5896 wxWindow* wndEditor = m_wndEditor;
1c4293cb
VZ
5897
5898 m_iFlags &= ~(wxPG_FL_FOCUSED);
5899
5900 wxWindow* parent = newFocused;
5901
5902 // This must be one of nextFocus' parents.
5903 while ( parent )
5904 {
bc0f2534
JS
5905 if ( parent == wndEditor )
5906 {
5907 wasEditorFocused = true;
5908 }
1c4293cb
VZ
5909 // Use m_eventObject, which is either wxPropertyGrid or
5910 // wxPropertyGridManager, as appropriate.
bc0f2534 5911 else if ( parent == m_eventObject )
1c4293cb
VZ
5912 {
5913 m_iFlags |= wxPG_FL_FOCUSED;
5914 break;
5915 }
5916 parent = parent->GetParent();
5917 }
5918
bc0f2534
JS
5919 // Notify editor control when it receives a focus
5920 if ( wasEditorFocused && m_curFocused != newFocused )
5921 {
5922 wxPGProperty* p = GetSelection();
5923 if ( p )
5924 {
5925 const wxPGEditor* editor = p->GetEditorClass();
d5df4df9 5926 ResetEditorAppearance();
bc0f2534
JS
5927 editor->OnFocus(p, GetEditorControl());
5928 }
5929 }
5930
1c4293cb
VZ
5931 m_curFocused = newFocused;
5932
5933 if ( (m_iFlags & wxPG_FL_FOCUSED) !=
5934 (oldFlags & wxPG_FL_FOCUSED) )
5935 {
1c4293cb
VZ
5936 if ( !(m_iFlags & wxPG_FL_FOCUSED) )
5937 {
1c4293cb
VZ
5938 // Need to store changed value
5939 CommitChangesFromEditor();
5940 }
5941 else
5942 {
5943 /*
5944 //
5945 // Preliminary code for tab-order respecting
5946 // tab-traversal (but should be moved to
5947 // OnNav handler)
5948 //
5949 wxWindow* prevFocus = event.GetWindow();
5950 wxWindow* useThis = this;
5951 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5952 useThis = GetParent();
5953
5954 if ( prevFocus &&
5955 prevFocus->GetParent() == useThis->GetParent() )
5956 {
5957 wxList& children = useThis->GetParent()->GetChildren();
5958
5959 wxNode* node = children.Find(prevFocus);
5960
5961 if ( node->GetNext() &&
5962 useThis == node->GetNext()->GetData() )
5963 DoSelectProperty(GetFirst());
5964 else if ( node->GetPrevious () &&
5965 useThis == node->GetPrevious()->GetData() )
5966 DoSelectProperty(GetLastProperty());
5967
5968 }
5969 */
1c4293cb
VZ
5970 }
5971
5972 // Redraw selected
fc72fab6
JS
5973 wxPGProperty* selected = GetSelection();
5974 if ( selected && (m_iFlags & wxPG_FL_INITIALIZED) )
5975 DrawItem( selected );
1c4293cb
VZ
5976 }
5977}
5978
5979void wxPropertyGrid::OnFocusEvent( wxFocusEvent& event )
5980{
5981 if ( event.GetEventType() == wxEVT_SET_FOCUS )
5982 HandleFocusChange((wxWindow*)event.GetEventObject());
5983 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5984 //else if ( event.GetWindow() )
5985 else
5986 HandleFocusChange(event.GetWindow());
5987
5988 event.Skip();
5989}
5990
5991// -----------------------------------------------------------------------
5992
5993void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent& event )
5994{
5995 HandleFocusChange((wxWindow*)event.GetEventObject());
8c5c56e2 5996 event.Skip();
1c4293cb
VZ
5997}
5998
5999// -----------------------------------------------------------------------
6000
6001void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent &event )
6002{
6003 m_iFlags |= wxPG_FL_SCROLLED;
6004
6005 event.Skip();
6006}
6007
6008// -----------------------------------------------------------------------
6009
6010void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent& WXUNUSED(event) )
6011{
6012 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED )
6013 {
6014 m_iFlags &= ~(wxPG_FL_MOUSE_CAPTURED);
6015 }
6016}
6017
6018// -----------------------------------------------------------------------
6019// Property editor related functions
6020// -----------------------------------------------------------------------
6021
6022// noDefCheck = true prevents infinite recursion.
b7d19850
JS
6023wxPGEditor* wxPropertyGrid::DoRegisterEditorClass( wxPGEditor* editorClass,
6024 const wxString& editorName,
6025 bool noDefCheck )
1c4293cb 6026{
7a344f1b 6027 wxASSERT( editorClass );
1c4293cb
VZ
6028
6029 if ( !noDefCheck && wxPGGlobalVars->m_mapEditorClasses.empty() )
6030 RegisterDefaultEditors();
6031
b7d19850 6032 wxString name = editorName;
6636ef8d 6033 if ( name.empty() )
b7d19850 6034 name = editorClass->GetName();
614fbbad
JS
6035
6036 // Existing editor under this name?
6037 wxPGHashMapS2P::iterator vt_it = wxPGGlobalVars->m_mapEditorClasses.find(name);
6038
5a45dd6f
JS
6039 if ( vt_it != wxPGGlobalVars->m_mapEditorClasses.end() )
6040 {
6041 // If this name was already used, try class name.
6042 name = editorClass->GetClassInfo()->GetClassName();
6043 vt_it = wxPGGlobalVars->m_mapEditorClasses.find(name);
6044 }
6045
614fbbad
JS
6046 wxCHECK_MSG( vt_it == wxPGGlobalVars->m_mapEditorClasses.end(),
6047 (wxPGEditor*) vt_it->second,
6048 "Editor with given name was already registered" );
6049
7a344f1b 6050 wxPGGlobalVars->m_mapEditorClasses[name] = (void*)editorClass;
1c4293cb 6051
7a344f1b 6052 return editorClass;
1c4293cb
VZ
6053}
6054
52cefafe
JS
6055// Use this in RegisterDefaultEditors.
6056#define wxPGRegisterDefaultEditorClass(EDITOR) \
d3b9f782 6057 if ( wxPGEditor_##EDITOR == NULL ) \
52cefafe
JS
6058 { \
6059 wxPGEditor_##EDITOR = wxPropertyGrid::RegisterEditorClass( \
6060 new wxPG##EDITOR##Editor, true ); \
6061 }
6062
1c4293cb
VZ
6063// Registers all default editor classes
6064void wxPropertyGrid::RegisterDefaultEditors()
6065{
6066 wxPGRegisterDefaultEditorClass( TextCtrl );
6067 wxPGRegisterDefaultEditorClass( Choice );
6068 wxPGRegisterDefaultEditorClass( ComboBox );
6069 wxPGRegisterDefaultEditorClass( TextCtrlAndButton );
6070#if wxPG_INCLUDE_CHECKBOX
6071 wxPGRegisterDefaultEditorClass( CheckBox );
6072#endif
6073 wxPGRegisterDefaultEditorClass( ChoiceAndButton );
6074
6075 // Register SpinCtrl etc. editors before use
6076 RegisterAdditionalEditors();
6077}
6078
6079// -----------------------------------------------------------------------
6080// wxPGStringTokenizer
6081// Needed to handle C-style string lists (e.g. "str1" "str2")
6082// -----------------------------------------------------------------------
6083
6084wxPGStringTokenizer::wxPGStringTokenizer( const wxString& str, wxChar delimeter )
6085 : m_str(&str), m_curPos(str.begin()), m_delimeter(delimeter)
6086{
6087}
6088
6089wxPGStringTokenizer::~wxPGStringTokenizer()
6090{
6091}
6092
6093bool wxPGStringTokenizer::HasMoreTokens()
6094{
6095 const wxString& str = *m_str;
6096
6097 wxString::const_iterator i = m_curPos;
6098
6099 wxUniChar delim = m_delimeter;
6100 wxUniChar a;
6101 wxUniChar prev_a = wxT('\0');
6102
6103 bool inToken = false;
6104
6105 while ( i != str.end() )
6106 {
6107 a = *i;
6108
6109 if ( !inToken )
6110 {
6111 if ( a == delim )
6112 {
6113 inToken = true;
6114 m_readyToken.clear();
6115 }
6116 }
6117 else
6118 {
6119 if ( prev_a != wxT('\\') )
6120 {
6121 if ( a != delim )
6122 {
6123 if ( a != wxT('\\') )
6124 m_readyToken << a;
6125 }
6126 else
6127 {
b7bc9d80 6128 ++i;
1c4293cb
VZ
6129 m_curPos = i;
6130 return true;
6131 }
6132 prev_a = a;
6133 }
6134 else
6135 {
6136 m_readyToken << a;
6137 prev_a = wxT('\0');
6138 }
6139 }
b7bc9d80 6140 ++i;
1c4293cb
VZ
6141 }
6142
6143 m_curPos = str.end();
6144
6145 if ( inToken )
6146 return true;
6147
6148 return false;
6149}
6150
6151wxString wxPGStringTokenizer::GetNextToken()
6152{
6153 return m_readyToken;
6154}
6155
6156// -----------------------------------------------------------------------
6157// wxPGChoiceEntry
6158// -----------------------------------------------------------------------
6159
6160wxPGChoiceEntry::wxPGChoiceEntry()
6161 : wxPGCell(), m_value(wxPG_INVALID_VALUE)
6162{
6163}
6164
1c4293cb
VZ
6165// -----------------------------------------------------------------------
6166// wxPGChoicesData
6167// -----------------------------------------------------------------------
6168
6169wxPGChoicesData::wxPGChoicesData()
6170{
1c4293cb
VZ
6171}
6172
6173wxPGChoicesData::~wxPGChoicesData()
6174{
6175 Clear();
6176}
6177
6178void wxPGChoicesData::Clear()
6179{
f7a094e1 6180 m_items.clear();
1c4293cb
VZ
6181}
6182
6183void wxPGChoicesData::CopyDataFrom( wxPGChoicesData* data )
6184{
6185 wxASSERT( m_items.size() == 0 );
6186
d7e2b522
JS
6187 m_items = data->m_items;
6188}
1c4293cb 6189
d7e2b522
JS
6190wxPGChoiceEntry& wxPGChoicesData::Insert( int index,
6191 const wxPGChoiceEntry& item )
6192{
6193 wxVector<wxPGChoiceEntry>::iterator it;
6194 if ( index == -1 )
6195 {
6196 it = m_items.end();
6197 index = (int) m_items.size();
6198 }
6199 else
6200 {
6201 it = m_items.begin() + index;
6202 }
6203
6204 m_items.insert(it, item);
6205
6206 wxPGChoiceEntry& ownEntry = m_items[index];
6207
6208 // Need to fix value?
6209 if ( ownEntry.GetValue() == wxPG_INVALID_VALUE )
6210 ownEntry.SetValue(index);
6211
6212 return ownEntry;
1c4293cb
VZ
6213}
6214
1c4293cb
VZ
6215// -----------------------------------------------------------------------
6216// wxPropertyGridEvent
6217// -----------------------------------------------------------------------
6218
6219IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent, wxCommandEvent)
6220
6221
9b11752c
VZ
6222wxDEFINE_EVENT( wxEVT_PG_SELECTED, wxPropertyGridEvent );
6223wxDEFINE_EVENT( wxEVT_PG_CHANGING, wxPropertyGridEvent );
6224wxDEFINE_EVENT( wxEVT_PG_CHANGED, wxPropertyGridEvent );
6225wxDEFINE_EVENT( wxEVT_PG_HIGHLIGHTED, wxPropertyGridEvent );
6226wxDEFINE_EVENT( wxEVT_PG_RIGHT_CLICK, wxPropertyGridEvent );
6227wxDEFINE_EVENT( wxEVT_PG_PAGE_CHANGED, wxPropertyGridEvent );
6228wxDEFINE_EVENT( wxEVT_PG_ITEM_EXPANDED, wxPropertyGridEvent );
6229wxDEFINE_EVENT( wxEVT_PG_ITEM_COLLAPSED, wxPropertyGridEvent );
6230wxDEFINE_EVENT( wxEVT_PG_DOUBLE_CLICK, wxPropertyGridEvent );
58935d4a
JS
6231wxDEFINE_EVENT( wxEVT_PG_LABEL_EDIT_BEGIN, wxPropertyGridEvent );
6232wxDEFINE_EVENT( wxEVT_PG_LABEL_EDIT_ENDING, wxPropertyGridEvent );
5405bfb4
JS
6233wxDEFINE_EVENT( wxEVT_PG_COL_BEGIN_DRAG, wxPropertyGridEvent );
6234wxDEFINE_EVENT( wxEVT_PG_COL_DRAGGING, wxPropertyGridEvent );
6235wxDEFINE_EVENT( wxEVT_PG_COL_END_DRAG, wxPropertyGridEvent );
1c4293cb
VZ
6236
6237// -----------------------------------------------------------------------
6238
6239void wxPropertyGridEvent::Init()
6240{
6241 m_validationInfo = NULL;
58935d4a 6242 m_column = 1;
1c4293cb
VZ
6243 m_canVeto = false;
6244 m_wasVetoed = false;
6245}
6246
6247// -----------------------------------------------------------------------
6248
6249wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType, int id)
6250 : wxCommandEvent(commandType,id)
6251{
6252 m_property = NULL;
6253 Init();
6254}
6255
6256// -----------------------------------------------------------------------
6257
6258wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent& event)
6259 : wxCommandEvent(event)
6260{
6261 m_eventType = event.GetEventType();
6262 m_eventObject = event.m_eventObject;
6263 m_pg = event.m_pg;
644b283d 6264 OnPropertyGridSet();
1c4293cb
VZ
6265 m_property = event.m_property;
6266 m_validationInfo = event.m_validationInfo;
6267 m_canVeto = event.m_canVeto;
6268 m_wasVetoed = event.m_wasVetoed;
6269}
6270
6271// -----------------------------------------------------------------------
6272
644b283d
JS
6273void wxPropertyGridEvent::OnPropertyGridSet()
6274{
6275 if ( !m_pg )
6276 return;
6277
9370ec6a 6278#if wxUSE_THREADS
644b283d
JS
6279 wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
6280#endif
6281 m_pg->m_liveEvents.push_back(this);
6282}
6283
6284// -----------------------------------------------------------------------
6285
1c4293cb
VZ
6286wxPropertyGridEvent::~wxPropertyGridEvent()
6287{
644b283d
JS
6288 if ( m_pg )
6289 {
9370ec6a 6290 #if wxUSE_THREADS
644b283d
JS
6291 wxCriticalSectionLocker(wxPGGlobalVars->m_critSect);
6292 #endif
6293
6294 // Use iterate from the back since it is more likely that the event
6295 // being desroyed is at the end of the array.
6296 wxVector<wxPropertyGridEvent*>& liveEvents = m_pg->m_liveEvents;
6297
6298 for ( int i = liveEvents.size()-1; i >= 0; i-- )
6299 {
6300 if ( liveEvents[i] == this )
6301 {
6302 liveEvents.erase(liveEvents.begin() + i);
6303 break;
6304 }
6305 }
6306 }
1c4293cb
VZ
6307}
6308
6309// -----------------------------------------------------------------------
6310
6311wxEvent* wxPropertyGridEvent::Clone() const
6312{
6313 return new wxPropertyGridEvent( *this );
6314}
6315
1c4293cb
VZ
6316// -----------------------------------------------------------------------
6317// wxPropertyGridPopulator
6318// -----------------------------------------------------------------------
6319
6320wxPropertyGridPopulator::wxPropertyGridPopulator()
6321{
6322 m_state = NULL;
6323 m_pg = NULL;
6324 wxPGGlobalVars->m_offline++;
6325}
6326
6327// -----------------------------------------------------------------------
6328
6329void wxPropertyGridPopulator::SetState( wxPropertyGridPageState* state )
6330{
6331 m_state = state;
6332 m_propHierarchy.clear();
6333}
6334
6335// -----------------------------------------------------------------------
6336
6337void wxPropertyGridPopulator::SetGrid( wxPropertyGrid* pg )
6338{
6339 m_pg = pg;
6340 pg->Freeze();
6341}
6342
6343// -----------------------------------------------------------------------
6344
6345wxPropertyGridPopulator::~wxPropertyGridPopulator()
6346{
6347 //
6348 // Free unused sets of choices
6349 wxPGHashMapS2P::iterator it;
6350
6351 for( it = m_dictIdChoices.begin(); it != m_dictIdChoices.end(); ++it )
6352 {
6353 wxPGChoicesData* data = (wxPGChoicesData*) it->second;
6354 data->DecRef();
6355 }
6356
6357 if ( m_pg )
6358 {
6359 m_pg->Thaw();
6360 m_pg->GetPanel()->Refresh();
6361 }
6362 wxPGGlobalVars->m_offline--;
6363}
6364
6365// -----------------------------------------------------------------------
6366
6367wxPGProperty* wxPropertyGridPopulator::Add( const wxString& propClass,
6368 const wxString& propLabel,
6369 const wxString& propName,
6370 const wxString* propValue,
6371 wxPGChoices* pChoices )
6372{
6373 wxClassInfo* classInfo = wxClassInfo::FindClass(propClass);
6374 wxPGProperty* parent = GetCurParent();
6375
6376 if ( parent->HasFlag(wxPG_PROP_AGGREGATE) )
6377 {
6378 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent->GetName().c_str()));
6379 return NULL;
6380 }
6381
6382 if ( !classInfo || !classInfo->IsKindOf(CLASSINFO(wxPGProperty)) )
6383 {
6384 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass.c_str()));
6385 return NULL;
6386 }
6387
6388 wxPGProperty* property = (wxPGProperty*) classInfo->CreateObject();
6389
6390 property->SetLabel(propLabel);
6391 property->DoSetName(propName);
6392
6393 if ( pChoices && pChoices->IsOk() )
6394 property->SetChoices(*pChoices);
6395
6396 m_state->DoInsert(parent, -1, property);
6397
6398 if ( propValue )
f275b5db
JS
6399 property->SetValueFromString( *propValue, wxPG_FULL_VALUE|
6400 wxPG_PROGRAMMATIC_VALUE );
1c4293cb
VZ
6401
6402 return property;
6403}
6404
6405// -----------------------------------------------------------------------
6406
6407void wxPropertyGridPopulator::AddChildren( wxPGProperty* property )
6408{
6409 m_propHierarchy.push_back(property);
6410 DoScanForChildren();
6411 m_propHierarchy.pop_back();
6412}
6413
6414// -----------------------------------------------------------------------
6415
6416wxPGChoices wxPropertyGridPopulator::ParseChoices( const wxString& choicesString,
6417 const wxString& idString )
6418{
6419 wxPGChoices choices;
6420
6421 // Using id?
6422 if ( choicesString[0] == wxT('@') )
6423 {
6424 wxString ids = choicesString.substr(1);
6425 wxPGHashMapS2P::iterator it = m_dictIdChoices.find(ids);
6426 if ( it == m_dictIdChoices.end() )
6427 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids.c_str()));
6428 else
6429 choices.AssignData((wxPGChoicesData*)it->second);
6430 }
6431 else
6432 {
6433 bool found = false;
6636ef8d 6434 if ( !idString.empty() )
1c4293cb
VZ
6435 {
6436 wxPGHashMapS2P::iterator it = m_dictIdChoices.find(idString);
6437 if ( it != m_dictIdChoices.end() )
6438 {
6439 choices.AssignData((wxPGChoicesData*)it->second);
6440 found = true;
6441 }
6442 }
6443
6444 if ( !found )
6445 {
6446 // Parse choices string
6447 wxString::const_iterator it = choicesString.begin();
6448 wxString label;
6449 wxString value;
6450 int state = 0;
6451 bool labelValid = false;
6452
b7bc9d80 6453 for ( ; it != choicesString.end(); ++it )
1c4293cb
VZ
6454 {
6455 wxChar c = *it;
6456
6457 if ( state != 1 )
6458 {
6459 if ( c == wxT('"') )
6460 {
6461 if ( labelValid )
6462 {
6463 long l;
6464 if ( !value.ToLong(&l, 0) ) l = wxPG_INVALID_VALUE;
6465 choices.Add(label, l);
6466 }
6467 labelValid = false;
6468 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6469 value.clear();
6470 label.clear();
6471 state = 1;
6472 }
6473 else if ( c == wxT('=') )
6474 {
6475 if ( labelValid )
6476 {
6477 state = 2;
6478 }
6479 }
6480 else if ( state == 2 && (wxIsalnum(c) || c == wxT('x')) )
6481 {
6482 value << c;
6483 }
6484 }
6485 else
6486 {
6487 if ( c == wxT('"') )
6488 {
6489 state = 0;
6490 labelValid = true;
6491 }
6492 else
6493 label << c;
6494 }
6495 }
6496
6497 if ( labelValid )
6498 {
6499 long l;
6500 if ( !value.ToLong(&l, 0) ) l = wxPG_INVALID_VALUE;
6501 choices.Add(label, l);
6502 }
6503
6504 if ( !choices.IsOk() )
6505 {
6506 choices.EnsureData();
6507 }
6508
6509 // Assign to id
6636ef8d 6510 if ( !idString.empty() )
1c4293cb
VZ
6511 m_dictIdChoices[idString] = choices.GetData();
6512 }
6513 }
6514
6515 return choices;
6516}
6517
6518// -----------------------------------------------------------------------
6519
6520bool wxPropertyGridPopulator::ToLongPCT( const wxString& s, long* pval, long max )
6521{
6522 if ( s.Last() == wxT('%') )
6523 {
6524 wxString s2 = s.substr(0,s.length()-1);
6525 long val;
6526 if ( s2.ToLong(&val, 10) )
6527 {
6528 *pval = (val*max)/100;
6529 return true;
6530 }
6531 return false;
6532 }
6533
6534 return s.ToLong(pval, 10);
6535}
6536
6537// -----------------------------------------------------------------------
6538
6539bool wxPropertyGridPopulator::AddAttribute( const wxString& name,
6540 const wxString& type,
6541 const wxString& value )
6542{
6543 int l = m_propHierarchy.size();
6544 if ( !l )
6545 return false;
6546
6547 wxPGProperty* p = m_propHierarchy[l-1];
6548 wxString valuel = value.Lower();
6549 wxVariant variant;
6550
6636ef8d 6551 if ( type.empty() )
1c4293cb
VZ
6552 {
6553 long v;
6554
6555 // Auto-detect type
6556 if ( valuel == wxT("true") || valuel == wxT("yes") || valuel == wxT("1") )
6557 variant = true;
6558 else if ( valuel == wxT("false") || valuel == wxT("no") || valuel == wxT("0") )
6559 variant = false;
6560 else if ( value.ToLong(&v, 0) )
6561 variant = v;
6562 else
6563 variant = value;
6564 }
6565 else
6566 {
6567 if ( type == wxT("string") )
6568 {
6569 variant = value;
6570 }
6571 else if ( type == wxT("int") )
6572 {
6573 long v = 0;
6574 value.ToLong(&v, 0);
6575 variant = v;
6576 }
6577 else if ( type == wxT("bool") )
6578 {
6579 if ( valuel == wxT("true") || valuel == wxT("yes") || valuel == wxT("1") )
6580 variant = true;
6581 else
6582 variant = false;
6583 }
6584 else
6585 {
6586 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type.c_str()));
6587 return false;
6588 }
6589 }
6590
6591 p->SetAttribute( name, variant );
6592
6593 return true;
6594}
6595
6596// -----------------------------------------------------------------------
6597
6598void wxPropertyGridPopulator::ProcessError( const wxString& msg )
6599{
6600 wxLogError(_("Error in resource: %s"),msg.c_str());
6601}
6602
6603// -----------------------------------------------------------------------
f4bc1aa2
JS
6604
6605#endif // wxUSE_PROPGRID