]> git.saurik.com Git - wxWidgets.git/blob - src/propgrid/propgrid.cpp
de6cafab9e35f4d1206efccc39e4ed17ca2f1c88
[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->GetChoiceCount();
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 /*
3528 if (p)
3529 wxLogDebug(wxT("SelectProperty( %s (%s[%i]) )"),p->m_label.c_str(),
3530 p->m_parent->m_label.c_str(),p->GetIndexInParent());
3531 else
3532 wxLogDebug(wxT("SelectProperty( NULL, -1 )"));
3533 */
3534
3535 if ( m_inDoSelectProperty )
3536 return true;
3537
3538 m_inDoSelectProperty = 1;
3539
3540 wxPGProperty* prev = m_selected;
3541
3542 //
3543 // Delete windows pending for deletion
3544 if ( m_windowsToDelete && !m_inDoPropertyChanged && m_windowsToDelete->size() )
3545 {
3546 unsigned int i;
3547
3548 for ( i=0; i<m_windowsToDelete->size(); i++ )
3549 delete ((wxWindow*)((*m_windowsToDelete)[i]));
3550
3551 m_windowsToDelete->clear();
3552 }
3553
3554 if ( !m_pState )
3555 {
3556 m_inDoSelectProperty = 0;
3557 return false;
3558 }
3559
3560 //
3561 // If we are frozen, then just set the values.
3562 if ( m_frozen )
3563 {
3564 m_iFlags &= ~(wxPG_FL_ABNORMAL_EDITOR);
3565 m_editorFocused = 0;
3566 m_selected = p;
3567 m_selColumn = 1;
3568 m_pState->m_selected = p;
3569
3570 // If frozen, always free controls. But don't worry, as Thaw will
3571 // recall SelectProperty to recreate them.
3572 FreeEditors();
3573
3574 // Prevent any further selection measures in this call
3575 p = (wxPGProperty*) NULL;
3576 }
3577 else
3578 {
3579 // Is it the same?
3580 if ( m_selected == p && !(flags & wxPG_SEL_FORCE) )
3581 {
3582 // Only set focus if not deselecting
3583 if ( p )
3584 {
3585 if ( flags & wxPG_SEL_FOCUS )
3586 {
3587 if ( m_wndEditor )
3588 {
3589 m_wndEditor->SetFocus();
3590 m_editorFocused = 1;
3591 }
3592 }
3593 else
3594 {
3595 wxScrolledWindow::SetFocus();
3596 m_editorFocused = 0;
3597 }
3598 }
3599
3600 m_inDoSelectProperty = 0;
3601 return true;
3602 }
3603
3604 //
3605 // First, deactivate previous
3606 if ( m_selected )
3607 {
3608
3609 OnValidationFailureReset(m_selected);
3610
3611 // Must double-check if this is an selected in case of forceswitch
3612 if ( p != prev )
3613 {
3614 if ( !CommitChangesFromEditor(flags) )
3615 {
3616 // Validation has failed, so we can't exit the previous editor
3617 //::wxMessageBox(_("Please correct the value or press ESC to cancel the edit."),
3618 // _("Invalid Value"),wxOK|wxICON_ERROR);
3619 m_inDoSelectProperty = 0;
3620 return false;
3621 }
3622 }
3623
3624 FreeEditors();
3625 m_selColumn = -1;
3626
3627 m_selected = (wxPGProperty*) NULL;
3628 m_pState->m_selected = (wxPGProperty*) NULL;
3629
3630 // We need to always fully refresh the grid here
3631 Refresh(false);
3632
3633 m_iFlags &= ~(wxPG_FL_ABNORMAL_EDITOR);
3634 EditorsValueWasNotModified();
3635 }
3636
3637 SetInternalFlag(wxPG_FL_IN_SELECT_PROPERTY);
3638
3639 //
3640 // Then, activate the one given.
3641 if ( p )
3642 {
3643 int propY = p->GetY2(m_lineHeight);
3644
3645 int splitterX = GetSplitterPosition();
3646 m_editorFocused = 0;
3647 m_selected = p;
3648 m_pState->m_selected = p;
3649 m_iFlags |= wxPG_FL_PRIMARY_FILLS_ENTIRE;
3650 if ( p != prev )
3651 m_iFlags &= ~(wxPG_FL_VALIDATION_FAILED);
3652
3653 wxASSERT( m_wndEditor == (wxWindow*) NULL );
3654
3655 // Do we need OnMeasureCalls?
3656 wxSize imsz = p->OnMeasureImage();
3657
3658 //
3659 // Only create editor for non-disabled non-caption
3660 if ( !p->IsCategory() && !(p->m_flags & wxPG_PROP_DISABLED) )
3661 {
3662 // do this for non-caption items
3663
3664 m_selColumn = 1;
3665
3666 // Do we need to paint the custom image, if any?
3667 m_iFlags &= ~(wxPG_FL_CUR_USES_CUSTOM_IMAGE);
3668 if ( (p->m_flags & wxPG_PROP_CUSTOMIMAGE) &&
3669 !p->GetEditorClass()->CanContainCustomImage()
3670 )
3671 m_iFlags |= wxPG_FL_CUR_USES_CUSTOM_IMAGE;
3672
3673 wxRect grect = GetEditorWidgetRect(p, m_selColumn);
3674 wxPoint goodPos = grect.GetPosition();
3675 #if wxPG_CREATE_CONTROLS_HIDDEN
3676 int coord_adjust = m_height - goodPos.y;
3677 goodPos.y += coord_adjust;
3678 #endif
3679
3680 const wxPGEditor* editor = p->GetEditorClass();
3681 wxCHECK_MSG(editor, false,
3682 wxT("NULL editor class not allowed"));
3683
3684 m_iFlags &= ~wxPG_FL_FIXED_WIDTH_EDITOR;
3685
3686 wxPGWindowList wndList = editor->CreateControls(this,
3687 p,
3688 goodPos,
3689 grect.GetSize());
3690
3691 m_wndEditor = wndList.m_primary;
3692 m_wndEditor2 = wndList.m_secondary;
3693
3694 // NOTE: It is allowed for m_wndEditor to be NULL - in this case
3695 // value is drawn as normal, and m_wndEditor2 is assumed
3696 // to be a right-aligned button that triggers a separate editor
3697 // window.
3698
3699 if ( m_wndEditor )
3700 {
3701 wxASSERT_MSG( m_wndEditor->GetParent() == m_canvas,
3702 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3703
3704 // Set validator, if any
3705 #if wxUSE_VALIDATORS
3706 if ( !(GetExtraStyle() & wxPG_EX_LEGACY_VALIDATORS) )
3707 {
3708 wxValidator* validator = p->GetValidator();
3709 if ( validator )
3710 m_wndEditor->SetValidator(*validator);
3711 }
3712 #endif
3713
3714 if ( m_wndEditor->GetSize().y > (m_lineHeight+6) )
3715 m_iFlags |= wxPG_FL_ABNORMAL_EDITOR;
3716
3717 // If it has modified status, use bold font
3718 // (must be done before capturing m_ctrlXAdjust)
3719 if ( (p->m_flags & wxPG_PROP_MODIFIED) && (m_windowStyle & wxPG_BOLD_MODIFIED) )
3720 SetCurControlBoldFont();
3721
3722 //
3723 // Fix TextCtrl indentation
3724 #if defined(__WXMSW__) && !defined(__WXWINCE__)
3725 wxTextCtrl* tc = NULL;
3726 if ( m_wndEditor->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)) )
3727 tc = ((wxOwnerDrawnComboBox*)m_wndEditor)->GetTextCtrl();
3728 else
3729 tc = wxDynamicCast(m_wndEditor, wxTextCtrl);
3730 if ( tc )
3731 ::SendMessage(GetHwndOf(tc), EM_SETMARGINS, EC_LEFTMARGIN | EC_RIGHTMARGIN, MAKELONG(0, 0));
3732 #endif
3733
3734 // Store x relative to splitter (we'll need it).
3735 m_ctrlXAdjust = m_wndEditor->GetPosition().x - splitterX;
3736
3737 // Check if background clear is not necessary
3738 wxPoint pos = m_wndEditor->GetPosition();
3739 if ( pos.x > (splitterX+1) || pos.y > propY )
3740 {
3741 m_iFlags &= ~(wxPG_FL_PRIMARY_FILLS_ENTIRE);
3742 }
3743
3744 m_wndEditor->SetSizeHints(3, 3);
3745
3746 #if wxPG_CREATE_CONTROLS_HIDDEN
3747 m_wndEditor->Show(false);
3748 m_wndEditor->Freeze();
3749
3750 goodPos = m_wndEditor->GetPosition();
3751 goodPos.y -= coord_adjust;
3752 m_wndEditor->Move( goodPos );
3753 #endif
3754
3755 wxWindow* primaryCtrl = GetEditorControl();
3756 SetupEventHandling(primaryCtrl, wxPG_SUBID1);
3757
3758 // Focus and select all (wxTextCtrl, wxComboBox etc)
3759 if ( flags & wxPG_SEL_FOCUS )
3760 {
3761 primaryCtrl->SetFocus();
3762
3763 p->GetEditorClass()->OnFocus(p, primaryCtrl);
3764 }
3765 }
3766
3767 if ( m_wndEditor2 )
3768 {
3769 wxASSERT_MSG( m_wndEditor2->GetParent() == m_canvas,
3770 wxT("CreateControls must use result of wxPropertyGrid::GetPanel() as parent of controls.") );
3771
3772 // Get proper id for wndSecondary
3773 m_wndSecId = m_wndEditor2->GetId();
3774 wxWindowList children = m_wndEditor2->GetChildren();
3775 wxWindowList::iterator node = children.begin();
3776 if ( node != children.end() )
3777 m_wndSecId = ((wxWindow*)*node)->GetId();
3778
3779 m_wndEditor2->SetSizeHints(3,3);
3780
3781 #if wxPG_CREATE_CONTROLS_HIDDEN
3782 wxRect sec_rect = m_wndEditor2->GetRect();
3783 sec_rect.y -= coord_adjust;
3784
3785 // Fine tuning required to fix "oversized"
3786 // button disappearance bug.
3787 if ( sec_rect.y < 0 )
3788 {
3789 sec_rect.height += sec_rect.y;
3790 sec_rect.y = 0;
3791 }
3792 m_wndEditor2->SetSize( sec_rect );
3793 #endif
3794 m_wndEditor2->Show();
3795
3796 SetupEventHandling(m_wndEditor2,wxPG_SUBID2);
3797
3798 // If no primary editor, focus to button to allow
3799 // it to interprete ENTER etc.
3800 // NOTE: Due to problems focusing away from it, this
3801 // has been disabled.
3802 /*
3803 if ( (flags & wxPG_SEL_FOCUS) && !m_wndEditor )
3804 m_wndEditor2->SetFocus();
3805 */
3806 }
3807
3808 if ( flags & wxPG_SEL_FOCUS )
3809 m_editorFocused = 1;
3810
3811 }
3812 else
3813 {
3814 // wxGTK atleast seems to need this (wxMSW not)
3815 SetFocus();
3816 }
3817
3818 EditorsValueWasNotModified();
3819
3820 // If it's inside collapsed section, expand parent, scroll, etc.
3821 // Also, if it was partially visible, scroll it into view.
3822 if ( !(flags & wxPG_SEL_NONVISIBLE) )
3823 EnsureVisible( p );
3824
3825 if ( m_wndEditor )
3826 {
3827 #if wxPG_CREATE_CONTROLS_HIDDEN
3828 m_wndEditor->Thaw();
3829 #endif
3830 m_wndEditor->Show(true);
3831 }
3832
3833 DrawItems(p, p);
3834 }
3835
3836 ClearInternalFlag(wxPG_FL_IN_SELECT_PROPERTY);
3837 }
3838
3839 #if wxUSE_STATUSBAR
3840
3841 //
3842 // Show help text in status bar.
3843 // (if found and grid not embedded in manager with help box and
3844 // style wxPG_EX_HELP_AS_TOOLTIPS is not used).
3845 //
3846
3847 if ( !(GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS) )
3848 {
3849 wxStatusBar* statusbar = (wxStatusBar*) NULL;
3850 if ( !(m_iFlags & wxPG_FL_NOSTATUSBARHELP) )
3851 {
3852 wxFrame* frame = wxDynamicCast(::wxGetTopLevelParent(this),wxFrame);
3853 if ( frame )
3854 statusbar = frame->GetStatusBar();
3855 }
3856
3857 if ( statusbar )
3858 {
3859 const wxString* pHelpString = (const wxString*) NULL;
3860
3861 if ( p )
3862 {
3863 pHelpString = &p->GetHelpString();
3864 if ( pHelpString->length() )
3865 {
3866 // Set help box text.
3867 statusbar->SetStatusText( *pHelpString );
3868 m_iFlags |= wxPG_FL_STRING_IN_STATUSBAR;
3869 }
3870 }
3871
3872 if ( (!pHelpString || !pHelpString->length()) &&
3873 (m_iFlags & wxPG_FL_STRING_IN_STATUSBAR) )
3874 {
3875 // Clear help box - but only if it was written
3876 // by us at previous time.
3877 statusbar->SetStatusText( m_emptyString );
3878 m_iFlags &= ~(wxPG_FL_STRING_IN_STATUSBAR);
3879 }
3880 }
3881 }
3882 #endif
3883
3884 m_inDoSelectProperty = 0;
3885
3886 // call wx event handler (here so that it also occurs on deselection)
3887 SendEvent( wxEVT_PG_SELECTED, m_selected, NULL, flags );
3888
3889 return true;
3890 }
3891
3892 // -----------------------------------------------------------------------
3893
3894 bool wxPropertyGrid::UnfocusEditor()
3895 {
3896 if ( !m_selected || !m_wndEditor || m_frozen )
3897 return true;
3898
3899 if ( !CommitChangesFromEditor(0) )
3900 return false;
3901
3902 m_canvas->SetFocusIgnoringChildren();
3903 DrawItem(m_selected);
3904
3905 return true;
3906 }
3907
3908 // -----------------------------------------------------------------------
3909
3910 // This method is not inline because it called dozens of times
3911 // (i.e. two-arg function calls create smaller code size).
3912 bool wxPropertyGrid::DoClearSelection()
3913 {
3914 return DoSelectProperty((wxPGProperty*)NULL);
3915 }
3916
3917 // -----------------------------------------------------------------------
3918 // wxPropertyGrid expand/collapse state
3919 // -----------------------------------------------------------------------
3920
3921 bool wxPropertyGrid::DoCollapse( wxPGProperty* p, bool sendEvents )
3922 {
3923 wxPGProperty* pwc = wxStaticCast(p, wxPGProperty);
3924
3925 // If active editor was inside collapsed section, then disable it
3926 if ( m_selected && m_selected->IsSomeParent (p) )
3927 {
3928 if ( !ClearSelection() )
3929 return false;
3930 }
3931
3932 // Store dont-center-splitter flag 'cause we need to temporarily set it
3933 wxUint32 old_flag = m_iFlags & wxPG_FL_DONT_CENTER_SPLITTER;
3934 m_iFlags |= wxPG_FL_DONT_CENTER_SPLITTER;
3935
3936 bool res = m_pState->DoCollapse(pwc);
3937
3938 if ( res )
3939 {
3940 if ( sendEvents )
3941 SendEvent( wxEVT_PG_ITEM_COLLAPSED, p );
3942
3943 RecalculateVirtualSize();
3944
3945 // Redraw etc. only if collapsed was visible.
3946 if (pwc->IsVisible() &&
3947 !m_frozen &&
3948 ( !pwc->IsCategory() || !(m_windowStyle & wxPG_HIDE_CATEGORIES) ) )
3949 {
3950 // When item is collapsed so that scrollbar would move,
3951 // graphics mess is about (unless we redraw everything).
3952 Refresh();
3953 }
3954 }
3955
3956 // Clear dont-center-splitter flag if it wasn't set
3957 m_iFlags = (m_iFlags & ~wxPG_FL_DONT_CENTER_SPLITTER) | old_flag;
3958
3959 return res;
3960 }
3961
3962 // -----------------------------------------------------------------------
3963
3964 bool wxPropertyGrid::DoExpand( wxPGProperty* p, bool sendEvents )
3965 {
3966 wxCHECK_MSG( p, false, wxT("invalid property id") );
3967
3968 wxPGProperty* pwc = (wxPGProperty*)p;
3969
3970 // Store dont-center-splitter flag 'cause we need to temporarily set it
3971 wxUint32 old_flag = m_iFlags & wxPG_FL_DONT_CENTER_SPLITTER;
3972 m_iFlags |= wxPG_FL_DONT_CENTER_SPLITTER;
3973
3974 bool res = m_pState->DoExpand(pwc);
3975
3976 if ( res )
3977 {
3978 if ( sendEvents )
3979 SendEvent( wxEVT_PG_ITEM_EXPANDED, p );
3980
3981 RecalculateVirtualSize();
3982
3983 // Redraw etc. only if expanded was visible.
3984 if ( pwc->IsVisible() && !m_frozen &&
3985 ( !pwc->IsCategory() || !(m_windowStyle & wxPG_HIDE_CATEGORIES) )
3986 )
3987 {
3988 // Redraw
3989 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
3990 Refresh();
3991 #else
3992 DrawItems(pwc, NULL);
3993 #endif
3994 }
3995 }
3996
3997 // Clear dont-center-splitter flag if it wasn't set
3998 m_iFlags = m_iFlags & ~(wxPG_FL_DONT_CENTER_SPLITTER) | old_flag;
3999
4000 return res;
4001 }
4002
4003 // -----------------------------------------------------------------------
4004
4005 bool wxPropertyGrid::DoHideProperty( wxPGProperty* p, bool hide, int flags )
4006 {
4007 if ( m_frozen )
4008 return m_pState->DoHideProperty(p, hide, flags);
4009
4010 if ( m_selected &&
4011 ( m_selected == p || m_selected->IsSomeParent(p) )
4012 )
4013 {
4014 if ( !ClearSelection() )
4015 return false;
4016 }
4017
4018 m_pState->DoHideProperty(p, hide, flags);
4019
4020 RecalculateVirtualSize();
4021 Refresh();
4022
4023 return true;
4024 }
4025
4026
4027 // -----------------------------------------------------------------------
4028 // wxPropertyGrid size related methods
4029 // -----------------------------------------------------------------------
4030
4031 void wxPropertyGrid::RecalculateVirtualSize( int forceXPos )
4032 {
4033 if ( (m_iFlags & wxPG_FL_RECALCULATING_VIRTUAL_SIZE) || m_frozen )
4034 return;
4035
4036 //
4037 // If virtual height was changed, then recalculate editor control position(s)
4038 if ( m_pState->m_vhCalcPending )
4039 CorrectEditorWidgetPosY();
4040
4041 m_pState->EnsureVirtualHeight();
4042
4043 #ifdef __WXDEBUG__
4044 int by1 = m_pState->GetVirtualHeight();
4045 int by2 = m_pState->GetActualVirtualHeight();
4046 if ( by1 != by2 )
4047 {
4048 wxString s = wxString::Format(wxT("VirtualHeight=%i, ActualVirtualHeight=%i, should match!"), by1, by2);
4049 wxASSERT_MSG( false,
4050 s.c_str() );
4051 wxLogDebug(s);
4052 }
4053 #endif
4054
4055 m_iFlags |= wxPG_FL_RECALCULATING_VIRTUAL_SIZE;
4056
4057 int x = m_pState->m_width;
4058 int y = m_pState->m_virtualHeight;
4059
4060 int width, height;
4061 GetClientSize(&width,&height);
4062
4063 // Now adjust virtual size.
4064 SetVirtualSize(x, y);
4065
4066 int xAmount = 0;
4067 int xPos = 0;
4068
4069 //
4070 // Adjust scrollbars
4071 if ( HasVirtualWidth() )
4072 {
4073 xAmount = x/wxPG_PIXELS_PER_UNIT;
4074 xPos = GetScrollPos( wxHORIZONTAL );
4075 }
4076
4077 if ( forceXPos != -1 )
4078 xPos = forceXPos;
4079 // xPos too high?
4080 else if ( xPos > (xAmount-(width/wxPG_PIXELS_PER_UNIT)) )
4081 xPos = 0;
4082
4083 int yAmount = (y+wxPG_PIXELS_PER_UNIT+2)/wxPG_PIXELS_PER_UNIT;
4084 int yPos = GetScrollPos( wxVERTICAL );
4085
4086 SetScrollbars( wxPG_PIXELS_PER_UNIT, wxPG_PIXELS_PER_UNIT,
4087 xAmount, yAmount, xPos, yPos, true );
4088
4089 // Must re-get size now
4090 GetClientSize(&width,&height);
4091
4092 if ( !HasVirtualWidth() )
4093 {
4094 m_pState->SetVirtualWidth(width);
4095 x = width;
4096 }
4097
4098 m_width = width;
4099 m_height = height;
4100
4101 m_canvas->SetSize( x, y );
4102
4103 m_pState->CheckColumnWidths();
4104
4105 if ( m_selected )
4106 CorrectEditorWidgetSizeX();
4107
4108 m_iFlags &= ~wxPG_FL_RECALCULATING_VIRTUAL_SIZE;
4109 }
4110
4111 // -----------------------------------------------------------------------
4112
4113 void wxPropertyGrid::OnResize( wxSizeEvent& event )
4114 {
4115 if ( !(m_iFlags & wxPG_FL_INITIALIZED) )
4116 return;
4117
4118 int width, height;
4119 GetClientSize(&width,&height);
4120
4121 m_width = width;
4122 m_height = height;
4123
4124 #if wxPG_DOUBLE_BUFFER
4125 if ( !(GetExtraStyle() & wxPG_EX_NATIVE_DOUBLE_BUFFERING) )
4126 {
4127 int dblh = (m_lineHeight*2);
4128 if ( !m_doubleBuffer )
4129 {
4130 // Create double buffer bitmap to draw on, if none
4131 int w = (width>250)?width:250;
4132 int h = height + dblh;
4133 h = (h>400)?h:400;
4134 m_doubleBuffer = new wxBitmap( w, h );
4135 }
4136 else
4137 {
4138 int w = m_doubleBuffer->GetWidth();
4139 int h = m_doubleBuffer->GetHeight();
4140
4141 // Double buffer must be large enough
4142 if ( w < width || h < (height+dblh) )
4143 {
4144 if ( w < width ) w = width;
4145 if ( h < (height+dblh) ) h = height + dblh;
4146 delete m_doubleBuffer;
4147 m_doubleBuffer = new wxBitmap( w, h );
4148 }
4149 }
4150 }
4151
4152 #endif
4153
4154 m_pState->OnClientWidthChange( width, event.GetSize().x - m_ncWidth, true );
4155 m_ncWidth = event.GetSize().x;
4156
4157 if ( !m_frozen )
4158 {
4159 if ( m_pState->m_itemsAdded )
4160 PrepareAfterItemsAdded();
4161 else
4162 // Without this, virtual size (atleast under wxGTK) will be skewed
4163 RecalculateVirtualSize();
4164
4165 Refresh();
4166 }
4167 }
4168
4169 // -----------------------------------------------------------------------
4170
4171 void wxPropertyGrid::SetVirtualWidth( int width )
4172 {
4173 if ( width == -1 )
4174 {
4175 // Disable virtual width
4176 width = GetClientSize().x;
4177 ClearInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH);
4178 }
4179 else
4180 {
4181 // Enable virtual width
4182 SetInternalFlag(wxPG_FL_HAS_VIRTUAL_WIDTH);
4183 }
4184 m_pState->SetVirtualWidth( width );
4185 }
4186
4187 // -----------------------------------------------------------------------
4188 // wxPropertyGrid mouse event handling
4189 // -----------------------------------------------------------------------
4190
4191 // selFlags uses same values DoSelectProperty's flags
4192 // Returns true if event was vetoed.
4193 bool wxPropertyGrid::SendEvent( int eventType, wxPGProperty* p, wxVariant* pValue, unsigned int WXUNUSED(selFlags) )
4194 {
4195 // Send property grid event of specific type and with specific property
4196 wxPropertyGridEvent evt( eventType, m_eventObject->GetId() );
4197 evt.SetPropertyGrid(this);
4198 evt.SetEventObject(m_eventObject);
4199 evt.SetProperty(p);
4200 if ( pValue )
4201 {
4202 evt.SetCanVeto(true);
4203 evt.SetupValidationInfo();
4204 m_validationInfo.m_pValue = pValue;
4205 }
4206 wxEvtHandler* evtHandler = m_eventObject->GetEventHandler();
4207
4208 evtHandler->ProcessEvent(evt);
4209
4210 return evt.WasVetoed();
4211 }
4212
4213 // -----------------------------------------------------------------------
4214
4215 // Return false if should be skipped
4216 bool wxPropertyGrid::HandleMouseClick( int x, unsigned int y, wxMouseEvent &event )
4217 {
4218 bool res = true;
4219
4220 // Need to set focus?
4221 if ( !(m_iFlags & wxPG_FL_FOCUSED) )
4222 {
4223 m_canvas->SetFocus();
4224 }
4225
4226 wxPropertyGridPageState* state = m_pState;
4227 int splitterHit;
4228 int splitterHitOffset;
4229 int columnHit = state->HitTestH( x, &splitterHit, &splitterHitOffset );
4230
4231 wxPGProperty* p = DoGetItemAtY(y);
4232
4233 if ( p )
4234 {
4235 int depth = (int)p->GetDepth() - 1;
4236
4237 int marginEnds = m_marginWidth + ( depth * m_subgroup_extramargin );
4238
4239 if ( x >= marginEnds )
4240 {
4241 // Outside margin.
4242
4243 if ( p->IsCategory() )
4244 {
4245 // This is category.
4246 wxPropertyCategory* pwc = (wxPropertyCategory*)p;
4247
4248 int textX = m_marginWidth + ((unsigned int)((pwc->m_depth-1)*m_subgroup_extramargin));
4249
4250 // Expand, collapse, activate etc. if click on text or left of splitter.
4251 if ( x >= textX
4252 &&
4253 ( x < (textX+pwc->GetTextExtent(this, m_captionFont)+(wxPG_CAPRECTXMARGIN*2)) ||
4254 columnHit == 0
4255 )
4256 )
4257 {
4258 if ( !DoSelectProperty( p ) )
4259 return res;
4260
4261 // On double-click, expand/collapse.
4262 if ( event.ButtonDClick() && !(m_windowStyle & wxPG_HIDE_MARGIN) )
4263 {
4264 if ( pwc->IsExpanded() ) DoCollapse( p, true );
4265 else DoExpand( p, true );
4266 }
4267 }
4268 }
4269 else if ( splitterHit == -1 )
4270 {
4271 // Click on value.
4272 unsigned int selFlag = 0;
4273 if ( columnHit == 1 )
4274 {
4275 m_iFlags |= wxPG_FL_ACTIVATION_BY_CLICK;
4276 selFlag = wxPG_SEL_FOCUS;
4277 }
4278 if ( !DoSelectProperty( p, selFlag ) )
4279 return res;
4280
4281 m_iFlags &= ~(wxPG_FL_ACTIVATION_BY_CLICK);
4282
4283 if ( p->GetChildCount() && !p->IsCategory() )
4284 // On double-click, expand/collapse.
4285 if ( event.ButtonDClick() && !(m_windowStyle & wxPG_HIDE_MARGIN) )
4286 {
4287 wxPGProperty* pwc = (wxPGProperty*)p;
4288 if ( pwc->IsExpanded() ) DoCollapse( p, true );
4289 else DoExpand( p, true );
4290 }
4291
4292 res = false;
4293 }
4294 else
4295 {
4296 // click on splitter
4297 if ( !(m_windowStyle & wxPG_STATIC_SPLITTER) )
4298 {
4299 if ( event.GetEventType() == wxEVT_LEFT_DCLICK )
4300 {
4301 // Double-clicking the splitter causes auto-centering
4302 CenterSplitter( true );
4303 }
4304 else if ( m_dragStatus == 0 )
4305 {
4306 //
4307 // Begin draggin the splitter
4308 //
4309 if ( m_wndEditor )
4310 {
4311 // Changes must be committed here or the
4312 // value won't be drawn correctly
4313 if ( !CommitChangesFromEditor() )
4314 return res;
4315
4316 m_wndEditor->Show ( false );
4317 }
4318
4319 if ( !(m_iFlags & wxPG_FL_MOUSE_CAPTURED) )
4320 {
4321 m_canvas->CaptureMouse();
4322 m_iFlags |= wxPG_FL_MOUSE_CAPTURED;
4323 }
4324
4325 m_dragStatus = 1;
4326 m_draggedSplitter = splitterHit;
4327 m_dragOffset = splitterHitOffset;
4328
4329 wxClientDC dc(m_canvas);
4330
4331 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4332 // Fixes button disappearance bug
4333 if ( m_wndEditor2 )
4334 m_wndEditor2->Show ( false );
4335 #endif
4336
4337 m_startingSplitterX = x - splitterHitOffset;
4338 }
4339 }
4340 }
4341 }
4342 else
4343 {
4344 // Click on margin.
4345 if ( p->GetChildCount() )
4346 {
4347 int nx = x + m_marginWidth - marginEnds; // Normalize x.
4348
4349 if ( (nx >= m_gutterWidth && nx < (m_gutterWidth+m_iconWidth)) )
4350 {
4351 int y2 = y % m_lineHeight;
4352 if ( (y2 >= m_buttonSpacingY && y2 < (m_buttonSpacingY+m_iconHeight)) )
4353 {
4354 // On click on expander button, expand/collapse
4355 if ( ((wxPGProperty*)p)->IsExpanded() )
4356 DoCollapse( p, true );
4357 else
4358 DoExpand( p, true );
4359 }
4360 }
4361 }
4362 }
4363 }
4364 return res;
4365 }
4366
4367 // -----------------------------------------------------------------------
4368
4369 bool wxPropertyGrid::HandleMouseRightClick( int WXUNUSED(x), unsigned int WXUNUSED(y),
4370 wxMouseEvent& WXUNUSED(event) )
4371 {
4372 if ( m_propHover )
4373 {
4374 // Select property here as well
4375 wxPGProperty* p = m_propHover;
4376 if ( p != m_selected )
4377 DoSelectProperty( p );
4378
4379 // Send right click event.
4380 SendEvent( wxEVT_PG_RIGHT_CLICK, p );
4381
4382 return true;
4383 }
4384 return false;
4385 }
4386
4387 // -----------------------------------------------------------------------
4388
4389 bool wxPropertyGrid::HandleMouseDoubleClick( int WXUNUSED(x), unsigned int WXUNUSED(y),
4390 wxMouseEvent& WXUNUSED(event) )
4391 {
4392 if ( m_propHover )
4393 {
4394 // Select property here as well
4395 wxPGProperty* p = m_propHover;
4396
4397 if ( p != m_selected )
4398 DoSelectProperty( p );
4399
4400 // Send double-click event.
4401 SendEvent( wxEVT_PG_DOUBLE_CLICK, m_propHover );
4402
4403 return true;
4404 }
4405 return false;
4406 }
4407
4408 // -----------------------------------------------------------------------
4409
4410 #if wxPG_SUPPORT_TOOLTIPS
4411
4412 void wxPropertyGrid::SetToolTip( const wxString& tipString )
4413 {
4414 if ( tipString.length() )
4415 {
4416 m_canvas->SetToolTip(tipString);
4417 }
4418 else
4419 {
4420 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4421 m_canvas->SetToolTip( m_emptyString );
4422 #else
4423 m_canvas->SetToolTip( NULL );
4424 #endif
4425 }
4426 }
4427
4428 #endif // #if wxPG_SUPPORT_TOOLTIPS
4429
4430 // -----------------------------------------------------------------------
4431
4432 // Return false if should be skipped
4433 bool wxPropertyGrid::HandleMouseMove( int x, unsigned int y, wxMouseEvent &event )
4434 {
4435 // Safety check (needed because mouse capturing may
4436 // otherwise freeze the control)
4437 if ( m_dragStatus > 0 && !event.Dragging() )
4438 {
4439 HandleMouseUp(x,y,event);
4440 }
4441
4442 wxPropertyGridPageState* state = m_pState;
4443 int splitterHit;
4444 int splitterHitOffset;
4445 int columnHit = state->HitTestH( x, &splitterHit, &splitterHitOffset );
4446 int splitterX = x - splitterHitOffset;
4447
4448 if ( m_dragStatus > 0 )
4449 {
4450 if ( x > (m_marginWidth + wxPG_DRAG_MARGIN) &&
4451 x < (m_pState->m_width - wxPG_DRAG_MARGIN) )
4452 {
4453
4454 int newSplitterX = x - m_dragOffset;
4455 int splitterX = x - splitterHitOffset;
4456
4457 // Splitter redraw required?
4458 if ( newSplitterX != splitterX )
4459 {
4460 // Move everything
4461 SetInternalFlag(wxPG_FL_DONT_CENTER_SPLITTER);
4462 state->DoSetSplitterPosition( newSplitterX, m_draggedSplitter, false );
4463 state->m_fSplitterX = (float) newSplitterX;
4464
4465 if ( m_selected )
4466 CorrectEditorWidgetSizeX();
4467
4468 Update();
4469 Refresh();
4470 }
4471
4472 m_dragStatus = 2;
4473 }
4474
4475 return false;
4476 }
4477 else
4478 {
4479
4480 int ih = m_lineHeight;
4481 int sy = y;
4482
4483 #if wxPG_SUPPORT_TOOLTIPS
4484 wxPGProperty* prevHover = m_propHover;
4485 unsigned char prevSide = m_mouseSide;
4486 #endif
4487 int curPropHoverY = y - (y % ih);
4488
4489 // On which item it hovers
4490 if ( ( !m_propHover )
4491 ||
4492 ( m_propHover && ( sy < m_propHoverY || sy >= (m_propHoverY+ih) ) )
4493 )
4494 {
4495 // Mouse moves on another property
4496
4497 m_propHover = DoGetItemAtY(y);
4498 m_propHoverY = curPropHoverY;
4499
4500 // Send hover event
4501 SendEvent( wxEVT_PG_HIGHLIGHTED, m_propHover );
4502 }
4503
4504 #if wxPG_SUPPORT_TOOLTIPS
4505 // Store which side we are on
4506 m_mouseSide = 0;
4507 if ( columnHit == 1 )
4508 m_mouseSide = 2;
4509 else if ( columnHit == 0 )
4510 m_mouseSide = 1;
4511
4512 //
4513 // If tooltips are enabled, show label or value as a tip
4514 // in case it doesn't otherwise show in full length.
4515 //
4516 if ( m_windowStyle & wxPG_TOOLTIPS )
4517 {
4518 wxToolTip* tooltip = m_canvas->GetToolTip();
4519
4520 if ( m_propHover != prevHover || prevSide != m_mouseSide )
4521 {
4522 if ( m_propHover && !m_propHover->IsCategory() )
4523 {
4524
4525 if ( GetExtraStyle() & wxPG_EX_HELP_AS_TOOLTIPS )
4526 {
4527 // Show help string as a tooltip
4528 wxString tipString = m_propHover->GetHelpString();
4529
4530 SetToolTip(tipString);
4531 }
4532 else
4533 {
4534 // Show cropped value string as a tooltip
4535 wxString tipString;
4536 int space = 0;
4537
4538 if ( m_mouseSide == 1 )
4539 {
4540 tipString = m_propHover->m_label;
4541 space = splitterX-m_marginWidth-3;
4542 }
4543 else if ( m_mouseSide == 2 )
4544 {
4545 tipString = m_propHover->GetDisplayedString();
4546
4547 space = m_width - splitterX;
4548 if ( m_propHover->m_flags & wxPG_PROP_CUSTOMIMAGE )
4549 space -= wxPG_CUSTOM_IMAGE_WIDTH + wxCC_CUSTOM_IMAGE_MARGIN1 + wxCC_CUSTOM_IMAGE_MARGIN2;
4550 }
4551
4552 if ( space )
4553 {
4554 int tw, th;
4555 GetTextExtent( tipString, &tw, &th, 0, 0, &m_font );
4556 if ( tw > space )
4557 {
4558 SetToolTip( tipString );
4559 }
4560 }
4561 else
4562 {
4563 if ( tooltip )
4564 {
4565 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4566 m_canvas->SetToolTip( m_emptyString );
4567 #else
4568 m_canvas->SetToolTip( NULL );
4569 #endif
4570 }
4571 }
4572
4573 }
4574 }
4575 else
4576 {
4577 if ( tooltip )
4578 {
4579 #if wxPG_ALLOW_EMPTY_TOOLTIPS
4580 m_canvas->SetToolTip( m_emptyString );
4581 #else
4582 m_canvas->SetToolTip( NULL );
4583 #endif
4584 }
4585 }
4586 }
4587 }
4588 #endif
4589
4590 if ( splitterHit == -1 ||
4591 !m_propHover ||
4592 HasFlag(wxPG_STATIC_SPLITTER) )
4593 {
4594 // hovering on something else
4595 if ( m_curcursor != wxCURSOR_ARROW )
4596 CustomSetCursor( wxCURSOR_ARROW );
4597 }
4598 else
4599 {
4600 // Do not allow splitter cursor on caption items.
4601 // (also not if we were dragging and its started
4602 // outside the splitter region)
4603
4604 if ( m_propHover &&
4605 !m_propHover->IsCategory() &&
4606 !event.Dragging() )
4607 {
4608
4609 // hovering on splitter
4610
4611 // NB: Condition disabled since MouseLeave event (from the editor control) cannot be
4612 // reliably detected.
4613 //if ( m_curcursor != wxCURSOR_SIZEWE )
4614 CustomSetCursor( wxCURSOR_SIZEWE, true );
4615
4616 return false;
4617 }
4618 else
4619 {
4620 // hovering on something else
4621 if ( m_curcursor != wxCURSOR_ARROW )
4622 CustomSetCursor( wxCURSOR_ARROW );
4623 }
4624 }
4625 }
4626 return true;
4627 }
4628
4629 // -----------------------------------------------------------------------
4630
4631 // Also handles Leaving event
4632 bool wxPropertyGrid::HandleMouseUp( int x, unsigned int WXUNUSED(y),
4633 wxMouseEvent &WXUNUSED(event) )
4634 {
4635 wxPropertyGridPageState* state = m_pState;
4636 bool res = false;
4637
4638 int splitterHit;
4639 int splitterHitOffset;
4640 state->HitTestH( x, &splitterHit, &splitterHitOffset );
4641
4642 // No event type check - basicly calling this method should
4643 // just stop dragging.
4644 // Left up after dragged?
4645 if ( m_dragStatus >= 1 )
4646 {
4647 //
4648 // End Splitter Dragging
4649 //
4650 // DO NOT ENABLE FOLLOWING LINE!
4651 // (it is only here as a reminder to not to do it)
4652 //splitterX = x;
4653
4654 // Disable splitter auto-centering
4655 m_iFlags |= wxPG_FL_DONT_CENTER_SPLITTER;
4656
4657 // This is necessary to return cursor
4658 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED )
4659 {
4660 m_canvas->ReleaseMouse();
4661 m_iFlags &= ~(wxPG_FL_MOUSE_CAPTURED);
4662 }
4663
4664 // Set back the default cursor, if necessary
4665 if ( splitterHit == -1 ||
4666 !m_propHover )
4667 {
4668 CustomSetCursor( wxCURSOR_ARROW );
4669 }
4670
4671 m_dragStatus = 0;
4672
4673 // Control background needs to be cleared
4674 if ( !(m_iFlags & wxPG_FL_PRIMARY_FILLS_ENTIRE) && m_selected )
4675 DrawItem( m_selected );
4676
4677 if ( m_wndEditor )
4678 {
4679 m_wndEditor->Show ( true );
4680 }
4681
4682 #if wxPG_REFRESH_CONTROLS_AFTER_REPAINT
4683 // Fixes button disappearance bug
4684 if ( m_wndEditor2 )
4685 m_wndEditor2->Show ( true );
4686 #endif
4687
4688 // This clears the focus.
4689 m_editorFocused = 0;
4690
4691 }
4692 return res;
4693 }
4694
4695 // -----------------------------------------------------------------------
4696
4697 bool wxPropertyGrid::OnMouseCommon( wxMouseEvent& event, int* px, int* py )
4698 {
4699 int splitterX = GetSplitterPosition();
4700
4701 //int ux, uy;
4702 //CalcUnscrolledPosition( event.m_x, event.m_y, &ux, &uy );
4703 int ux = event.m_x;
4704 int uy = event.m_y;
4705
4706 wxWindow* wnd = m_wndEditor;
4707
4708 // Hide popup on clicks
4709 if ( event.GetEventType() != wxEVT_MOTION )
4710 if ( wnd && wnd->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)) )
4711 {
4712 ((wxOwnerDrawnComboBox*)m_wndEditor)->HidePopup();
4713 }
4714
4715 wxRect r;
4716 if ( wnd )
4717 r = wnd->GetRect();
4718 if ( wnd == (wxWindow*) NULL || m_dragStatus ||
4719 (
4720 ux <= (splitterX + wxPG_SPLITTERX_DETECTMARGIN2) ||
4721 ux >= (r.x+r.width) ||
4722 event.m_y < r.y ||
4723 event.m_y >= (r.y+r.height)
4724 )
4725 )
4726 {
4727 *px = ux;
4728 *py = uy;
4729 return true;
4730 }
4731 else
4732 {
4733 if ( m_curcursor != wxCURSOR_ARROW ) CustomSetCursor ( wxCURSOR_ARROW );
4734 }
4735 return false;
4736 }
4737
4738 // -----------------------------------------------------------------------
4739
4740 void wxPropertyGrid::OnMouseClick( wxMouseEvent &event )
4741 {
4742 int x, y;
4743 if ( OnMouseCommon( event, &x, &y ) )
4744 {
4745 HandleMouseClick(x,y,event);
4746 }
4747 event.Skip();
4748 }
4749
4750 // -----------------------------------------------------------------------
4751
4752 void wxPropertyGrid::OnMouseRightClick( wxMouseEvent &event )
4753 {
4754 int x, y;
4755 CalcUnscrolledPosition( event.m_x, event.m_y, &x, &y );
4756 HandleMouseRightClick(x,y,event);
4757 event.Skip();
4758 }
4759
4760 // -----------------------------------------------------------------------
4761
4762 void wxPropertyGrid::OnMouseDoubleClick( wxMouseEvent &event )
4763 {
4764 // Always run standard mouse-down handler as well
4765 OnMouseClick(event);
4766
4767 int x, y;
4768 CalcUnscrolledPosition( event.m_x, event.m_y, &x, &y );
4769 HandleMouseDoubleClick(x,y,event);
4770 event.Skip();
4771 }
4772
4773 // -----------------------------------------------------------------------
4774
4775 void wxPropertyGrid::OnMouseMove( wxMouseEvent &event )
4776 {
4777 int x, y;
4778 if ( OnMouseCommon( event, &x, &y ) )
4779 {
4780 HandleMouseMove(x,y,event);
4781 }
4782 event.Skip();
4783 }
4784
4785 // -----------------------------------------------------------------------
4786
4787 void wxPropertyGrid::OnMouseMoveBottom( wxMouseEvent& WXUNUSED(event) )
4788 {
4789 // Called when mouse moves in the empty space below the properties.
4790 CustomSetCursor( wxCURSOR_ARROW );
4791 }
4792
4793 // -----------------------------------------------------------------------
4794
4795 void wxPropertyGrid::OnMouseUp( wxMouseEvent &event )
4796 {
4797 int x, y;
4798 if ( OnMouseCommon( event, &x, &y ) )
4799 {
4800 HandleMouseUp(x,y,event);
4801 }
4802 event.Skip();
4803 }
4804
4805 // -----------------------------------------------------------------------
4806
4807 void wxPropertyGrid::OnMouseEntry( wxMouseEvent &event )
4808 {
4809 // This may get called from child control as well, so event's
4810 // mouse position cannot be relied on.
4811
4812 if ( event.Entering() )
4813 {
4814 if ( !(m_iFlags & wxPG_FL_MOUSE_INSIDE) )
4815 {
4816 // TODO: Fix this (detect parent and only do
4817 // cursor trick if it is a manager).
4818 wxASSERT( GetParent() );
4819 GetParent()->SetCursor(wxNullCursor);
4820
4821 m_iFlags |= wxPG_FL_MOUSE_INSIDE;
4822 }
4823 else
4824 GetParent()->SetCursor(wxNullCursor);
4825 }
4826 else if ( event.Leaving() )
4827 {
4828 // Without this, wxSpinCtrl editor will sometimes have wrong cursor
4829 m_canvas->SetCursor( wxNullCursor );
4830
4831 // Get real cursor position
4832 wxPoint pt = ScreenToClient(::wxGetMousePosition());
4833
4834 if ( ( pt.x <= 0 || pt.y <= 0 || pt.x >= m_width || pt.y >= m_height ) )
4835 {
4836 {
4837 if ( (m_iFlags & wxPG_FL_MOUSE_INSIDE) )
4838 {
4839 m_iFlags &= ~(wxPG_FL_MOUSE_INSIDE);
4840 }
4841
4842 if ( m_dragStatus )
4843 wxPropertyGrid::HandleMouseUp ( -1, 10000, event );
4844 }
4845 }
4846 }
4847
4848 event.Skip();
4849 }
4850
4851 // -----------------------------------------------------------------------
4852
4853 // Common code used by various OnMouseXXXChild methods.
4854 bool wxPropertyGrid::OnMouseChildCommon( wxMouseEvent &event, int* px, int *py )
4855 {
4856 wxWindow* topCtrlWnd = (wxWindow*)event.GetEventObject();
4857 wxASSERT( topCtrlWnd );
4858 int x, y;
4859 event.GetPosition(&x,&y);
4860
4861 AdjustPosForClipperWindow( topCtrlWnd, &x, &y );
4862
4863 int splitterX = GetSplitterPosition();
4864
4865 wxRect r = topCtrlWnd->GetRect();
4866 if ( !m_dragStatus &&
4867 x > (splitterX-r.x+wxPG_SPLITTERX_DETECTMARGIN2) &&
4868 y >= 0 && y < r.height \
4869 )
4870 {
4871 if ( m_curcursor != wxCURSOR_ARROW ) CustomSetCursor ( wxCURSOR_ARROW );
4872 event.Skip();
4873 }
4874 else
4875 {
4876 CalcUnscrolledPosition( event.m_x + r.x, event.m_y + r.y, \
4877 px, py );
4878 return true;
4879 }
4880 return false;
4881 }
4882
4883 void wxPropertyGrid::OnMouseClickChild( wxMouseEvent &event )
4884 {
4885 int x,y;
4886 if ( OnMouseChildCommon(event,&x,&y) )
4887 {
4888 bool res = HandleMouseClick(x,y,event);
4889 if ( !res ) event.Skip();
4890 }
4891 }
4892
4893 void wxPropertyGrid::OnMouseRightClickChild( wxMouseEvent &event )
4894 {
4895 int x,y;
4896 wxASSERT( m_wndEditor );
4897 // These coords may not be exact (about +-2),
4898 // but that should not matter (right click is about item, not position).
4899 wxPoint pt = m_wndEditor->GetPosition();
4900 CalcUnscrolledPosition( event.m_x + pt.x, event.m_y + pt.y, &x, &y );
4901 wxASSERT( m_selected );
4902 m_propHover = m_selected;
4903 bool res = HandleMouseRightClick(x,y,event);
4904 if ( !res ) event.Skip();
4905 }
4906
4907 void wxPropertyGrid::OnMouseMoveChild( wxMouseEvent &event )
4908 {
4909 int x,y;
4910 if ( OnMouseChildCommon(event,&x,&y) )
4911 {
4912 bool res = HandleMouseMove(x,y,event);
4913 if ( !res ) event.Skip();
4914 }
4915 }
4916
4917 void wxPropertyGrid::OnMouseUpChild( wxMouseEvent &event )
4918 {
4919 int x,y;
4920 if ( OnMouseChildCommon(event,&x,&y) )
4921 {
4922 bool res = HandleMouseUp(x,y,event);
4923 if ( !res ) event.Skip();
4924 }
4925 }
4926
4927 // -----------------------------------------------------------------------
4928 // wxPropertyGrid keyboard event handling
4929 // -----------------------------------------------------------------------
4930
4931 void wxPropertyGrid::SendNavigationKeyEvent( int dir )
4932 {
4933 wxNavigationKeyEvent evt;
4934 evt.SetFlags(wxNavigationKeyEvent::FromTab|
4935 (dir?wxNavigationKeyEvent::IsForward:
4936 wxNavigationKeyEvent::IsBackward));
4937 evt.SetEventObject(this);
4938 m_canvas->GetEventHandler()->AddPendingEvent(evt);
4939 }
4940
4941
4942 int wxPropertyGrid::KeyEventToActions(wxKeyEvent &event, int* pSecond) const
4943 {
4944 // Translates wxKeyEvent to wxPG_ACTION_XXX
4945
4946 int keycode = event.GetKeyCode();
4947 int modifiers = event.GetModifiers();
4948
4949 wxASSERT( !(modifiers&~(0xFFFF)) );
4950
4951 int hashMapKey = (keycode & 0xFFFF) | ((modifiers & 0xFFFF) << 16);
4952
4953 wxPGHashMapI2I::const_iterator it = m_actionTriggers.find(hashMapKey);
4954
4955 if ( it == m_actionTriggers.end() )
4956 return 0;
4957
4958 if ( pSecond )
4959 {
4960 int second = (it->second>>16) & 0xFFFF;
4961 *pSecond = second;
4962 }
4963
4964 return (it->second & 0xFFFF);
4965 }
4966
4967 void wxPropertyGrid::AddActionTrigger( int action, int keycode, int modifiers )
4968 {
4969 wxASSERT( !(modifiers&~(0xFFFF)) );
4970
4971 int hashMapKey = (keycode & 0xFFFF) | ((modifiers & 0xFFFF) << 16);
4972
4973 wxPGHashMapI2I::iterator it = m_actionTriggers.find(hashMapKey);
4974
4975 if ( it != m_actionTriggers.end() )
4976 {
4977 // This key combination is already used
4978
4979 // Can add secondary?
4980 wxASSERT_MSG( !(it->second&~(0xFFFF)),
4981 wxT("You can only add up to two separate actions per key combination.") );
4982
4983 action = it->second | (action<<16);
4984 }
4985
4986 m_actionTriggers[hashMapKey] = action;
4987 }
4988
4989 void wxPropertyGrid::ClearActionTriggers( int action )
4990 {
4991 wxPGHashMapI2I::iterator it;
4992
4993 for ( it = m_actionTriggers.begin(); it != m_actionTriggers.end(); it++ )
4994 {
4995 if ( it->second == action )
4996 {
4997 m_actionTriggers.erase(it);
4998 }
4999 }
5000 }
5001
5002 static void CopyTextToClipboard( const wxString& text )
5003 {
5004 if ( wxTheClipboard->Open() )
5005 {
5006 // This data objects are held by the clipboard,
5007 // so do not delete them in the app.
5008 wxTheClipboard->SetData( new wxTextDataObject(text) );
5009 wxTheClipboard->Close();
5010 }
5011 }
5012
5013 void wxPropertyGrid::HandleKeyEvent(wxKeyEvent &event)
5014 {
5015 //
5016 // Handles key event when editor control is not focused.
5017 //
5018
5019 wxASSERT( !m_frozen );
5020 if ( m_frozen )
5021 return;
5022
5023 // Travelsal between items, collapsing/expanding, etc.
5024 int keycode = event.GetKeyCode();
5025
5026 if ( keycode == WXK_TAB )
5027 {
5028 SendNavigationKeyEvent( event.ShiftDown()?0:1 );
5029 return;
5030 }
5031
5032 // Ignore Alt and Control when they are down alone
5033 if ( keycode == WXK_ALT ||
5034 keycode == WXK_CONTROL )
5035 {
5036 event.Skip();
5037 return;
5038 }
5039
5040 int secondAction;
5041 int action = KeyEventToActions(event, &secondAction);
5042
5043 if ( m_selected )
5044 {
5045
5046 // Show dialog?
5047 if ( ButtonTriggerKeyTest(event) )
5048 return;
5049
5050 wxPGProperty* p = m_selected;
5051
5052 if ( action == wxPG_ACTION_COPY )
5053 {
5054 CopyTextToClipboard(p->GetDisplayedString());
5055 }
5056 else
5057 {
5058 // Travel and expand/collapse
5059 int selectDir = -2;
5060
5061 if ( p->GetChildCount() &&
5062 !(p->m_flags & wxPG_PROP_DISABLED)
5063 )
5064 {
5065 if ( action == wxPG_ACTION_COLLAPSE_PROPERTY || secondAction == wxPG_ACTION_COLLAPSE_PROPERTY )
5066 {
5067 if ( (m_windowStyle & wxPG_HIDE_MARGIN) || Collapse(p) )
5068 keycode = 0;
5069 }
5070 else if ( action == wxPG_ACTION_EXPAND_PROPERTY || secondAction == wxPG_ACTION_EXPAND_PROPERTY )
5071 {
5072 if ( (m_windowStyle & wxPG_HIDE_MARGIN) || Expand(p) )
5073 keycode = 0;
5074 }
5075 }
5076
5077 if ( keycode )
5078 {
5079 if ( action == wxPG_ACTION_PREV_PROPERTY || secondAction == wxPG_ACTION_PREV_PROPERTY )
5080 {
5081 selectDir = -1;
5082 }
5083 else if ( action == wxPG_ACTION_NEXT_PROPERTY || secondAction == wxPG_ACTION_NEXT_PROPERTY )
5084 {
5085 selectDir = 1;
5086 }
5087 else
5088 {
5089 event.Skip();
5090 }
5091
5092 }
5093
5094 if ( selectDir >= -1 )
5095 {
5096 p = wxPropertyGridIterator::OneStep( m_pState, wxPG_ITERATE_VISIBLE, p, selectDir );
5097 if ( p )
5098 DoSelectProperty(p);
5099 }
5100 }
5101 }
5102 else
5103 {
5104 // If nothing was selected, select the first item now
5105 // (or navigate out of tab).
5106 if ( action != wxPG_ACTION_CANCEL_EDIT && secondAction != wxPG_ACTION_CANCEL_EDIT )
5107 {
5108 wxPGProperty* p = wxPropertyGridInterface::GetFirst();
5109 if ( p ) DoSelectProperty(p);
5110 }
5111 }
5112 }
5113
5114 // -----------------------------------------------------------------------
5115
5116 // Potentially handles a keyboard event for editor controls.
5117 // Returns false if event should *not* be skipped (on true it can
5118 // be optionally skipped).
5119 // Basicly, false means that SelectProperty was called (or was about
5120 // to be called, if canDestroy was false).
5121 bool wxPropertyGrid::HandleChildKey( wxKeyEvent& event )
5122 {
5123 bool res = true;
5124
5125 if ( !m_selected || !m_wndEditor )
5126 {
5127 return true;
5128 }
5129
5130 int action = KeyEventToAction(event);
5131
5132 // Unfocus?
5133 if ( action == wxPG_ACTION_CANCEL_EDIT )
5134 {
5135 //
5136 // Esc cancels any changes
5137 if ( IsEditorsValueModified() )
5138 {
5139 EditorsValueWasNotModified();
5140
5141 // Update the control as well
5142 m_selected->GetEditorClass()->SetControlStringValue( m_selected,
5143 m_wndEditor,
5144 m_selected->GetDisplayedString() );
5145 }
5146
5147 OnValidationFailureReset(m_selected);
5148
5149 res = false;
5150
5151 UnfocusEditor();
5152 }
5153 else if ( action == wxPG_ACTION_COPY )
5154 {
5155 // NB: There is some problem with getting native cut-copy-paste keys to go through
5156 // for embedded editor wxTextCtrl. This is why we emulate.
5157 //
5158 wxTextCtrl* tc = GetEditorTextCtrl();
5159 if ( tc )
5160 {
5161 wxString sel = tc->GetStringSelection();
5162 if ( sel.length() )
5163 CopyTextToClipboard(sel);
5164 }
5165 else
5166 {
5167 CopyTextToClipboard(m_selected->GetDisplayedString());
5168 }
5169 }
5170 else if ( action == wxPG_ACTION_CUT )
5171 {
5172 wxTextCtrl* tc = GetEditorTextCtrl();
5173 if ( tc )
5174 {
5175 long from, to;
5176 tc->GetSelection(&from, &to);
5177 if ( from < to )
5178 {
5179 CopyTextToClipboard(tc->GetStringSelection());
5180 tc->Remove(from, to);
5181 }
5182 }
5183 }
5184 else if ( action == wxPG_ACTION_PASTE )
5185 {
5186 wxTextCtrl* tc = GetEditorTextCtrl();
5187 if ( tc )
5188 {
5189 if (wxTheClipboard->Open())
5190 {
5191 if (wxTheClipboard->IsSupported( wxDF_TEXT ))
5192 {
5193 wxTextDataObject data;
5194 wxTheClipboard->GetData( data );
5195 long from, to;
5196 tc->GetSelection(&from, &to);
5197 if ( from < to )
5198 {
5199 tc->Remove(from, to);
5200 tc->WriteText(data.GetText());
5201 }
5202 else
5203 {
5204 tc->WriteText(data.GetText());
5205 }
5206 }
5207 wxTheClipboard->Close();
5208 }
5209 }
5210 }
5211
5212 return res;
5213 }
5214
5215 // -----------------------------------------------------------------------
5216
5217 void wxPropertyGrid::OnKey( wxKeyEvent &event )
5218 {
5219
5220 //
5221 // Events to editor controls should get relayed here.
5222 //
5223 wxWindow* focused = wxWindow::FindFocus();
5224
5225 wxWindow* primaryCtrl = GetEditorControl();
5226
5227 if ( primaryCtrl &&
5228 (focused==primaryCtrl
5229 || m_editorFocused) )
5230 {
5231 // Child key must be processed here, since it can
5232 // destroy the control which is referred by its own
5233 // event handling.
5234 HandleChildKey( event );
5235 }
5236 else
5237 HandleKeyEvent( event );
5238 }
5239
5240 // -----------------------------------------------------------------------
5241
5242 void wxPropertyGrid::OnKeyUp(wxKeyEvent &event)
5243 {
5244 m_keyComboConsumed = 0;
5245
5246 event.Skip();
5247 }
5248
5249 // -----------------------------------------------------------------------
5250
5251 void wxPropertyGrid::OnNavigationKey( wxNavigationKeyEvent& event )
5252 {
5253 // Ignore events that occur very close to focus set
5254 if ( m_iFlags & wxPG_FL_IGNORE_NEXT_NAVKEY )
5255 {
5256 m_iFlags &= ~(wxPG_FL_IGNORE_NEXT_NAVKEY);
5257 event.Skip();
5258 return;
5259 }
5260
5261 wxPGProperty* next = (wxPGProperty*) NULL;
5262
5263 int dir = event.GetDirection()?1:-1;
5264
5265 if ( m_selected )
5266 {
5267 if ( dir == 1 && (m_wndEditor || m_wndEditor2) )
5268 {
5269 wxWindow* focused = wxWindow::FindFocus();
5270
5271 wxWindow* wndToCheck = GetEditorControl();
5272
5273 // ODComboBox focus goes to its text ctrl, so we need to use it instead
5274 if ( wndToCheck && wndToCheck->IsKindOf(CLASSINFO(wxOwnerDrawnComboBox)) )
5275 {
5276 wxTextCtrl* comboTextCtrl = ((wxOwnerDrawnComboBox*)wndToCheck)->GetTextCtrl();
5277 if ( comboTextCtrl )
5278 wndToCheck = comboTextCtrl;
5279 }
5280
5281 /*
5282 // Because of problems navigating from wxButton, do not go to it.
5283 if ( !wndToCheck )
5284 {
5285 // No primary, use secondary
5286 wndToCheck = m_wndEditor2;
5287 }
5288 // If it has editor button, focus to it after the primary editor.
5289 // NB: Doesn't work since wxButton on wxMSW doesn't seem to propagate
5290 // key events (yes, I'm using wxWANTS_CHARS with it, and yes I
5291 // have somewhat debugged in window.cpp itself).
5292 else if ( focused == wndToCheck &&
5293 m_wndEditor2 &&
5294 !(GetExtraStyle() & wxPG_EX_NO_TAB_TO_BUTTON) )
5295 {
5296 wndToCheck = m_wndEditor2;
5297 wxLogDebug(wxT("Exp1"));
5298 }
5299 */
5300
5301 if ( focused != wndToCheck &&
5302 wndToCheck )
5303 {
5304 wndToCheck->SetFocus();
5305
5306 // Select all text in wxTextCtrl etc.
5307 if ( m_wndEditor && wndToCheck == m_wndEditor )
5308 m_selected->GetEditorClass()->OnFocus(m_selected,wndToCheck);
5309
5310 m_editorFocused = 1;
5311 next = m_selected;
5312 }
5313 }
5314
5315 if ( !next )
5316 {
5317 next = wxPropertyGridIterator::OneStep(m_pState, wxPG_ITERATE_VISIBLE, m_selected, dir);
5318
5319 if ( next )
5320 {
5321 // This allows preventing NavigateOut to occur
5322 DoSelectProperty( next, wxPG_SEL_FOCUS );
5323 }
5324 }
5325 }
5326
5327 if ( !next )
5328 event.Skip();
5329 }
5330
5331 // -----------------------------------------------------------------------
5332
5333 bool wxPropertyGrid::ButtonTriggerKeyTest( wxKeyEvent &event )
5334 {
5335 int keycode = event.GetKeyCode();
5336
5337 // Does the keycode trigger button?
5338 if ( keycode == m_pushButKeyCode &&
5339 m_wndEditor2 &&
5340 (!m_pushButKeyCodeNeedsAlt || event.AltDown()) &&
5341 (!m_pushButKeyCodeNeedsCtrl || event.ControlDown()) )
5342 {
5343 m_keyComboConsumed = 1;
5344
5345 wxCommandEvent evt(wxEVT_COMMAND_BUTTON_CLICKED,m_wndEditor2->GetId());
5346 GetEventHandler()->AddPendingEvent(evt);
5347 return true;
5348 }
5349
5350 return false;
5351 }
5352
5353 // -----------------------------------------------------------------------
5354
5355 void wxPropertyGrid::OnChildKeyDown( wxKeyEvent &event )
5356 {
5357 int keycode = event.GetKeyCode();
5358
5359 // Ignore Alt and Control when they are down alone
5360 if ( keycode == WXK_ALT ||
5361 keycode == WXK_CONTROL )
5362 {
5363 event.Skip();
5364 return;
5365 }
5366
5367 if ( ButtonTriggerKeyTest(event) )
5368 return;
5369
5370 if ( HandleChildKey(event) == true )
5371 event.Skip();
5372
5373 GetEventHandler()->AddPendingEvent(event);
5374 }
5375
5376 void wxPropertyGrid::OnChildKeyUp( wxKeyEvent &event )
5377 {
5378 m_keyComboConsumed = 0;
5379
5380 GetEventHandler()->AddPendingEvent(event);
5381
5382 event.Skip();
5383 }
5384
5385 // -----------------------------------------------------------------------
5386 // wxPropertyGrid miscellaneous event handling
5387 // -----------------------------------------------------------------------
5388
5389 void wxPropertyGrid::OnIdle( wxIdleEvent& WXUNUSED(event) )
5390 {
5391 //
5392 // Check if the focus is in this control or one of its children
5393 wxWindow* newFocused = wxWindow::FindFocus();
5394
5395 if ( newFocused != m_curFocused )
5396 HandleFocusChange( newFocused );
5397 }
5398
5399 // Called by focus event handlers. newFocused is the window that becomes focused.
5400 void wxPropertyGrid::HandleFocusChange( wxWindow* newFocused )
5401 {
5402 unsigned int oldFlags = m_iFlags;
5403
5404 m_iFlags &= ~(wxPG_FL_FOCUSED);
5405
5406 wxWindow* parent = newFocused;
5407
5408 // This must be one of nextFocus' parents.
5409 while ( parent )
5410 {
5411 // Use m_eventObject, which is either wxPropertyGrid or
5412 // wxPropertyGridManager, as appropriate.
5413 if ( parent == m_eventObject )
5414 {
5415 m_iFlags |= wxPG_FL_FOCUSED;
5416 break;
5417 }
5418 parent = parent->GetParent();
5419 }
5420
5421 m_curFocused = newFocused;
5422
5423 if ( (m_iFlags & wxPG_FL_FOCUSED) !=
5424 (oldFlags & wxPG_FL_FOCUSED) )
5425 {
5426 // On each focus kill, mark the next nav key event
5427 // to be ignored (can't do on set focus since the
5428 // event would occur before it).
5429 if ( !(m_iFlags & wxPG_FL_FOCUSED) )
5430 {
5431 m_iFlags |= wxPG_FL_IGNORE_NEXT_NAVKEY;
5432
5433 // Need to store changed value
5434 CommitChangesFromEditor();
5435 }
5436 else
5437 {
5438 /*
5439 //
5440 // Preliminary code for tab-order respecting
5441 // tab-traversal (but should be moved to
5442 // OnNav handler)
5443 //
5444 wxWindow* prevFocus = event.GetWindow();
5445 wxWindow* useThis = this;
5446 if ( m_iFlags & wxPG_FL_IN_MANAGER )
5447 useThis = GetParent();
5448
5449 if ( prevFocus &&
5450 prevFocus->GetParent() == useThis->GetParent() )
5451 {
5452 wxList& children = useThis->GetParent()->GetChildren();
5453
5454 wxNode* node = children.Find(prevFocus);
5455
5456 if ( node->GetNext() &&
5457 useThis == node->GetNext()->GetData() )
5458 DoSelectProperty(GetFirst());
5459 else if ( node->GetPrevious () &&
5460 useThis == node->GetPrevious()->GetData() )
5461 DoSelectProperty(GetLastProperty());
5462
5463 }
5464 */
5465
5466 m_iFlags &= ~(wxPG_FL_IGNORE_NEXT_NAVKEY);
5467 }
5468
5469 // Redraw selected
5470 if ( m_selected && (m_iFlags & wxPG_FL_INITIALIZED) )
5471 DrawItem( m_selected );
5472 }
5473 }
5474
5475 void wxPropertyGrid::OnFocusEvent( wxFocusEvent& event )
5476 {
5477 if ( event.GetEventType() == wxEVT_SET_FOCUS )
5478 HandleFocusChange((wxWindow*)event.GetEventObject());
5479 // Line changed to "else" when applying wxPropertyGrid patch #1675902
5480 //else if ( event.GetWindow() )
5481 else
5482 HandleFocusChange(event.GetWindow());
5483
5484 event.Skip();
5485 }
5486
5487 // -----------------------------------------------------------------------
5488
5489 void wxPropertyGrid::OnChildFocusEvent( wxChildFocusEvent& event )
5490 {
5491 HandleFocusChange((wxWindow*)event.GetEventObject());
5492
5493 //
5494 // event.Skip() being commented out is aworkaround for bug reported
5495 // in ticket #4840 (wxScrolledWindow problem with automatic scrolling).
5496 //event.Skip();
5497 }
5498
5499 // -----------------------------------------------------------------------
5500
5501 void wxPropertyGrid::OnScrollEvent( wxScrollWinEvent &event )
5502 {
5503 m_iFlags |= wxPG_FL_SCROLLED;
5504
5505 event.Skip();
5506 }
5507
5508 // -----------------------------------------------------------------------
5509
5510 void wxPropertyGrid::OnCaptureChange( wxMouseCaptureChangedEvent& WXUNUSED(event) )
5511 {
5512 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED )
5513 {
5514 m_iFlags &= ~(wxPG_FL_MOUSE_CAPTURED);
5515 }
5516 }
5517
5518 // -----------------------------------------------------------------------
5519 // Property editor related functions
5520 // -----------------------------------------------------------------------
5521
5522 // noDefCheck = true prevents infinite recursion.
5523 wxPGEditor* wxPropertyGrid::RegisterEditorClass( wxPGEditor* editorclass,
5524 const wxString& name,
5525 bool noDefCheck )
5526 {
5527 wxASSERT( editorclass );
5528
5529 if ( !noDefCheck && wxPGGlobalVars->m_mapEditorClasses.empty() )
5530 RegisterDefaultEditors();
5531
5532 wxPGGlobalVars->m_mapEditorClasses[name] = (void*)editorclass;
5533
5534 return editorclass;
5535 }
5536
5537 // Registers all default editor classes
5538 void wxPropertyGrid::RegisterDefaultEditors()
5539 {
5540 wxPGRegisterDefaultEditorClass( TextCtrl );
5541 wxPGRegisterDefaultEditorClass( Choice );
5542 wxPGRegisterDefaultEditorClass( ComboBox );
5543 wxPGRegisterDefaultEditorClass( TextCtrlAndButton );
5544 #if wxPG_INCLUDE_CHECKBOX
5545 wxPGRegisterDefaultEditorClass( CheckBox );
5546 #endif
5547 wxPGRegisterDefaultEditorClass( ChoiceAndButton );
5548
5549 // Register SpinCtrl etc. editors before use
5550 RegisterAdditionalEditors();
5551 }
5552
5553 // -----------------------------------------------------------------------
5554 // wxPGStringTokenizer
5555 // Needed to handle C-style string lists (e.g. "str1" "str2")
5556 // -----------------------------------------------------------------------
5557
5558 wxPGStringTokenizer::wxPGStringTokenizer( const wxString& str, wxChar delimeter )
5559 : m_str(&str), m_curPos(str.begin()), m_delimeter(delimeter)
5560 {
5561 }
5562
5563 wxPGStringTokenizer::~wxPGStringTokenizer()
5564 {
5565 }
5566
5567 bool wxPGStringTokenizer::HasMoreTokens()
5568 {
5569 const wxString& str = *m_str;
5570
5571 wxString::const_iterator i = m_curPos;
5572
5573 wxUniChar delim = m_delimeter;
5574 wxUniChar a;
5575 wxUniChar prev_a = wxT('\0');
5576
5577 bool inToken = false;
5578
5579 while ( i != str.end() )
5580 {
5581 a = *i;
5582
5583 if ( !inToken )
5584 {
5585 if ( a == delim )
5586 {
5587 inToken = true;
5588 m_readyToken.clear();
5589 }
5590 }
5591 else
5592 {
5593 if ( prev_a != wxT('\\') )
5594 {
5595 if ( a != delim )
5596 {
5597 if ( a != wxT('\\') )
5598 m_readyToken << a;
5599 }
5600 else
5601 {
5602 i++;
5603 m_curPos = i;
5604 return true;
5605 }
5606 prev_a = a;
5607 }
5608 else
5609 {
5610 m_readyToken << a;
5611 prev_a = wxT('\0');
5612 }
5613 }
5614 i++;
5615 }
5616
5617 m_curPos = str.end();
5618
5619 if ( inToken )
5620 return true;
5621
5622 return false;
5623 }
5624
5625 wxString wxPGStringTokenizer::GetNextToken()
5626 {
5627 return m_readyToken;
5628 }
5629
5630 // -----------------------------------------------------------------------
5631 // wxPGChoiceEntry
5632 // -----------------------------------------------------------------------
5633
5634 wxPGChoiceEntry::wxPGChoiceEntry()
5635 : wxPGCell(), m_value(wxPG_INVALID_VALUE)
5636 {
5637 }
5638
5639 wxPGChoiceEntry::wxPGChoiceEntry( const wxPGChoiceEntry& entry )
5640 : wxPGCell( entry.GetText(), entry.GetBitmap(),
5641 entry.GetFgCol(), entry.GetBgCol() ), m_value(entry.GetValue())
5642 {
5643 }
5644
5645 // -----------------------------------------------------------------------
5646 // wxPGChoicesData
5647 // -----------------------------------------------------------------------
5648
5649 wxPGChoicesData::wxPGChoicesData()
5650 {
5651 m_refCount = 1;
5652 }
5653
5654 wxPGChoicesData::~wxPGChoicesData()
5655 {
5656 Clear();
5657 }
5658
5659 void wxPGChoicesData::Clear()
5660 {
5661 unsigned int i;
5662
5663 for ( i=0; i<m_items.size(); i++ )
5664 {
5665 delete Item(i);
5666 }
5667
5668 #if wxUSE_STL
5669 m_items.resize(0);
5670 #else
5671 m_items.Empty();
5672 #endif
5673 }
5674
5675 void wxPGChoicesData::CopyDataFrom( wxPGChoicesData* data )
5676 {
5677 wxASSERT( m_items.size() == 0 );
5678
5679 unsigned int i;
5680
5681 for ( i=0; i<data->GetCount(); i++ )
5682 m_items.push_back( new wxPGChoiceEntry(*data->Item(i)) );
5683 }
5684
5685 // -----------------------------------------------------------------------
5686 // wxPGChoices
5687 // -----------------------------------------------------------------------
5688
5689 wxPGChoiceEntry& wxPGChoices::Add( const wxString& label, int value )
5690 {
5691 EnsureData();
5692
5693 wxPGChoiceEntry* p = new wxPGChoiceEntry(label, value);
5694 m_data->Insert( -1, p );
5695 return *p;
5696 }
5697
5698 // -----------------------------------------------------------------------
5699
5700 wxPGChoiceEntry& wxPGChoices::Add( const wxString& label, const wxBitmap& bitmap, int value )
5701 {
5702 EnsureData();
5703
5704 wxPGChoiceEntry* p = new wxPGChoiceEntry(label, value);
5705 p->SetBitmap(bitmap);
5706 m_data->Insert( -1, p );
5707 return *p;
5708 }
5709
5710 // -----------------------------------------------------------------------
5711
5712 wxPGChoiceEntry& wxPGChoices::Insert( const wxPGChoiceEntry& entry, int index )
5713 {
5714 EnsureData();
5715
5716 wxPGChoiceEntry* p = new wxPGChoiceEntry(entry);
5717 m_data->Insert(index, p);
5718 return *p;
5719 }
5720
5721 // -----------------------------------------------------------------------
5722
5723 wxPGChoiceEntry& wxPGChoices::Insert( const wxString& label, int index, int value )
5724 {
5725 EnsureData();
5726
5727 wxPGChoiceEntry* p = new wxPGChoiceEntry(label, value);
5728 m_data->Insert( index, p );
5729 return *p;
5730 }
5731
5732 // -----------------------------------------------------------------------
5733
5734 wxPGChoiceEntry& wxPGChoices::AddAsSorted( const wxString& label, int value )
5735 {
5736 EnsureData();
5737
5738 size_t index = 0;
5739
5740 while ( index < GetCount() )
5741 {
5742 int cmpRes = GetLabel(index).Cmp(label);
5743 if ( cmpRes > 0 )
5744 break;
5745 index++;
5746 }
5747
5748 wxPGChoiceEntry* p = new wxPGChoiceEntry(label, value);
5749 m_data->Insert( index, p );
5750 return *p;
5751 }
5752
5753 // -----------------------------------------------------------------------
5754
5755 void wxPGChoices::Add( const wxChar** labels, const ValArrItem* values )
5756 {
5757 EnsureData();
5758
5759 unsigned int itemcount = 0;
5760 const wxChar** p = &labels[0];
5761 while ( *p ) { p++; itemcount++; }
5762
5763 unsigned int i;
5764 for ( i = 0; i < itemcount; i++ )
5765 {
5766 int value = wxPG_INVALID_VALUE;
5767 if ( values )
5768 value = values[i];
5769 m_data->Insert( -1, new wxPGChoiceEntry(labels[i], value) );
5770 }
5771 }
5772
5773 // -----------------------------------------------------------------------
5774
5775 void wxPGChoices::Add( const wxArrayString& arr, const ValArrItem* values )
5776 {
5777 EnsureData();
5778
5779 unsigned int i;
5780 unsigned int itemcount = arr.size();
5781
5782 for ( i = 0; i < itemcount; i++ )
5783 {
5784 int value = wxPG_INVALID_VALUE;
5785 if ( values )
5786 value = values[i];
5787 m_data->Insert( -1, new wxPGChoiceEntry(arr[i], value) );
5788 }
5789 }
5790
5791 // -----------------------------------------------------------------------
5792
5793 void wxPGChoices::Add( const wxArrayString& arr, const wxArrayInt& arrint )
5794 {
5795 EnsureData();
5796
5797 unsigned int i;
5798 unsigned int itemcount = arr.size();
5799
5800 for ( i = 0; i < itemcount; i++ )
5801 {
5802 int value = wxPG_INVALID_VALUE;
5803 if ( &arrint && arrint.size() )
5804 value = arrint[i];
5805 m_data->Insert( -1, new wxPGChoiceEntry(arr[i], value) );
5806 }
5807 }
5808
5809 // -----------------------------------------------------------------------
5810
5811 void wxPGChoices::RemoveAt(size_t nIndex, size_t count)
5812 {
5813 wxASSERT( m_data->m_refCount != 0xFFFFFFF );
5814 unsigned int i;
5815 for ( i=nIndex; i<(nIndex+count); i++)
5816 delete m_data->Item(i);
5817 m_data->m_items.RemoveAt(nIndex, count);
5818 }
5819
5820 // -----------------------------------------------------------------------
5821
5822 int wxPGChoices::Index( const wxString& str ) const
5823 {
5824 if ( IsOk() )
5825 {
5826 unsigned int i;
5827 for ( i=0; i< m_data->GetCount(); i++ )
5828 {
5829 if ( m_data->Item(i)->GetText() == str )
5830 return i;
5831 }
5832 }
5833 return -1;
5834 }
5835
5836 // -----------------------------------------------------------------------
5837
5838 int wxPGChoices::Index( int val ) const
5839 {
5840 if ( IsOk() )
5841 {
5842 unsigned int i;
5843 for ( i=0; i< m_data->GetCount(); i++ )
5844 {
5845 if ( m_data->Item(i)->GetValue() == val )
5846 return i;
5847 }
5848 }
5849 return -1;
5850 }
5851
5852 // -----------------------------------------------------------------------
5853
5854 wxArrayString wxPGChoices::GetLabels() const
5855 {
5856 wxArrayString arr;
5857 unsigned int i;
5858
5859 if ( this && IsOk() )
5860 for ( i=0; i<GetCount(); i++ )
5861 arr.push_back(GetLabel(i));
5862
5863 return arr;
5864 }
5865
5866 // -----------------------------------------------------------------------
5867
5868 bool wxPGChoices::HasValues() const
5869 {
5870 return true;
5871 }
5872
5873 // -----------------------------------------------------------------------
5874
5875 wxArrayInt wxPGChoices::GetValuesForStrings( const wxArrayString& strings ) const
5876 {
5877 wxArrayInt arr;
5878
5879 if ( IsOk() )
5880 {
5881 unsigned int i;
5882 for ( i=0; i< strings.size(); i++ )
5883 {
5884 int index = Index(strings[i]);
5885 if ( index >= 0 )
5886 arr.Add(GetValue(index));
5887 else
5888 arr.Add(wxPG_INVALID_VALUE);
5889 }
5890 }
5891
5892 return arr;
5893 }
5894
5895 // -----------------------------------------------------------------------
5896
5897 wxArrayInt wxPGChoices::GetIndicesForStrings( const wxArrayString& strings,
5898 wxArrayString* unmatched ) const
5899 {
5900 wxArrayInt arr;
5901
5902 if ( IsOk() )
5903 {
5904 unsigned int i;
5905 for ( i=0; i< strings.size(); i++ )
5906 {
5907 const wxString& str = strings[i];
5908 int index = Index(str);
5909 if ( index >= 0 )
5910 arr.Add(index);
5911 else if ( unmatched )
5912 unmatched->Add(str);
5913 }
5914 }
5915
5916 return arr;
5917 }
5918
5919 // -----------------------------------------------------------------------
5920
5921 void wxPGChoices::AssignData( wxPGChoicesData* data )
5922 {
5923 Free();
5924
5925 if ( data != wxPGChoicesEmptyData )
5926 {
5927 m_data = data;
5928 data->m_refCount++;
5929 }
5930 }
5931
5932 // -----------------------------------------------------------------------
5933
5934 void wxPGChoices::Init()
5935 {
5936 m_data = wxPGChoicesEmptyData;
5937 }
5938
5939 // -----------------------------------------------------------------------
5940
5941 void wxPGChoices::Free()
5942 {
5943 if ( m_data != wxPGChoicesEmptyData )
5944 {
5945 m_data->DecRef();
5946 m_data = wxPGChoicesEmptyData;
5947 }
5948 }
5949
5950 // -----------------------------------------------------------------------
5951 // wxPropertyGridEvent
5952 // -----------------------------------------------------------------------
5953
5954 IMPLEMENT_DYNAMIC_CLASS(wxPropertyGridEvent, wxCommandEvent)
5955
5956
5957 DEFINE_EVENT_TYPE( wxEVT_PG_SELECTED )
5958 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGING )
5959 DEFINE_EVENT_TYPE( wxEVT_PG_CHANGED )
5960 DEFINE_EVENT_TYPE( wxEVT_PG_HIGHLIGHTED )
5961 DEFINE_EVENT_TYPE( wxEVT_PG_RIGHT_CLICK )
5962 DEFINE_EVENT_TYPE( wxEVT_PG_PAGE_CHANGED )
5963 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_EXPANDED )
5964 DEFINE_EVENT_TYPE( wxEVT_PG_ITEM_COLLAPSED )
5965 DEFINE_EVENT_TYPE( wxEVT_PG_DOUBLE_CLICK )
5966
5967
5968 // -----------------------------------------------------------------------
5969
5970 void wxPropertyGridEvent::Init()
5971 {
5972 m_validationInfo = NULL;
5973 m_canVeto = false;
5974 m_wasVetoed = false;
5975 }
5976
5977 // -----------------------------------------------------------------------
5978
5979 wxPropertyGridEvent::wxPropertyGridEvent(wxEventType commandType, int id)
5980 : wxCommandEvent(commandType,id)
5981 {
5982 m_property = NULL;
5983 Init();
5984 }
5985
5986 // -----------------------------------------------------------------------
5987
5988 wxPropertyGridEvent::wxPropertyGridEvent(const wxPropertyGridEvent& event)
5989 : wxCommandEvent(event)
5990 {
5991 m_eventType = event.GetEventType();
5992 m_eventObject = event.m_eventObject;
5993 m_pg = event.m_pg;
5994 m_property = event.m_property;
5995 m_validationInfo = event.m_validationInfo;
5996 m_canVeto = event.m_canVeto;
5997 m_wasVetoed = event.m_wasVetoed;
5998 }
5999
6000 // -----------------------------------------------------------------------
6001
6002 wxPropertyGridEvent::~wxPropertyGridEvent()
6003 {
6004 }
6005
6006 // -----------------------------------------------------------------------
6007
6008 wxEvent* wxPropertyGridEvent::Clone() const
6009 {
6010 return new wxPropertyGridEvent( *this );
6011 }
6012
6013 void wxPropertyGrid::SetPropertyAttributeAll( const wxString& attrName, wxVariant value )
6014 {
6015 DoSetPropertyAttribute(GetRoot(), attrName, value, wxPG_RECURSE);
6016 }
6017
6018 // -----------------------------------------------------------------------
6019 // wxPropertyGridPopulator
6020 // -----------------------------------------------------------------------
6021
6022 wxPropertyGridPopulator::wxPropertyGridPopulator()
6023 {
6024 m_state = NULL;
6025 m_pg = NULL;
6026 wxPGGlobalVars->m_offline++;
6027 }
6028
6029 // -----------------------------------------------------------------------
6030
6031 void wxPropertyGridPopulator::SetState( wxPropertyGridPageState* state )
6032 {
6033 m_state = state;
6034 m_propHierarchy.clear();
6035 }
6036
6037 // -----------------------------------------------------------------------
6038
6039 void wxPropertyGridPopulator::SetGrid( wxPropertyGrid* pg )
6040 {
6041 m_pg = pg;
6042 pg->Freeze();
6043 }
6044
6045 // -----------------------------------------------------------------------
6046
6047 wxPropertyGridPopulator::~wxPropertyGridPopulator()
6048 {
6049 //
6050 // Free unused sets of choices
6051 wxPGHashMapS2P::iterator it;
6052
6053 for( it = m_dictIdChoices.begin(); it != m_dictIdChoices.end(); ++it )
6054 {
6055 wxPGChoicesData* data = (wxPGChoicesData*) it->second;
6056 data->DecRef();
6057 }
6058
6059 if ( m_pg )
6060 {
6061 m_pg->Thaw();
6062 m_pg->GetPanel()->Refresh();
6063 }
6064 wxPGGlobalVars->m_offline--;
6065 }
6066
6067 // -----------------------------------------------------------------------
6068
6069 wxPGProperty* wxPropertyGridPopulator::Add( const wxString& propClass,
6070 const wxString& propLabel,
6071 const wxString& propName,
6072 const wxString* propValue,
6073 wxPGChoices* pChoices )
6074 {
6075 wxClassInfo* classInfo = wxClassInfo::FindClass(propClass);
6076 wxPGProperty* parent = GetCurParent();
6077
6078 if ( parent->HasFlag(wxPG_PROP_AGGREGATE) )
6079 {
6080 ProcessError(wxString::Format(wxT("new children cannot be added to '%s'"),parent->GetName().c_str()));
6081 return NULL;
6082 }
6083
6084 if ( !classInfo || !classInfo->IsKindOf(CLASSINFO(wxPGProperty)) )
6085 {
6086 ProcessError(wxString::Format(wxT("'%s' is not valid property class"),propClass.c_str()));
6087 return NULL;
6088 }
6089
6090 wxPGProperty* property = (wxPGProperty*) classInfo->CreateObject();
6091
6092 property->SetLabel(propLabel);
6093 property->DoSetName(propName);
6094
6095 if ( pChoices && pChoices->IsOk() )
6096 property->SetChoices(*pChoices);
6097
6098 m_state->DoInsert(parent, -1, property);
6099
6100 if ( propValue )
6101 property->SetValueFromString( *propValue, wxPG_FULL_VALUE );
6102
6103 return property;
6104 }
6105
6106 // -----------------------------------------------------------------------
6107
6108 void wxPropertyGridPopulator::AddChildren( wxPGProperty* property )
6109 {
6110 m_propHierarchy.push_back(property);
6111 DoScanForChildren();
6112 m_propHierarchy.pop_back();
6113 }
6114
6115 // -----------------------------------------------------------------------
6116
6117 wxPGChoices wxPropertyGridPopulator::ParseChoices( const wxString& choicesString,
6118 const wxString& idString )
6119 {
6120 wxPGChoices choices;
6121
6122 // Using id?
6123 if ( choicesString[0] == wxT('@') )
6124 {
6125 wxString ids = choicesString.substr(1);
6126 wxPGHashMapS2P::iterator it = m_dictIdChoices.find(ids);
6127 if ( it == m_dictIdChoices.end() )
6128 ProcessError(wxString::Format(wxT("No choices defined for id '%s'"),ids.c_str()));
6129 else
6130 choices.AssignData((wxPGChoicesData*)it->second);
6131 }
6132 else
6133 {
6134 bool found = false;
6135 if ( idString.length() )
6136 {
6137 wxPGHashMapS2P::iterator it = m_dictIdChoices.find(idString);
6138 if ( it != m_dictIdChoices.end() )
6139 {
6140 choices.AssignData((wxPGChoicesData*)it->second);
6141 found = true;
6142 }
6143 }
6144
6145 if ( !found )
6146 {
6147 // Parse choices string
6148 wxString::const_iterator it = choicesString.begin();
6149 wxString label;
6150 wxString value;
6151 int state = 0;
6152 bool labelValid = false;
6153
6154 for ( ; it != choicesString.end(); it++ )
6155 {
6156 wxChar c = *it;
6157
6158 if ( state != 1 )
6159 {
6160 if ( c == wxT('"') )
6161 {
6162 if ( labelValid )
6163 {
6164 long l;
6165 if ( !value.ToLong(&l, 0) ) l = wxPG_INVALID_VALUE;
6166 choices.Add(label, l);
6167 }
6168 labelValid = false;
6169 //wxLogDebug(wxT("%s, %s"),label.c_str(),value.c_str());
6170 value.clear();
6171 label.clear();
6172 state = 1;
6173 }
6174 else if ( c == wxT('=') )
6175 {
6176 if ( labelValid )
6177 {
6178 state = 2;
6179 }
6180 }
6181 else if ( state == 2 && (wxIsalnum(c) || c == wxT('x')) )
6182 {
6183 value << c;
6184 }
6185 }
6186 else
6187 {
6188 if ( c == wxT('"') )
6189 {
6190 state = 0;
6191 labelValid = true;
6192 }
6193 else
6194 label << c;
6195 }
6196 }
6197
6198 if ( labelValid )
6199 {
6200 long l;
6201 if ( !value.ToLong(&l, 0) ) l = wxPG_INVALID_VALUE;
6202 choices.Add(label, l);
6203 }
6204
6205 if ( !choices.IsOk() )
6206 {
6207 choices.EnsureData();
6208 }
6209
6210 // Assign to id
6211 if ( idString.length() )
6212 m_dictIdChoices[idString] = choices.GetData();
6213 }
6214 }
6215
6216 return choices;
6217 }
6218
6219 // -----------------------------------------------------------------------
6220
6221 bool wxPropertyGridPopulator::ToLongPCT( const wxString& s, long* pval, long max )
6222 {
6223 if ( s.Last() == wxT('%') )
6224 {
6225 wxString s2 = s.substr(0,s.length()-1);
6226 long val;
6227 if ( s2.ToLong(&val, 10) )
6228 {
6229 *pval = (val*max)/100;
6230 return true;
6231 }
6232 return false;
6233 }
6234
6235 return s.ToLong(pval, 10);
6236 }
6237
6238 // -----------------------------------------------------------------------
6239
6240 bool wxPropertyGridPopulator::AddAttribute( const wxString& name,
6241 const wxString& type,
6242 const wxString& value )
6243 {
6244 int l = m_propHierarchy.size();
6245 if ( !l )
6246 return false;
6247
6248 wxPGProperty* p = m_propHierarchy[l-1];
6249 wxString valuel = value.Lower();
6250 wxVariant variant;
6251
6252 if ( type.length() == 0 )
6253 {
6254 long v;
6255
6256 // Auto-detect type
6257 if ( valuel == wxT("true") || valuel == wxT("yes") || valuel == wxT("1") )
6258 variant = true;
6259 else if ( valuel == wxT("false") || valuel == wxT("no") || valuel == wxT("0") )
6260 variant = false;
6261 else if ( value.ToLong(&v, 0) )
6262 variant = v;
6263 else
6264 variant = value;
6265 }
6266 else
6267 {
6268 if ( type == wxT("string") )
6269 {
6270 variant = value;
6271 }
6272 else if ( type == wxT("int") )
6273 {
6274 long v = 0;
6275 value.ToLong(&v, 0);
6276 variant = v;
6277 }
6278 else if ( type == wxT("bool") )
6279 {
6280 if ( valuel == wxT("true") || valuel == wxT("yes") || valuel == wxT("1") )
6281 variant = true;
6282 else
6283 variant = false;
6284 }
6285 else
6286 {
6287 ProcessError(wxString::Format(wxT("Invalid attribute type '%s'"),type.c_str()));
6288 return false;
6289 }
6290 }
6291
6292 p->SetAttribute( name, variant );
6293
6294 return true;
6295 }
6296
6297 // -----------------------------------------------------------------------
6298
6299 void wxPropertyGridPopulator::ProcessError( const wxString& msg )
6300 {
6301 wxLogError(_("Error in resource: %s"),msg.c_str());
6302 }
6303
6304 // -----------------------------------------------------------------------
6305
6306 #endif // wxUSE_PROPGRID