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