f0d95841ee
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27811 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
647 B
C++
24 lines
647 B
C++
/*
|
|
* Copyright 2000-2008, François Revol, <revol@free.fr>. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _VIEW_ITEM_H_
|
|
#define _VIEW_ITEM_H_
|
|
|
|
#include <ListItem.h>
|
|
#include <ListView.h>
|
|
#include <View.h>
|
|
|
|
class ViewItem : public BView, public BListItem
|
|
{
|
|
public:
|
|
ViewItem(BRect bounds, const char *name, uint32 resizeMask, uint32 flags, uint32 level = 0, bool expanded = true);
|
|
virtual ~ViewItem();
|
|
virtual void DrawItem(BView *ownerview, BRect frame, bool complete = false);
|
|
virtual void Update(BView *ownerview, const BFont *font);
|
|
private:
|
|
BListView* fOwner;
|
|
};
|
|
|
|
#endif // _VIEW_ITEM_H_
|