blob: b600c35d258dab1e3b958606e7621b023693624f (
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
|
// 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 :
|