blob: 3a3652334568b39e32b333cfd327772ad90af70e (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#ifndef SEEN_ICON_PREVIEW_H
#define SEEN_ICON_PREVIEW_H
/*
* A simple dialog for previewing icon representation.
*
* Authors:
* Jon A. Cruz
* Bob Jamison
* Other dudes from The Inkscape Organization
*
* Copyright (C) 2004,2005 The Inkscape Organization
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <gtkmm/box.h>
#include <gtkmm/button.h>
#include <gtkmm/label.h>
#include <gtkmm/paned.h>
#include <gtkmm/image.h>
#include <gtkmm/togglebutton.h>
#include <gtkmm/toggletoolbutton.h>
#include "ui/widget/panel.h"
struct SPObject;
namespace Inkscape {
namespace UI {
namespace Dialogs {
/**
* A panel that displays an icon preview
*/
class IconPreviewPanel : public UI::Widget::Panel
{
public:
IconPreviewPanel();
//IconPreviewPanel(Glib::ustring const &label);
static IconPreviewPanel& getInstance();
void refreshPreview();
void modeToggled();
private:
IconPreviewPanel(IconPreviewPanel const &); // no copy
IconPreviewPanel &operator=(IconPreviewPanel const &); // no assign
void on_button_clicked(int which);
void renderPreview( SPObject* obj );
void updateMagnify();
Gtk::Tooltips tips;
Gtk::VBox iconBox;
Gtk::HPaned splitter;
int hot;
int numEntries;
int* sizes;
Gtk::Image magnified;
Gtk::Label magLabel;
Gtk::Button *refreshButton;
Gtk::ToggleButton *selectionButton;
guchar** pixMem;
Gtk::Image** images;
Glib::ustring** labels;
Gtk::ToggleToolButton** buttons;
};
} //namespace Dialogs
} //namespace UI
} //namespace Inkscape
#endif // SEEN_ICON_PREVIEW_H
|