blob: 59f84a234fd1c8c7dec179169dee5d1668cfb953 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "svg/stringstream.h"
#include "svg/strip-trailing-zeros.h"
#include "preferences.h"
#include <2geom/point.h>
Inkscape::SVGOStringStream::SVGOStringStream()
{
/* These two are probably unnecessary now that we provide our own operator<< for float and
* double. */
ostr.imbue(std::locale::classic());
ostr.setf(std::ios::showpoint);
/* This one is (currently) needed though, as we currently use ostr.precision as a sort of
variable for storing the desired precision: see our two precision methods and our operator<<
methods for float and double. */
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
ostr.precision(prefs->getInt("/options/svgoutput/numericprecision", 8));
}
Inkscape::SVGOStringStream &
Inkscape::SVGOStringStream::operator<<(double d)
{
auto &os = *this;
/* Try as integer first. */
{
int const n = int(d);
if (d == n) {
os << n;
return os;
}
}
std::ostringstream s;
s.imbue(std::locale::classic());
s.flags(os.setf(std::ios::showpoint));
s.precision(os.precision());
s << d;
os << strip_trailing_zeros(s.str());
return os;
}
Inkscape::SVGOStringStream &
Inkscape::SVGOStringStream::operator<<(Geom::Point const & p)
{
auto &os = *this;
os << p[0] << ',' << p[1];
return os;
}
Inkscape::SVGIStringStream::SVGIStringStream():std::istringstream()
{
this->imbue(std::locale::classic());
this->setf(std::ios::showpoint);
/* This one is (currently) needed though, as we currently use ostr.precision as a sort of
variable for storing the desired precision: see our two precision methods and our operator<<
methods for float and double. */
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
this->precision(prefs->getInt("/options/svgoutput/numericprecision", 8));
}
Inkscape::SVGIStringStream::SVGIStringStream(const std::string& str):std::istringstream(str)
{
this->imbue(std::locale::classic());
this->setf(std::ios::showpoint);
/* This one is (currently) needed though, as we currently use ostr.precision as a sort of
variable for storing the desired precision: see our two precision methods and our operator<<
methods for float and double. */
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
this->precision(prefs->getInt("/options/svgoutput/numericprecision", 8));
}
/*
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 :
|