OS X Human Interface Guidelines.
@library{wxcore}
- @category{FIXME}
+ @category{winlayout}
- @see wxSizer, @ref overview_sizeroverview "Sizer overview",
+ @see wxSizer, @ref overview_sizer "Sizer Overview",
wxDialog::CreateButtonSizer
*/
class wxStdDialogButtonSizer : public wxBoxSizer
wxStdDialogButtonSizer();
/**
- Adds a button to the wxStdDialogButtonSizer. The button must have one of the
- following identifiers:
+ Adds a button to the wxStdDialogButtonSizer. The @a button must have
+ one of the following identifiers:
wxID_OK
wxID_YES
wxID_SAVE
@library{wxcore}
@category{winlayout}
- @see wxSizer, @ref overview_sizeroverview "Sizer overview"
+ @see wxSizer, @ref overview_sizer "Sizer Overview"
*/
class wxFlexGridSizer : public wxGridSizer
{
Specifies whether the sizer should flexibly resize its columns, rows, or
both. Argument @c direction can be @c wxVERTICAL, @c wxHORIZONTAL
or @c wxBOTH (which is the default value). Any other value is ignored. See
- @ref getflexibledrection() GetFlexibleDirection for the
+ @ref GetFlexibleDirection() GetFlexibleDirection for the
explanation of these values.
Note that this method does not trigger relayout.
*/
@library{wxcore}
@category{winlayout}
- @see @ref overview_sizeroverview "Sizer overview"
+ @see @ref overview_sizer "Sizer Overview"
*/
class wxSizer : public wxObject
{
/**
Returns the list of the items in this sizer. The elements of type-safe
- wxList @a wxSizerItemList are objects of type
- @ref overview_wxsizeritem "wxSizerItem *".
+ wxList @a wxSizerItemList are pointers to objects of type
+ @ref wxSizerItem "wxSizerItem".
*/
wxSizerItemList& GetChildren();
/**
Returns the list of the items in this sizer. The elements of type-safe
- wxList @a wxSizerItemList are objects of type
- @ref overview_wxsizeritem "wxSizerItem *".
+ wxList @a wxSizerItemList are pointers to objects of type
+ @ref wxSizerItem "wxSizerItem".
*/
const wxSizerItemList& GetChildren() const;
/**
Detaches the given @a oldwin from the sizer and
- replaces it with the given @newwin. The detached
+ replaces it with the given @a newwin. The detached
child window is @b not deleted (because windows are
owned by their parent window, not the sizer).
/**
Detaches the given @a oldsz from the sizer and
- replaces it with the given @newwin. The detached
+ replaces it with the given @a newsz. The detached
child sizer is deleted.
Use parameter @a recursive to search the given element recursively in subsizers.
/**
Detaches the given item at position @a index from the sizer and
- replaces it with the given wxSizerItem @ newitem.
+ replaces it with the given wxSizerItem @a newitem.
The detached child is deleted @b only if it is a sizer or a spacer
(but not if it is a wxWindow because windows are owned by their
@library{wxcore}
@category{winlayout}
- @see wxSizer, @ref overview_sizeroverview "Sizer overview"
+ @see wxSizer, @ref overview_sizer "Sizer Overview"
*/
class wxGridSizer : public wxSizer
{
@library{wxcore}
@category{winlayout}
- @see wxSizer, wxStaticBox, wxBoxSizer, @ref overview_sizeroverview "Sizer
- overview"
+ @see wxSizer, wxStaticBox, wxBoxSizer, @ref overview_sizer
+ "Sizer Overview"
*/
class wxStaticBoxSizer : public wxBoxSizer
{
simple basic geometry, typically in a row or a column or several hierarchies of
either.
- For more information, please see @ref overview_boxsizerprogramming "Programming
- with wxBoxSizer".
+ For more information, please see @ref overview_sizer_box
+ "Programming with wxBoxSizer".
@library{wxcore}
@category{winlayout}
- @see wxSizer, @ref overview_sizeroverview "Sizer overview"
+ @see wxSizer, @ref overview_sizer "Sizers Overview"
*/
class wxBoxSizer : public wxSizer
{