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