/* * Copyright (c) 2005-2010, Haiku, Inc. * Distributed under the terms of the MIT license. * * Author: * DarkWyrm */ #ifndef PREVIEW_COLUMN_H #define PREVIEW_COLUMN_H #include class PreviewColumn : public BTitledColumn { public: PreviewColumn(const char *title, float width, float minWidth, float maxWidth); void DrawField(BField* field, BRect rect, BView* parent); bool AcceptsField(const BField* field) const; }; #endif