docs/user: Remove duplicate "ingroup interface" from layout docs.

Since the "Layout" group is a member of the "Interface" group,
Doxygen automatically adds the "Interface" group to all pages
in the "Layout" group, meaning that having an explicit "ingroup Interface"
created duplicate group tags.
This commit is contained in:
Augustin Cavalier
2017-01-28 13:22:53 -05:00
parent 3d7aa45e7a
commit 9dc2625de0
8 changed files with 6 additions and 21 deletions
+1 -2
View File
@@ -4,7 +4,7 @@
* *
* Authors: * Authors:
* Alex Wilson, [email protected] * Alex Wilson, [email protected]
* *
* Corresponds to: * Corresponds to:
* headers/os/interface/AbstractLayout.h rev 39055 * headers/os/interface/AbstractLayout.h rev 39055
* src/kits/inteface/AbstractLayout.cpp rev 39055 * src/kits/inteface/AbstractLayout.cpp rev 39055
@@ -13,7 +13,6 @@
/*! /*!
\class BAbstractLayout \class BAbstractLayout
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief BLayout subclass providing convenience methods for derived \brief BLayout subclass providing convenience methods for derived
-2
View File
@@ -13,7 +13,6 @@
/*! /*!
\file GridLayout.h \file GridLayout.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Provides the BGridLayout class. \brief Provides the BGridLayout class.
@@ -22,7 +21,6 @@
/*! /*!
\class BGridLayout \class BGridLayout
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief The BGridLayout class a BLayout subclass that arranges the items it \brief The BGridLayout class a BLayout subclass that arranges the items it
+1 -3
View File
@@ -13,7 +13,6 @@
/*! /*!
\file GroupLayout.h \file GroupLayout.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Describes the BGroupLayout class. \brief Describes the BGroupLayout class.
@@ -22,7 +21,6 @@
/*! /*!
\class BGroupLayout \class BGroupLayout
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief The BGroupLayout class is a simple BLayout subclass that \brief The BGroupLayout class is a simple BLayout subclass that
@@ -163,7 +161,7 @@
\a weight. \a weight.
\since Haiku R1 \since Haiku R1
*/ */
/*! /*!
-2
View File
@@ -13,7 +13,6 @@
/*! /*!
\file Layout.h \file Layout.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Defines the BLayout class. \brief Defines the BLayout class.
@@ -22,7 +21,6 @@
/*! /*!
\class BLayout \class BLayout
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief The BLayout class provides an interface, and some basic \brief The BLayout class provides an interface, and some basic
+1 -3
View File
@@ -5,7 +5,7 @@
* Authors: * Authors:
* John Scipione, [email protected] * John Scipione, [email protected]
* Ingo Weinhold, [email protected] * Ingo Weinhold, [email protected]
* *
* Corresponds to: * Corresponds to:
* headers/os/interface/GroupLayoutBuilder.h rev 42274 * headers/os/interface/GroupLayoutBuilder.h rev 42274
* src/kits/interface/GroupLayoutBuilder.cpp rev 42274 * src/kits/interface/GroupLayoutBuilder.cpp rev 42274
@@ -14,7 +14,6 @@
/*! /*!
\file GroupLayoutBuilder.h \file GroupLayoutBuilder.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Provides the BLayoutBuilder::Group<> class. \brief Provides the BLayoutBuilder::Group<> class.
@@ -25,7 +24,6 @@
/*! /*!
\class BLayoutBuilder::Group<> \class BLayoutBuilder::Group<>
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief BLayoutBuilder::Base subclass for building BGroupLayouts. \brief BLayoutBuilder::Base subclass for building BGroupLayouts.
+2 -4
View File
@@ -13,7 +13,6 @@
/*! /*!
\file LayoutBuilder.h \file LayoutBuilder.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Defines the BLayoutBuilder templates. \brief Defines the BLayoutBuilder templates.
@@ -22,13 +21,12 @@
/*! /*!
\class BLayoutBuilder::Base<> \class BLayoutBuilder::Base<>
\ingroup interface
\ingroup layout \ingroup layout
\brief Base for all other layout builders in the BLayoutBuilder namespace. \brief Base for all other layout builders in the BLayoutBuilder namespace.
This class provides the stack-like semantics for its subclasses. The This class provides the stack-like semantics for its subclasses. The
BLayoutBuilder::Group, BLayoutBuilder::Grid and BLayoutBuilder::Split all BLayoutBuilder::Group, BLayoutBuilder::Grid and BLayoutBuilder::Split all
provide methods such as AddGrid() AddGroup() and AddSplit(), which provide methods such as AddGrid() AddGroup() and AddSplit(), which
make a new builder, place it on top of your builder stack and return it. make a new builder, place it on top of your builder stack and return it.
Now you are operating on the new builder. When you call the End() method on Now you are operating on the new builder. When you call the End() method on
the new builder, you are returned the one you had previously been using. At the new builder, you are returned the one you had previously been using. At
@@ -173,7 +171,7 @@ public:
inline GroupBuilder AddGroup(BGroupView* groupView, int32 column, inline GroupBuilder AddGroup(BGroupView* groupView, int32 column,
int32 row, int32 columnCount = 1, int32 row, int32 columnCount = 1,
int32 rowCount = 1); int32 rowCount = 1);
inline GroupBuilder AddGroup(BGroupLayout* groupLayout, inline GroupBuilder AddGroup(BGroupLayout* groupLayout,
int32 column, int32 row, int32 column, int32 row,
int32 columnCount = 1, int32 rowCount = 1); int32 columnCount = 1, int32 rowCount = 1);
+1 -3
View File
@@ -13,7 +13,6 @@
/*! /*!
\file LayoutItem.h \file LayoutItem.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Describes the BLayoutItem class. \brief Describes the BLayoutItem class.
@@ -22,7 +21,6 @@
/*! /*!
\class BLayoutItem \class BLayoutItem
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Abstract class representing things that are positionable and \brief Abstract class representing things that are positionable and
@@ -257,7 +255,7 @@
\fn BRect BLayoutItem::Frame() = 0 \fn BRect BLayoutItem::Frame() = 0
\brief Return the bounding frame of this item. \brief Return the bounding frame of this item.
The returned BRect is in the coordinate system of the target view of the The returned BRect is in the coordinate system of the target view of the
BLayout this item belongs to. BLayout this item belongs to.
\since Haiku R1 \since Haiku R1
@@ -13,7 +13,6 @@
/*! /*!
\file TwoDimensionalLayout.h \file TwoDimensionalLayout.h
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Defines the BTwoDimensionalLayout class. \brief Defines the BTwoDimensionalLayout class.
@@ -22,7 +21,6 @@
/*! /*!
\class BTwoDimensionalLayout \class BTwoDimensionalLayout
\ingroup interface
\ingroup layout \ingroup layout
\ingroup libbe \ingroup libbe
\brief Abstract BLayout subclass arranging items within rows and columns. \brief Abstract BLayout subclass arranging items within rows and columns.