2008-09-02 00:12:13 +04:00
|
|
|
/*
|
2010-07-20 12:28:55 +04:00
|
|
|
* Copyright 2006-2010, Haiku, Inc. All rights reserved.
|
2008-09-02 00:12:13 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _CARD_LAYOUT_H
|
|
|
|
#define _CARD_LAYOUT_H
|
|
|
|
|
2010-08-17 22:43:41 +04:00
|
|
|
#include <AbstractLayout.h>
|
2008-09-02 00:12:13 +04:00
|
|
|
|
|
|
|
|
2010-08-17 22:43:41 +04:00
|
|
|
class BCardLayout : public BAbstractLayout {
|
2008-09-02 00:12:13 +04:00
|
|
|
public:
|
|
|
|
BCardLayout();
|
2010-07-20 12:28:55 +04:00
|
|
|
BCardLayout(BMessage* from);
|
2008-09-02 00:12:13 +04:00
|
|
|
virtual ~BCardLayout();
|
|
|
|
|
|
|
|
BLayoutItem* VisibleItem() const;
|
|
|
|
int32 VisibleIndex() const;
|
|
|
|
void SetVisibleItem(int32 index);
|
|
|
|
void SetVisibleItem(BLayoutItem* item);
|
|
|
|
|
2010-08-17 22:43:41 +04:00
|
|
|
virtual BSize BaseMinSize();
|
|
|
|
virtual BSize BaseMaxSize();
|
|
|
|
virtual BSize BasePreferredSize();
|
|
|
|
virtual BAlignment BaseAlignment();
|
2008-09-02 00:12:13 +04:00
|
|
|
|
|
|
|
virtual bool HasHeightForWidth();
|
|
|
|
virtual void GetHeightForWidth(float width, float* min,
|
|
|
|
float* max, float* preferred);
|
|
|
|
|
2010-08-17 22:43:41 +04:00
|
|
|
virtual void InvalidateLayout(bool children = false);
|
2008-09-02 00:12:13 +04:00
|
|
|
|
2010-07-20 12:28:55 +04:00
|
|
|
virtual status_t Archive(BMessage* into, bool deep = true) const;
|
|
|
|
virtual status_t AllUnarchived(const BMessage* from);
|
|
|
|
static BArchivable* Instantiate(BMessage* from);
|
|
|
|
|
2008-09-02 00:12:13 +04:00
|
|
|
protected:
|
2010-08-17 22:43:41 +04:00
|
|
|
virtual void DerivedLayoutItems();
|
2010-07-30 06:28:17 +04:00
|
|
|
virtual bool ItemAdded(BLayoutItem* item, int32 atIndex);
|
|
|
|
virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
|
2008-09-02 00:12:13 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
BSize fMin;
|
|
|
|
BSize fMax;
|
|
|
|
BSize fPreferred;
|
|
|
|
BLayoutItem* fVisibleItem;
|
|
|
|
bool fMinMaxValid;
|
|
|
|
|
|
|
|
void _ValidateMinMax();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CARD_LAYOUT_H
|