git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18649 a95241bf-73f2-0310-859d-f6bbb57e9c96
38 lines
704 B
C++
38 lines
704 B
C++
/*
|
|
* Copyright 2006, Ingo Weinhold <[email protected]>.
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
#include <GridView.h>
|
|
|
|
|
|
// constructor
|
|
BGridView::BGridView(float horizontalSpacing, float verticalSpacing)
|
|
: BView(NULL, 0, new BGridLayout(horizontalSpacing, verticalSpacing))
|
|
{
|
|
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
|
}
|
|
|
|
// destructor
|
|
BGridView::~BGridView()
|
|
{
|
|
}
|
|
|
|
// SetLayout
|
|
void
|
|
BGridView::SetLayout(BLayout* layout)
|
|
{
|
|
// only BGridLayouts are allowed
|
|
if (!dynamic_cast<BGridLayout*>(layout))
|
|
return;
|
|
|
|
BView::SetLayout(layout);
|
|
}
|
|
|
|
// GridLayout
|
|
BGridLayout*
|
|
BGridView::GridLayout() const
|
|
{
|
|
return dynamic_cast<BGridLayout*>(GetLayout());
|
|
}
|