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