Patch by Alex Wilson: Added archiving/unarchiving support.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37546 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2010-07-17 00:46:40 +00:00
parent 3fb74eb796
commit ff626c8e29
2 changed files with 24 additions and 3 deletions

View File

@ -18,11 +18,13 @@ public:
BGroupView(const char* name,
enum orientation orientation = B_HORIZONTAL,
float spacing = 0.0f);
BGroupView(BMessage* from);
virtual ~BGroupView();
virtual void SetLayout(BLayout* layout);
BGroupLayout* GroupLayout() const;
static BArchivable* Instantiate(BMessage* from);
};

View File

@ -1,4 +1,5 @@
/*
* Copyright 2010, Haiku, Inc.
* Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
* All rights reserved. Distributed under the terms of the MIT License.
*/
@ -8,7 +9,8 @@
BGroupView::BGroupView(enum orientation orientation, float spacing)
: BView(NULL, 0, new BGroupLayout(orientation, spacing))
:
BView(NULL, 0, new BGroupLayout(orientation, spacing))
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
}
@ -16,12 +18,20 @@ BGroupView::BGroupView(enum orientation orientation, float spacing)
BGroupView::BGroupView(const char* name, enum orientation orientation,
float spacing)
: BView(name, 0, new BGroupLayout(orientation, spacing))
:
BView(name, 0, new BGroupLayout(orientation, spacing))
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
}
BGroupView::BGroupView(BMessage* from)
:
BView(from)
{
}
BGroupView::~BGroupView()
{
}
@ -38,6 +48,15 @@ BGroupView::SetLayout(BLayout* layout)
}
BArchivable*
BGroupView::Instantiate(BMessage* from)
{
if (validate_instantiation(from, "BGroupView"))
return new BGroupView(from);
return NULL;
}
BGroupLayout*
BGroupView::GroupLayout() const
{