2006-08-26 20:21:15 +04:00
|
|
|
/*
|
2010-07-17 04:15:31 +04:00
|
|
|
* Copyright 2006-2010, Haiku, Inc. All rights reserved.
|
2006-08-26 20:21:15 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _GRID_VIEW_H
|
|
|
|
#define _GRID_VIEW_H
|
|
|
|
|
|
|
|
#include <GridLayout.h>
|
|
|
|
#include <View.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BGridView : public BView {
|
|
|
|
public:
|
|
|
|
BGridView(float horizontalSpacing = 0.0f,
|
|
|
|
float verticalSpacing = 0.0f);
|
2010-07-17 04:15:31 +04:00
|
|
|
BGridView(BMessage* from);
|
2006-08-26 20:21:15 +04:00
|
|
|
virtual ~BGridView();
|
|
|
|
|
|
|
|
virtual void SetLayout(BLayout* layout);
|
|
|
|
BGridLayout* GridLayout() const;
|
2010-07-17 04:15:31 +04:00
|
|
|
|
|
|
|
static BArchivable* Instantiate(BMessage* from);
|
2006-08-26 20:21:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _GRID_VIEW_H
|