82ab316723
* introduce B_USE_DEFAULT_SPACING, which works somewhat like B_SIZE_UNSET and B_ALIGN_HORIZONTAL_UNSET * introduce static float BControlLook::ComposeItemSpacing(float spacing), which checks uses be_control_look->DefaultItemSpacing(). * modify layouts to use BControlLook::ComposeItemSpacing() in SetInsets and SetSpacing methods. * default insets are still 0, 0, 0, 0, but can be set to default spacing by passing B_USE_DEFAULT_SPACING * I've found two regressions, patches incoming, please report others on #5614. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38512 a95241bf-73f2-0310-859d-f6bbb57e9c96
32 lines
742 B
C++
32 lines
742 B
C++
/*
|
|
* Copyright 2006-2010, Haiku, Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _GROUP_VIEW_H
|
|
#define _GROUP_VIEW_H
|
|
|
|
|
|
#include <GroupLayout.h>
|
|
#include <View.h>
|
|
|
|
|
|
class BGroupView : public BView {
|
|
public:
|
|
BGroupView(
|
|
enum orientation orientation = B_HORIZONTAL,
|
|
float spacing = B_USE_DEFAULT_SPACING);
|
|
BGroupView(const char* name,
|
|
enum orientation orientation = B_HORIZONTAL,
|
|
float spacing = B_USE_DEFAULT_SPACING);
|
|
BGroupView(BMessage* from);
|
|
virtual ~BGroupView();
|
|
|
|
virtual void SetLayout(BLayout* layout);
|
|
BGroupLayout* GroupLayout() const;
|
|
|
|
static BArchivable* Instantiate(BMessage* from);
|
|
};
|
|
|
|
|
|
#endif // _GROUP_VIEW_H
|