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