blob: b2f2f2a1ed94c737284623596c178721769dc38f (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
#ifndef SEEN_NUMBER_OPT_NUMBER_H
#define SEEN_NUMBER_OPT_NUMBER_H
/** \file
* <number-opt-number> implementation.
*/
/*
* Authors:
* Hugo Rodrigues <haa.rodrigues@gmail.com>
*
* Copyright (C) 2006 Hugo Rodrigues
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib.h>
#include <glib/gprintf.h>
//todo: use glib instead of stdlib
#include <stdlib.h>
#include "svg/stringstream.h"
gdouble fixed_g_ascii_strtod (const gchar *nptr, gchar **endptr);
class NumberOptNumber {
public:
gfloat number;
gfloat optNumber;
guint _set : 1;
guint optNumber_set : 1;
NumberOptNumber()
{
number = 0.0;
optNumber = 0.0;
_set = FALSE;
optNumber_set = FALSE;
}
gfloat getNumber()
{
if(_set)
return number;
return -1;
}
gfloat getOptNumber()
{
if(optNumber_set)
return optNumber;
return -1;
}
void setOptNumber(gfloat num)
{
optNumber_set = true;
optNumber = num;
}
void setNumber(gfloat num)
{
_set = true;
number = num;
}
bool optNumIsSet(){
return optNumber_set;
}
bool numIsSet(){
return _set;
}
gchar *getValueString()
{
Inkscape::SVGOStringStream os;
if( _set )
{
if( optNumber_set )
{
os << number << " " << optNumber;
}
else {
os << number;
}
}
return g_strdup(os.str().c_str());
}
void set(gchar const *str)
{
if(!str)
return;
gchar **values = g_strsplit(str, " ", 2);
if( values[0] != NULL )
{
number = g_ascii_strtod(values[0], NULL);
_set = TRUE;
if( values[1] != NULL )
{
optNumber = g_ascii_strtod(values[1], NULL);
optNumber_set = TRUE;
}
else
optNumber_set = FALSE;
}
else {
_set = FALSE;
optNumber_set = FALSE;
}
}
};
#endif /* !SEEN_NUMBER_OPT_NUMBER_H */
/*
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 :
|