2019-09-20 09:34:29 +03:00
|
|
|
/*
|
2020-04-18 09:27:42 +03:00
|
|
|
* Copyright 2020 Haiku, Inc. All rights reserved.
|
2019-09-20 09:34:29 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
2020-04-18 09:27:42 +03:00
|
|
|
* Niels Sascha Reedijk, niels.reedijk@gmail.com
|
2019-09-20 09:34:29 +03:00
|
|
|
*
|
|
|
|
* Corresponds to:
|
|
|
|
* headers/os/interface/GroupView.h hrev45833
|
|
|
|
* src/kits/interface/GroupView.cpp hrev49977
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\file GroupView.h
|
|
|
|
\ingroup interface
|
2020-04-18 09:27:42 +03:00
|
|
|
\brief Provides the BGroupView class.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\class BGroupView
|
|
|
|
\ingroup interface
|
|
|
|
\ingroup libbe
|
2020-04-18 09:27:42 +03:00
|
|
|
\brief Container view for a collection of views organized in a horizontal
|
|
|
|
or vertical row.
|
|
|
|
|
|
|
|
The group has a horizontal or a vertical orientation. By default, the view
|
|
|
|
has the default system grey background.
|
|
|
|
|
|
|
|
\see BGroupLayout for more information on how and when to use this
|
|
|
|
type of container.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-04-18 09:27:42 +03:00
|
|
|
\fn BGroupView::BGroupView(orientation orientation, float spacing)
|
|
|
|
\brief Creates a new group view.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
\param orientation Set to B_HORIZONTAL or B_VERTICAL.
|
|
|
|
\param spacing The space between the elements in the group.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-04-18 09:27:42 +03:00
|
|
|
\fn BGroupView::BGroupView(const char *name, orientation orientation,
|
|
|
|
float spacing)
|
|
|
|
\brief Creates a new group view with a \a name.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
\param name The name for the view.
|
|
|
|
\param orientation Set to B_HORIZONTAL or B_VERTICAL.
|
|
|
|
\param spacing The space between the elements in the group.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BGroupView::BGroupView(BMessage *from)
|
2020-04-18 09:27:42 +03:00
|
|
|
\brief Constructs a BGroupView \a from an archive message.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
This method is usually not called directly, if you want to build a
|
|
|
|
group view from an archived message you should call Instantiate() instead
|
|
|
|
because it can handle errors properly.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
\param from The \ref BMessage that contains the grid view.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-04-18 09:27:42 +03:00
|
|
|
\fn virtual BGroupView::~BGroupView()
|
|
|
|
\brief Destructor.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-04-18 09:27:42 +03:00
|
|
|
\fn virtual void BGroupView::SetLayout(BLayout *layout)
|
|
|
|
\brief Adopt a given group \a layout.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
\param layout The layout to set to. This must be a BGroupLayout, or a
|
|
|
|
derivative. Any other layout types will be ignored.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BGroupLayout* BGroupView::GroupLayout() const
|
2020-04-18 09:27:42 +03:00
|
|
|
\brief Get a pointer to the underlying BGroupLayout.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
\return A pointer to the underlying group layout.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-04-18 09:27:42 +03:00
|
|
|
\fn virtual status_t BGroupView::Perform(perform_code d, void *arg)
|
|
|
|
\brief Perform some action. (Internal Method)
|
2019-09-20 09:34:29 +03:00
|
|
|
|
2020-04-18 09:27:42 +03:00
|
|
|
Reimplemented from BView::Perform()
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-04-18 09:27:42 +03:00
|
|
|
\fn static BArchivable* BGroupView::Instantiate(BMessage *from)
|
|
|
|
\brief Instantiate the view from the message \a from.
|
2019-09-20 09:34:29 +03:00
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|