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