File: ValueConversion.cc

package info (click to toggle)
gtkmathview 0.7.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,388 kB
  • ctags: 7,020
  • sloc: cpp: 51,304; xml: 12,643; sh: 8,996; makefile: 1,593; ansic: 1,149; perl: 88
file content (214 lines) | stat: -rw-r--r-- 5,127 bytes parent folder | download
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Copyright (C) 2000-2003, Luca Padovani <luca.padovani@cs.unibo.it>.
//
// This file is part of GtkMathView, a Gtk widget for MathML.
// 
// GtkMathView is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// GtkMathView is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with GtkMathView; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
// 
// For details, see the GtkMathView World-Wide-Web page,
// http://helm.cs.unibo.it/mml-widget, or send a mail to
// <luca.padovani@cs.unibo.it>

#include <config.h>

#include <cassert>

#include "defs.h"
#include "String.hh"
#include "ValueConversion.hh"

typedef Variant<void> Variant_void;

bool
IsEmpty(const SmartPtr<Value>& value)
{
  assert(value);
  return is_a<const Variant_void>(value);
}

bool
IsTokenId(const SmartPtr<Value>& value)
{
  assert(value);
  return is_a< Variant<TokenId> >(value);
}

bool
IsSequence(const SmartPtr<Value>& value)
{
  assert(value);
  return is_a< Variant< std::vector< SmartPtr<Value> > > >(value);
}

bool
IsLength(const SmartPtr<Value>& value)
{
  assert(value);
  return is_a< Variant<Length> >(value);
}

bool
IsRGBColor(const SmartPtr<Value>& value)
{
  assert(value);
  return is_a< Variant<RGBColor> >(value);
}

bool
IsNumber(const SmartPtr<Value>& value)
{
  assert(value);
  return is_a< Variant<float> >(value);
}

bool
ToBoolean(const SmartPtr<Value>& value)
{
  if (SmartPtr< Variant<bool> > v = smart_cast< Variant<bool> >(value))
    return v->getValue();
  assert(false);
  return bool();
}

float
ToNumber(const SmartPtr<Value>& value)
{
  if (SmartPtr< Variant<float> > v = smart_cast< Variant<float> >(value))
    return v->getValue();
  assert(false);
  return float();
}

int
ToInteger(const SmartPtr<Value>& value)
{
  if (SmartPtr< Variant<int> > v = smart_cast< Variant<int> >(value))
    return v->getValue();
  assert(false);
  return int();
}

String
ToString(const SmartPtr<Value>& value)
{
  if (SmartPtr< Variant<String> > v = smart_cast< Variant<String> >(value))
    return v->getValue();
  assert(false);
  return String();
}

Length
ToLength(const SmartPtr<Value>& value)
{
  if (SmartPtr< Variant<Length> > v = smart_cast< Variant<Length> >(value))
    return v->getValue();
  assert(false);
  return Length();
}

RGBColor
ToRGBColor(const SmartPtr<Value>& value)
{
  if (SmartPtr< Variant<RGBColor> > v = smart_cast< Variant<RGBColor> >(value))
    return v->getValue();
  assert(false);
  return RGBColor();
}

TokenId
ToTokenId(const SmartPtr<Value>& value)
{
  assert(value);

  if (SmartPtr< Variant<TokenId> > v = smart_cast< Variant<TokenId> >(value))
    return v->getValue();
  else
    return T__NOTVALID;
}

SmartPtr<ValueSequence>
ToSequence(const SmartPtr<Value>& value)
{ return smart_cast<ValueSequence>(value); }

Length::Unit
toUnitId(TokenId id)
{
  switch (id)
    {
    case T__PERCENTAGE: return Length::PERCENTAGE_UNIT;
    case T_EM: return Length::EM_UNIT;
    case T_EX: return Length::EX_UNIT;
    case T_PX: return Length::PX_UNIT;
    case T_IN: return Length::IN_UNIT;
    case T_CM: return Length::CM_UNIT;
    case T_MM: return Length::MM_UNIT;
    case T_PT: return Length::PT_UNIT;
    case T_PC: return Length::PC_UNIT;
    default: return Length::UNDEFINED_UNIT;
    }
}

Length::Unit
toUnitId(const SmartPtr<Value>& value)
{
  return toUnitId(ToTokenId(value));
}

RGBColor
ToRGB(const SmartPtr<Value>& value)
{
  if (IsRGBColor(value))
    return ToRGBColor(value);

  switch (ToTokenId(value))
    {
    case T_BLACK: return RGBColor::BLACK();
    case T_SILVER: return RGBColor::SILVER();
    case T_GRAY: return RGBColor::GRAY();
    case T_WHITE: return RGBColor::WHITE();
    case T_MAROON: return RGBColor::MAROON();
    case T_RED: return RGBColor::RED();
    case T_PURPLE: return RGBColor::PURPLE();
    case T_FUCHSIA: return RGBColor::FUCHSIA();
    case T_GREEN: return RGBColor::GREEN();
    case T_LIME: return RGBColor::LIME();
    case T_OLIVE: return RGBColor::OLIVE();
    case T_YELLOW: return RGBColor::YELLOW();
    case T_NAVY: return RGBColor::NAVY();
    case T_BLUE: return RGBColor::BLUE();
    case T_TEAL: return RGBColor::TEAL();
    case T_AQUA: return RGBColor::AQUA();
    default:
      assert(false);
      return RGBColor::BLACK();
    }
}

SmartPtr<Value>
GetComponent(const SmartPtr<Value>& value, int i, int j)
{
  if (value)
    if (i < 0)
      return value;
    else
      {
	SmartPtr<ValueSequence> vSeq = smart_cast<ValueSequence>(value);
	assert(vSeq);
	assert(vSeq->getSize() > 0);
	return GetComponent(vSeq->getValue(std::min(i, static_cast<int>(vSeq->getSize() - 1))), j, -1);
      }
  else
    return 0;
}