e61a091fd0
Added an ImageEditor object, but edits aren't saved... yet git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20113 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
489 B
C++
23 lines
489 B
C++
/*
|
|
* Copyright (c) 2005-2006, Haiku, Inc.
|
|
* Distributed under the terms of the MIT license.
|
|
*
|
|
* Author:
|
|
* DarkWyrm <darkwyrm@earthlink.net>
|
|
*/
|
|
#ifndef PREVIEW_COLUMN_H
|
|
#define PREVIEW_COLUMN_H
|
|
|
|
#include <ColumnTypes.h>
|
|
|
|
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
|