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