BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / resedit / PreviewColumn.h
blob741a809c4361fb7b743554ab8ba6af2c7ac4ebae
1 /*
2 * Copyright (c) 2005-2010, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
5 * Author:
6 * DarkWyrm <darkwyrm@gmail.com>
7 */
8 #ifndef PREVIEW_COLUMN_H
9 #define PREVIEW_COLUMN_H
11 #include <ColumnTypes.h>
13 class PreviewColumn : public BTitledColumn
15 public:
16 PreviewColumn(const char *title, float width,
17 float minWidth, float maxWidth);
18 void DrawField(BField* field, BRect rect, BView* parent);
19 bool AcceptsField(const BField* field) const;
22 #endif