blob: c25f2dbb63782424196cd0ce8d38207f9a253e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_PREVIEWABLE_H
#define SEEN_PREVIEWABLE_H
/*
* A simple interface for previewing representations.
*
* Authors:
* Jon A. Cruz
*
* Copyright (C) 2005 Jon A. Cruz
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <gtkmm/widget.h>
#include "widget/preview.h"
namespace Inkscape {
namespace UI {
enum PreviewStyle {
PREVIEW_STYLE_ICON = 0,
PREVIEW_STYLE_PREVIEW,
PREVIEW_STYLE_NAME,
PREVIEW_STYLE_BLURB,
PREVIEW_STYLE_ICON_NAME,
PREVIEW_STYLE_ICON_BLURB,
PREVIEW_STYLE_PREVIEW_NAME,
PREVIEW_STYLE_PREVIEW_BLURB
};
class Previewable
{
public:
// TODO need to add some nice parameters
virtual ~Previewable() = default;
virtual Gtk::Widget* getPreview(UI::Widget::PreviewStyle style,
UI::Widget::ViewType view,
UI::Widget::PreviewSize size,
guint ratio,
guint border) = 0;
};
} //namespace UI
} //namespace Inkscape
#endif // SEEN_PREVIEWABLE_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|