blob: ac5460eeb89afdfc658278dfdb0044471ed49fee (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_GRADIENT_VECTOR_H
#define SEEN_GRADIENT_VECTOR_H
/*
* Gradient vector selection widget
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2010 Jon A. Cruz
* Copyright (C) 2001-2002 Lauris Kaplinski
* Copyright (C) 2001 Ximian, Inc.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "ui/widget/gradient-selector.h"
#include <gtkmm/liststore.h>
#include <sigc++/connection.h>
class SPDocument;
class SPObject;
class SPGradient;
class SPStop;
namespace Inkscape {
namespace UI {
namespace Widget {
class GradientVectorSelector : public Gtk::Box {
private:
bool _swatched = false;
SPDocument *_doc = nullptr;
SPGradient *_gr = nullptr;
/* Gradient vectors store */
Glib::RefPtr<Gtk::ListStore> _store;
Inkscape::UI::Widget::GradientSelector::ModelColumns *_columns;
sigc::connection _gradient_release_connection;
sigc::connection _defs_release_connection;
sigc::connection _defs_modified_connection;
sigc::connection _tree_select_connection;
sigc::signal<void (SPGradient *)> _signal_vector_set;
void gradient_release(SPObject *obj);
void defs_release(SPObject *defs);
void defs_modified(SPObject *defs, guint flags);
void rebuild_gui_full();
public:
GradientVectorSelector(SPDocument *doc, SPGradient *gradient);
~GradientVectorSelector() override;
void setSwatched();
void set_gradient(SPDocument *doc, SPGradient *gr);
// width and height of gradient preview pixmap
void set_pixmap_size(int width, int height);
inline decltype(_columns) get_columns() const { return _columns; }
inline decltype(_doc) get_document() const { return _doc; }
inline decltype(_gr) get_gradient() const { return _gr; }
inline decltype(_store) get_store() const { return _store; }
inline decltype(_signal_vector_set) signal_vector_set() const { return _signal_vector_set; }
inline void set_tree_select_connection(sigc::connection &connection) { _tree_select_connection = connection; }
private:
int _pix_width = 64;
int _pix_height = 18;
};
} // namespace Widget
} // namespace UI
} // namespace Inkscape
Glib::ustring gr_prepare_label (SPObject *obj);
Glib::ustring gr_ellipsize_text(Glib::ustring const &src, size_t maxlen);
#endif // SEEN_GRADIENT_VECTOR_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 :
|