summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/template-other.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/internal/template-other.cpp')
-rw-r--r--src/extension/internal/template-other.cpp75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/extension/internal/template-other.cpp b/src/extension/internal/template-other.cpp
new file mode 100644
index 0000000..b600c35
--- /dev/null
+++ b/src/extension/internal/template-other.cpp
@@ -0,0 +1,75 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Contain internal sizes of paper which can be used in various
+ * functions to make and size pages.
+ *
+ * Authors:
+ * Martin Owens <doctormo@geek-2.com>
+ *
+ * Copyright (C) 2022 Authors
+ *
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#include "template-other.h"
+
+#include "clear-n_.h"
+
+namespace Inkscape {
+namespace Extension {
+namespace Internal {
+
+/**
+ * Return the width and height of the new page, the default is a fixed orientation.
+ */
+Geom::Point TemplateOther::get_template_size(Inkscape::Extension::Template *tmod) const
+{
+ auto size = tmod->get_param_float("size");
+ return Geom::Point(size, size);
+}
+
+void TemplateOther::init()
+{
+ // clang-format off
+ Inkscape::Extension::build_from_mem(
+ "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">"
+ "<id>org.inkscape.template.other</id>"
+ "<name>" N_("Other Sizes") "</name>"
+ "<description>" N_("Miscellaneous document formats") "</description>"
+ "<category>" NC_("TemplateCategory", "Other") "</category>"
+
+ "<param name='unit' gui-text='" N_("Unit") "' type='string'>px</param>"
+ "<param name='size' gui-text='" N_("Size") "' type='float' min='1.0' max='100000.0'>32.0</param>"
+
+ "<template icon='icon_square' unit='px' priority='-10' visibility='icon,search'>"
+
+"<preset name='" N_("Icon 16x16") "' label='16 × 16 px' size='16'/>"
+"<preset name='" N_("Icon 32x32") "' label='32 × 32 px' size='32'/>"
+"<preset name='" N_("Icon 48x48") "' label='48 × 48 px' size='48'/>"
+"<preset name='" N_("Icon 120x120") "' label='120 × 120 px' size='120'/>"
+"<preset name='" N_("Icon 180x180") "' label='180 × 180 px' size='180'/>"
+"<preset name='" N_("Icon 512x512") "' label='512 × 512 px' size='512'/>"
+
+ "</template>"
+ "</inkscape-extension>"
+
+
+ ,
+ new TemplateOther());
+ // clang-format on
+}
+
+} // namespace Internal
+} // namespace Extension
+} // namespace Inkscape
+
+/*
+ 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 :