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
98
99
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* Image widget for extensions
*//*
* Authors:
* Patrick Storz <eduard.braun2@gmx.de>
*
* Copyright (C) 2019 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "widget-image.h"
#include <glibmm/fileutils.h>
#include <glibmm/miscutils.h>
#include <gtkmm/image.h>
#include "xml/node.h"
#include "extension/extension.h"
#include "ui/icon-loader.h"
#include "ui/icon-names.h"
namespace Inkscape {
namespace Extension {
WidgetImage::WidgetImage(Inkscape::XML::Node *xml, Inkscape::Extension::Extension *ext)
: InxWidget(xml, ext)
{
std::string image_path;
// get path to image
const char *content = nullptr;
if (xml->firstChild()) {
content = xml->firstChild()->content();
}
if (content) {
image_path = content;
} else {
g_warning("Missing path for image widget in extension '%s'.", _extension->get_id());
return;
}
// make sure path is absolute (relative paths are relative to .inx file's location)
if (!Glib::path_is_absolute(image_path)) {
image_path = Glib::build_filename(_extension->get_base_directory(), image_path);
}
// check if image exists
if (Glib::file_test(image_path, Glib::FILE_TEST_IS_REGULAR)) {
_image_path = image_path;
} else {
_icon_name = INKSCAPE_ICON(image_path);
if (_icon_name.empty()) {
g_warning("Image file ('%s') not found for image widget in extension '%s'.",
image_path.c_str(), _extension->get_id());
}
}
// parse width/height attributes
const char *width = xml->attribute("width");
const char *height = xml->attribute("height");
if (width && height) {
_width = strtoul(width, nullptr, 0);
_height = strtoul(height, nullptr, 0);
}
}
/** \brief Create a label for the description */
Gtk::Widget *WidgetImage::get_widget(sigc::signal<void ()> * /*changeSignal*/)
{
if (_hidden || (_image_path.empty() && _icon_name.empty())) {
return nullptr;
}
Gtk::Image *image = nullptr;
if (!_image_path.empty()) {
image = Gtk::manage(new Gtk::Image(_image_path));
// resize if requested
if (_width && _height) {
Glib::RefPtr<Gdk::Pixbuf> pixbuf = image->get_pixbuf();
pixbuf = pixbuf->scale_simple(_width, _height, Gdk::INTERP_BILINEAR);
image->set(pixbuf);
}
} else if (_width || _height) {
image = sp_get_icon_image(_icon_name, std::max(_width, _height));
} else {
image = sp_get_icon_image(_icon_name, Gtk::ICON_SIZE_DIALOG);
}
image->show();
return dynamic_cast<Gtk::Widget *>(image);
}
} /* namespace Extension */
} /* namespace Inkscape */
|