blob: 9a2ceaa4bfaaa00f5cb208a9aaf24cc73d6e7c37 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Authors:
* Martin Owens <doctormo@geek-2.com>
*
* Copyright (C) 2021 Martin Owens
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <cstring>
#include <string>
#include <glib.h>
#include "svg/svg-bool.h"
/**
* This boolean is not an SVG specification type, but it is something
* Inkscape uses for many of it's internal values.
*/
SVGBool::SVGBool(bool default_value)
: _default(default_value)
{}
bool SVGBool::read(gchar const *str)
{
if (!str) return false;
_is_set = true;
_value = !g_ascii_strcasecmp(str, "true") ||
!g_ascii_strcasecmp(str, "yes") ||
!g_ascii_strcasecmp(str, "y") ||
(atoi(str) != 0);
return true;
}
void SVGBool::unset() {
_is_set = false;
}
void SVGBool::readOrUnset(gchar const *str) {
if (!read(str)) {
unset();
}
}
/*
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 :
|