fixed doxygen warnings; also restyled (partially) the interface headers to conform to wx doc style

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56491 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-22 20:48:31 +00:00
parent c4e5720224
commit 0ad10f3055
6 changed files with 275 additions and 345 deletions

View File

@@ -7,7 +7,8 @@
/////////////////////////////////////////////////////////////////////////////
/** @section propgrid_hittestresult wxPropertyGridHitTestResult
/**
@section propgrid_hittestresult wxPropertyGridHitTestResult
A return value from wxPropertyGrid::HitTest(),
contains all you need to know about an arbitrary location on the grid.
@@ -99,7 +100,8 @@ wxPG_ITERATE_DEFAULT = wxPG_ITERATE_NORMAL
*/
/** @section propgrid_iterator_class wxPropertyGridIterator
/**
@section propgrid_iterator_class wxPropertyGridIterator
Preferable way to iterate through contents of wxPropertyGrid,
wxPropertyGridManager, and wxPropertyGridPage.
@@ -117,15 +119,18 @@ public:
bool AtEnd() const { return m_property == NULL; }
/** Get current property.
/**
Get current property.
*/
wxPGProperty* GetProperty() const { return m_property; }
/** Iterate to the next property.
/**
Iterate to the next property.
*/
void Next( bool iterateChildren = true );
/** Iterate to the previous property.
/**
Iterate to the previous property.
*/
void Prev();
@@ -134,7 +139,8 @@ protected:
// -----------------------------------------------------------------------
/** @section propgrid_viterator_class wxPGVIterator
/**
@section propgrid_viterator_class wxPGVIterator
Abstract implementation of a simple iterator. Can only be used
to iterate in forward order, and only through the entire container.