1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/manager.h
3 // Purpose: wxPropertyGridManager
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROPGRID_MANAGER_H_
13 #define _WX_PROPGRID_MANAGER_H_
17 #include "wx/propgrid/propgrid.h"
19 #include "wx/dcclient.h"
20 #include "wx/scrolwin.h"
21 #include "wx/toolbar.h"
22 #include "wx/stattext.h"
23 #include "wx/button.h"
24 #include "wx/textctrl.h"
25 #include "wx/dialog.h"
27 // -----------------------------------------------------------------------
30 extern WXDLLIMPEXP_PROPGRID
const wxChar
*wxPropertyGridManagerNameStr
;
33 /** @class wxPropertyGridPage
35 Holder of property grid page information. You can subclass this and
36 give instance in wxPropertyGridManager::AddPage. It inherits from
37 wxEvtHandler and can be used to process events specific to this
38 page (id of events will still be same as manager's). If you don't
39 want to use it to process all events of the page, you need to
40 return false in the derived wxPropertyGridPage::IsHandlingAllEvents.
42 Please note that wxPropertyGridPage lacks many non-const property
43 manipulation functions found in wxPropertyGridManager. Please use
44 parent manager (m_manager member variable) when needed.
46 Please note that most member functions are inherited and as such not
47 documented on this page. This means you will probably also want to read
48 wxPropertyGridInterface class reference.
50 @section propgridpage_event_handling Event Handling
52 wxPropertyGridPage receives events emitted by its wxPropertyGridManager, but
53 only those events that are specific to that page. If
54 wxPropertyGridPage::IsHandlingAllEvents returns false, then unhandled
55 events are sent to the manager's parent, as usual.
57 See @ref propgrid_event_handling "wxPropertyGrid Event Handling"
63 class WXDLLIMPEXP_PROPGRID wxPropertyGridPage
: public wxEvtHandler
,
64 public wxPropertyGridInterface
,
65 public wxPropertyGridPageState
67 friend class wxPropertyGridManager
;
69 DECLARE_CLASS(wxPropertyGridPage
)
74 virtual ~wxPropertyGridPage();
76 /** Deletes all properties on page.
81 Reduces column sizes to minimum possible that contents are still
82 visibly (naturally some margin space will be applied as well).
85 Minimum size for the page to still display everything.
88 This function only works properly if size of containing grid was
91 Note that you can also get calculated column widths by calling
92 GetColumnWidth() immediately after this function returns.
96 /** Returns page index in manager;
98 inline int GetIndex() const;
100 /** Returns x-coordinate position of splitter on a page.
102 int GetSplitterPosition( int col
= 0 ) const
103 { return GetStatePtr()->DoGetSplitterPosition(col
); }
105 /** Returns "root property". It does not have name, etc. and it is not
106 visible. It is only useful for accessing its children.
108 wxPGProperty
* GetRoot() const { return GetStatePtr()->DoGetRoot(); }
110 /** Return pointer to contained property grid state.
112 wxPropertyGridPageState
* GetStatePtr()
117 /** Return pointer to contained property grid state.
119 const wxPropertyGridPageState
* GetStatePtr() const
125 Returns id of the tool bar item that represents this page on
126 wxPropertyGridManager's wxToolBar.
128 int GetToolId() const
133 /** Do any member initialization in this method.
135 - Called every time the page is added into a manager.
136 - You can add properties to the page here.
138 virtual void Init() {}
140 /** Return false here to indicate unhandled events should be
141 propagated to manager's parent, as normal.
143 virtual bool IsHandlingAllEvents() const { return true; }
145 /** Called every time page is about to be shown.
146 Useful, for instance, creating properties just-in-time.
148 virtual void OnShow();
150 virtual void RefreshProperty( wxPGProperty
* p
);
152 /** Sets splitter position on page.
154 Splitter position cannot exceed grid size, and therefore setting it
155 during form creation may fail as initial grid size is often smaller
156 than desired splitter position, especially when sizers are being used.
158 void SetSplitterPosition( int splitterPos
, int col
= 0 );
162 /** Propagate to other pages.
164 virtual void DoSetSplitterPosition( int pos
,
165 int splitterColumn
= 0,
166 bool allPages
= false );
168 /** Propagate to other pages.
170 void DoSetSplitterPositionThisPage( int pos
, int splitterColumn
= 0 )
172 wxPropertyGridPageState::DoSetSplitterPosition( pos
, splitterColumn
);
175 /** Page label (may be referred as name in some parts of documentation).
176 Can be set in constructor, or passed in
177 wxPropertyGridManager::AddPage(), but *not* in both.
183 //virtual bool ProcessEvent( wxEvent& event );
185 wxPropertyGridManager
* m_manager
;
187 int m_id
; // toolbar index
190 bool m_isDefault
; // is this base page object?
193 DECLARE_EVENT_TABLE()
197 // -----------------------------------------------------------------------
199 /** @class wxPropertyGridManager
201 wxPropertyGridManager is an efficient multi-page version of wxPropertyGrid,
202 which can optionally have toolbar for mode and page selection, and help
204 Use window flags to select components to include.
206 @section propgridmanager_window_styles_ Window Styles
208 See @ref propgrid_window_styles.
210 @section propgridmanager_event_handling Event Handling
212 See @ref propgrid_event_handling "wxPropertyGrid Event Handling"
213 for more information.
218 class WXDLLIMPEXP_PROPGRID
219 wxPropertyGridManager
: public wxPanel
, public wxPropertyGridInterface
222 DECLARE_CLASS(wxPropertyGridManager
)
224 friend class wxPropertyGridPage
;
228 %pythonAppend wxPropertyGridManager
{
229 self
._setOORInfo(self
)
230 self
.DoDefaultTypeMappings()
231 self
.edited_objects
= {}
232 self
.DoDefaultValueTypeMappings()
233 if not hasattr(self
.__class__
,'_vt2setter'):
234 self
.__class__
._vt2setter
= {}
236 %pythonAppend
wxPropertyGridManager() ""
238 wxPropertyGridManager( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
239 const wxPoint
& pos
= wxDefaultPosition
,
240 const wxSize
& size
= wxDefaultSize
,
241 long style
= wxPGMAN_DEFAULT_STYLE
,
243 wxPyPropertyGridManagerNameStr
);
244 %RenameCtor
(PrePropertyGridManager
, wxPropertyGridManager());
249 Two step constructor.
250 Call Create when this constructor is called to build up the
251 wxPropertyGridManager.
253 wxPropertyGridManager();
255 /** The default constructor. The styles to be used are styles valid for
257 @see @link wndflags Additional Window Styles@endlink
259 wxPropertyGridManager( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
260 const wxPoint
& pos
= wxDefaultPosition
,
261 const wxSize
& size
= wxDefaultSize
,
262 long style
= wxPGMAN_DEFAULT_STYLE
,
263 const wxChar
* name
= wxPropertyGridManagerNameStr
);
266 virtual ~wxPropertyGridManager();
270 /** Creates new property page. Note that the first page is not created
273 A label for the page. This may be shown as a toolbar tooltip etc.
275 Bitmap image for toolbar. If wxNullBitmap is used, then a built-in
276 default image is used.
278 wxPropertyGridPage instance. Manager will take ownership of this object.
279 NULL indicates that a default page instance should be created.
282 Returns pointer to created page.
285 If toolbar is used, it is highly recommended that the pages are
286 added when the toolbar is not turned off using window style flag
289 wxPropertyGridPage
* AddPage( const wxString
& label
= wxEmptyString
,
290 const wxBitmap
& bmp
= wxPG_NULL_BITMAP
,
291 wxPropertyGridPage
* pageObj
= NULL
)
293 return InsertPage(-1, label
, bmp
, pageObj
);
296 void ClearModifiedStatus ( wxPGPropArg id
);
298 void ClearModifiedStatus ()
300 m_pPropGrid
->ClearModifiedStatus();
303 /** Deletes all all properties and all pages.
305 virtual void Clear();
307 /** Deletes all properties on given page.
309 void ClearPage( int page
);
311 /** Forces updating the value of property from the editor control.
312 Returns true if DoPropertyChanged was actually called.
314 bool CommitChangesFromEditor( wxUint32 flags
= 0 )
316 return m_pPropGrid
->CommitChangesFromEditor(flags
);
321 Whenever the control is created without any parameters, use Create to
322 actually create it. Don't access the control's public methods before
324 @see @link wndflags Additional Window Styles@endlink
326 bool Create( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
327 const wxPoint
& pos
= wxDefaultPosition
,
328 const wxSize
& size
= wxDefaultSize
,
329 long style
= wxPGMAN_DEFAULT_STYLE
,
330 const wxChar
* name
= wxPropertyGridManagerNameStr
);
333 Enables or disables (shows/hides) categories according to parameter
336 WARNING: Not tested properly, use at your own risk.
338 bool EnableCategories( bool enable
)
340 long fl
= m_windowStyle
| wxPG_HIDE_CATEGORIES
;
341 if ( enable
) fl
= m_windowStyle
& ~(wxPG_HIDE_CATEGORIES
);
342 SetWindowStyleFlag(fl
);
346 /** Selects page, scrolls and/or expands items to ensure that the
347 given item is visible. Returns true if something was actually done.
349 bool EnsureVisible( wxPGPropArg id
);
351 /** Returns number of columns on given page. By the default,
352 returns number of columns on current page. */
353 int GetColumnCount( int page
= -1 ) const;
355 /** Returns height of the description text box. */
356 int GetDescBoxHeight() const;
358 /** Returns pointer to the contained wxPropertyGrid. This does not change
359 after wxPropertyGridManager has been created, so you can safely obtain
360 pointer once and use it for the entire lifetime of the instance.
362 wxPropertyGrid
* GetGrid()
364 wxASSERT(m_pPropGrid
);
368 const wxPropertyGrid
* GetGrid() const
370 wxASSERT(m_pPropGrid
);
371 return (const wxPropertyGrid
*)m_pPropGrid
;
374 /** Returns iterator class instance.
376 Calling this method in wxPropertyGridManager causes run-time assertion
377 failure. Please only iterate through individual pages or use
380 wxPropertyGridIterator
GetIterator( int flags
= wxPG_ITERATE_DEFAULT
,
381 wxPGProperty
* firstProp
= NULL
)
383 wxFAIL_MSG( "Please only iterate through individual pages "
384 "or use CreateVIterator()" );
385 return wxPropertyGridInterface::GetIterator( flags
, firstProp
);
388 wxPropertyGridConstIterator
389 GetIterator(int flags
= wxPG_ITERATE_DEFAULT
,
390 wxPGProperty
* firstProp
= NULL
) const
392 wxFAIL_MSG( "Please only iterate through individual pages "
393 " or use CreateVIterator()" );
394 return wxPropertyGridInterface::GetIterator( flags
, firstProp
);
397 /** Returns iterator class instance.
399 Calling this method in wxPropertyGridManager causes run-time assertion
400 failure. Please only iterate through individual pages or use
403 wxPropertyGridIterator
GetIterator( int flags
, int startPos
)
405 wxFAIL_MSG( "Please only iterate through individual pages "
406 "or use CreateVIterator()" );
408 return wxPropertyGridInterface::GetIterator( flags
, startPos
);
411 wxPropertyGridConstIterator
GetIterator( int flags
, int startPos
) const
413 wxFAIL_MSG( "Please only iterate through individual pages "
414 "or use CreateVIterator()" );
415 return wxPropertyGridInterface::GetIterator( flags
, startPos
);
418 /** Similar to GetIterator, but instead returns wxPGVIterator instance,
419 which can be useful for forward-iterating through arbitrary property
422 virtual wxPGVIterator
GetVIterator( int flags
) const;
424 /** Returns currently selected page.
426 wxPropertyGridPage
* GetCurrentPage() const
428 return GetPage(m_selPage
);
431 /** Returns page object for given page index.
433 wxPropertyGridPage
* GetPage( unsigned int ind
) const
435 return (wxPropertyGridPage
*)m_arrPages
.Item(ind
);
438 /** Returns page object for given page name.
440 wxPropertyGridPage
* GetPage( const wxString
& name
) const
442 return GetPage(GetPageByName(name
));
446 Returns index for a page name.
448 If no match is found, wxNOT_FOUND is returned.
450 int GetPageByName( const wxString
& name
) const;
452 /** Returns index for a relevant propertygrid state.
454 If no match is found, wxNOT_FOUND is returned.
456 int GetPageByState( const wxPropertyGridPageState
* pstate
) const;
458 /** Returns wxPropertyGridPageState of given page, current page's for -1.
460 virtual wxPropertyGridPageState
* GetPageState( int page
) const;
462 /** Returns number of managed pages. */
463 size_t GetPageCount() const;
465 /** Returns name of given page. */
466 const wxString
& GetPageName( int index
) const;
468 /** Returns "root property" of the given page. It does not have name, etc.
469 and it is not visible. It is only useful for accessing its children.
471 wxPGProperty
* GetPageRoot( int index
) const;
473 /** Returns index to currently selected page. */
474 int GetSelectedPage() const { return m_selPage
; }
476 /** Shortcut for GetGrid()->GetSelection(). */
477 wxPGProperty
* GetSelection() const
479 return m_pPropGrid
->GetSelection();
482 /** Returns a pointer to the toolbar currently associated with the
483 wxPropertyGridManager (if any). */
484 wxToolBar
* GetToolBar() const { return m_pToolbar
; }
486 /** Creates new property page. Note that the first page is not created
489 Add to this position. -1 will add as the last item.
491 A label for the page. This may be shown as a toolbar tooltip etc.
493 Bitmap image for toolbar. If wxNullBitmap is used, then a built-in
494 default image is used.
496 wxPropertyGridPage instance. Manager will take ownership of this object.
497 If NULL, default page object is constructed.
500 Returns pointer to created page.
502 virtual wxPropertyGridPage
* InsertPage( int index
,
503 const wxString
& label
,
504 const wxBitmap
& bmp
= wxNullBitmap
,
505 wxPropertyGridPage
* pageObj
= NULL
);
508 Returns true if any property on any page has been modified by the user.
510 bool IsAnyModified() const;
513 Returns true if updating is frozen (ie Freeze() called but not yet
516 bool IsFrozen() const { return m_pPropGrid
->m_frozen
> 0; }
519 Returns true if any property on given page has been modified by the
522 bool IsPageModified( size_t index
) const;
524 virtual void Refresh( bool eraseBackground
= true,
525 const wxRect
* rect
= (const wxRect
*) NULL
);
529 Returns false if it was not possible to remove page in question.
531 virtual bool RemovePage( int page
);
533 /** Select and displays a given page.
536 Index of page being seleced. Can be -1 to select nothing.
538 void SelectPage( int index
);
540 /** Select and displays a given page (by label). */
541 void SelectPage( const wxString
& label
)
543 int index
= GetPageByName(label
);
544 wxCHECK_RET( index
>= 0, wxT("No page with such name") );
548 /** Select and displays a given page. */
549 void SelectPage( wxPropertyGridPage
* ptr
)
551 SelectPage( GetPageByState(ptr
) );
554 /** Select a property. */
555 bool SelectProperty( wxPGPropArg id
, bool focus
= false )
557 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
558 return p
->GetParentState()->DoSelectProperty(p
, focus
);
561 /** Sets number of columns on given page (default is current page).
563 void SetColumnCount( int colCount
, int page
= -1 );
565 /** Sets label and text in description box.
567 void SetDescription( const wxString
& label
, const wxString
& content
);
569 /** Sets y coordinate of the description box splitter. */
570 void SetDescBoxHeight( int ht
, bool refresh
= true );
572 /** Moves splitter as left as possible, while still allowing all
573 labels to be shown in full.
575 If false, will still allow sub-properties (ie. properties which
576 parent is not root or category) to be cropped.
578 If true, takes labels on all pages into account.
580 void SetSplitterLeft( bool subProps
= false, bool allPages
= true );
582 /** Sets splitter position on individual page. */
583 void SetPageSplitterPosition( int page
, int pos
, int column
= 0 )
585 GetPage(page
)->DoSetSplitterPosition( pos
, column
);
588 /** Sets splitter position for all pages.
590 Splitter position cannot exceed grid size, and therefore setting it
591 during form creation may fail as initial grid size is often smaller
592 than desired splitter position, especially when sizers are being used.
594 void SetSplitterPosition( int pos
, int column
= 0 );
598 def
GetValuesFromPage(self
,
602 inc_attributes
=False
):
603 "Same as GetValues, but returns values from specific page only."
604 "For argument descriptions, see GetValues."
605 return page
.GetPropertyValues(dict_
, as_strings
, inc_attributes
)
612 // Subclassing helpers
615 /** Creates property grid for the manager. Override to use subclassed
618 virtual wxPropertyGrid
* CreatePropertyGrid() const;
620 virtual void RefreshProperty( wxPGProperty
* p
);
627 // Overridden functions - no documentation required.
630 virtual wxSize
DoGetBestSize() const;
631 void SetId( wxWindowID winid
);
633 virtual void Freeze();
635 virtual void SetExtraStyle ( long exStyle
);
636 virtual bool SetFont ( const wxFont
& font
);
637 virtual void SetWindowStyleFlag ( long style
);
648 void OnMouseMove( wxMouseEvent
&event
);
649 void OnMouseClick( wxMouseEvent
&event
);
650 void OnMouseUp( wxMouseEvent
&event
);
651 void OnMouseEntry( wxMouseEvent
&event
);
653 void OnPaint( wxPaintEvent
&event
);
655 void OnToolbarClick( wxCommandEvent
&event
);
656 void OnResize( wxSizeEvent
& event
);
657 void OnPropertyGridSelect( wxPropertyGridEvent
& event
);
661 wxPropertyGrid
* m_pPropGrid
;
663 wxArrayPtrVoid m_arrPages
;
666 wxToolBar
* m_pToolbar
;
668 wxStaticText
* m_pTxtHelpCaption
;
669 wxStaticText
* m_pTxtHelpContent
;
671 wxPropertyGridPage
* m_emptyPage
;
675 // Selected page index.
686 int m_splitterHeight
;
692 wxCursor m_cursorSizeNS
;
694 int m_nextDescBoxSize
;
698 unsigned char m_dragStatus
;
700 unsigned char m_onSplitter
;
702 virtual wxPGProperty
* DoGetPropertyByName( const wxString
& name
) const;
704 /** Select and displays a given page. */
705 virtual bool DoSelectPage( int index
);
707 // Sets some members to defaults.
710 // Initializes some members.
711 void Init2( int style
);
714 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
717 /** Recalculates new positions for components, according to the
720 void RecalculatePositions( int width
, int height
);
722 /** (Re)creates/destroys controls, according to the window style bits. */
723 void RecreateControls();
725 void RefreshHelpBox( int new_splittery
, int new_width
, int new_height
);
727 void RepaintSplitter( wxDC
& dc
,
733 void SetDescribedProperty( wxPGProperty
* p
);
735 virtual bool ProcessEvent( wxEvent
& event
);
738 DECLARE_EVENT_TABLE()
739 #endif // #ifndef SWIG
740 #endif // #ifndef DOXYGEN
743 // -----------------------------------------------------------------------
745 inline int wxPropertyGridPage::GetIndex() const
749 return m_manager
->GetPageByState(this);
752 // -----------------------------------------------------------------------
754 #endif // wxUSE_PROPGRID
756 #endif // _WX_PROPGRID_MANAGER_H_