File: attributes.c

package info (click to toggle)
dia 0.98%2Bgit20250126-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 52,072 kB
  • sloc: ansic: 155,381; xml: 14,056; python: 6,250; cpp: 3,598; sh: 439; perl: 137; makefile: 25
file content (340 lines) | stat: -rw-r--r-- 7,906 bytes parent folder | download | duplicates (2)
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/* Dia -- an diagram creation/manipulation program
 * Copyright (C) 1998 Alexander Larsson
 *
 * This program 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.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include "config.h"

#include <glib/gi18n-lib.h>

#include "attributes.h"
#include "persistence.h"


static Color attributes_foreground = { 0.0f, 0.0f, 0.0f, 1.0f };
static Color attributes_background = { 1.0f, 1.0f, 1.0f, 1.0f };

static double attributes_default_linewidth = 0.1;

static Arrow attributes_start_arrow = {
  ARROW_NONE,
  DEFAULT_ARROW_SIZE,
  DEFAULT_ARROW_SIZE
};

static Arrow attributes_end_arrow = {
  ARROW_NONE,
  DEFAULT_ARROW_SIZE,
  DEFAULT_ARROW_SIZE
};

static DiaLineStyle attributes_linestyle = DIA_LINE_STYLE_SOLID;
static double attributes_dash_length = 1.0;

static DiaFont *attributes_font = NULL;
static double attributes_font_height = 0.8;


/**
 * attributes_get_foreground:
 *
 * Get the foreground color attribute (lines and text)
 *
 * Returns: The current foreground color as set in the toolbox.
 *
 * Since: dawn-of-time
 */
Color
attributes_get_foreground (void)
{
  return attributes_foreground;
}


/**
 * attributes_get_background:
 *
 * Get the background color attribute (for box background and such)
 *
 * Returns: The current background color as set in the toolbox.
 *
 * Since: dawn-of-time
 */
Color
attributes_get_background (void)
{
  return attributes_background;
}


/**
 * attributes_set_foreground:
 * @color: A color object to use for foreground color. This object is
 *         not stored by ths function and can be freed afterwards.
 *
 * Set the default foreground color for new objects.
 *
 * Since: dawn-of-time
 */
void
attributes_set_foreground (Color *color)
{
  attributes_foreground = *color;
  persistence_set_color ("fg_color", color);
}


/**
 * attributes_set_background:
 * @color: A color object to use for background color. This object is
 *         not stored by ths function and can be freed afterwards.
 *
 * Set the default background color for new objects.
 *
 * Since: dawn-of-time
 */
void
attributes_set_background (Color *color)
{
  attributes_background = *color;
  persistence_set_color ("bg_color", color);
}


/**
 * attributes_swap_fgbg:
 *
 * Swap the current foreground and background colors
 *
 * Since: dawn-of-time
 */
void
attributes_swap_fgbg (void)
{
  Color temp;
  temp = attributes_foreground;
  attributes_set_foreground (&attributes_background);
  attributes_set_background (&temp);
}


/**
 * attributes_default_fgbg:
 *
 * Set the default foreground and background colors to black and white.
 *
 * Since: dawn-of-time
 */
void
attributes_default_fgbg (void)
{
  attributes_set_foreground (&color_black);
  attributes_set_background (&color_white);
}


/**
 * attributes_get_default_linewidth:
 *
 * Get the default line width as defined by the toolbox.
 *
 * Returns: A linewidth (0.0 < linewidth < 10.0) that should be used as default
 *          for new objects.
 *
 * Since: dawn-of-time
 */
double
attributes_get_default_linewidth (void)
{
  return attributes_default_linewidth;
}


/**
 * attributes_set_default_linewidth:
 * @width: The line width (0.0 < linewidth < 10.0) to use for new objects.
 *
 * Set the default line width.
 *
 * Since: dawn-of-time
 */
void
attributes_set_default_linewidth (double width)
{
  attributes_default_linewidth = width;
  persistence_set_real ("linewidth", width);
}


/**
 * attributes_get_default_start_arrow:
 *
 * Get the default arrow type to put at the start (origin) of a connector.
 *
 * Returns: An arrow object for the arrow type defined in the toolbox.
 *
 * Since: dawn-of-time
 */
Arrow
attributes_get_default_start_arrow (void)
{
  return attributes_start_arrow;
}


/**
 * attributes_set_default_start_arrow:
 * @arrow: An arrow object to be used for the start of new connectors.
 *
 * Set the default arrow type that the toolbox will supply for new objects.
 *
 * Since: dawn-of-time
 */
void
attributes_set_default_start_arrow (Arrow arrow)
{
  attributes_start_arrow = arrow;
  persistence_set_string ("start-arrow-type",
                          arrow_get_name_from_type (arrow.type));
  persistence_set_real ("start-arrow-width", arrow.width);
  persistence_set_real ("start-arrow-length", arrow.length);
}


/**
 * attributes_get_default_end_arrow:
 *
 * Get the default arrow type to put at the end (target) of a connector.
 *
 * Returns: An arrow object for the arrow type defined in the toolbox.
 *
 * Since: dawn-of-time
 */
Arrow
attributes_get_default_end_arrow (void)
{
  return attributes_end_arrow;
}


/**
 * attributes_set_default_end_arrow:
 * @arrow: An arrow object to be used for the end of new connectors.
 *
 * Set the default arrow type that the toolbox will supply for new objects.
 *
 * Since: dawn-of-time
 */
void
attributes_set_default_end_arrow (Arrow arrow)
{
  attributes_end_arrow = arrow;
  persistence_set_string ("end-arrow-type",
                          arrow_get_name_from_type (arrow.type));
  persistence_set_real ("end-arrow-width", arrow.width);
  persistence_set_real ("end-arrow-length", arrow.length);
}


/**
 * attributes_get_default_line_style:
 * @style: (out): A place to return the style (number of dots and dashes)
 * @dash_length: (out): A place to return how long a dash is
 *                      (0.0 < dash_length < ???)
 *
 * Get the default line style (dashes, dots etc)
 *
 * Since: dawn-of-time
 */
void
attributes_get_default_line_style (DiaLineStyle *style, double *dash_length)
{
  if (style) {
    *style = attributes_linestyle;
  }
  if (dash_length) {
    *dash_length = attributes_dash_length;
  }
}


/**
 * attributes_set_default_line_style:
 * @style: The style (number of dots and dashes)
 * @dash_length: The length of a dash (0.0 < dash_length < ???)
 *
 * Set the default line style (dashes, dots etc)
 *
 * Since: dawn-of-time
 */
void
attributes_set_default_line_style (DiaLineStyle style, double dash_length)
{
  attributes_linestyle = style;
  attributes_dash_length = dash_length;
  persistence_set_integer ("line-style", style);
  persistence_set_real ("dash-length", dash_length);
}


/**
 * attributes_get_default_font:
 * @font: (out): A place to return the default font description set by the user
 * @font_height: (out): A place to return the default font height set by the user
 *
 * Get the default font.
 *
 * Note that there is currently no way for the user to set these.
 *
 * Since: dawn-of-time
 */
void
attributes_get_default_font (DiaFont **font, double *font_height)
{
  if (!attributes_font) {
    attributes_font = dia_font_new_from_style (DIA_FONT_SANS,
                                               attributes_font_height);
  }

  if (font) {
    *font = g_object_ref (attributes_font);
  }

  if (font_height) {
    *font_height = attributes_font_height;
  }
}


/**
 * attributes_set_default_font:
 * @font: The font to set as the new default. This object will be ref'd by
 *        this call.
 * @font_height: The font height to set as the new default.
 *
 * Set the default font.
 *
 * Note that this is not currently stored persistently.
 *
 * Since: dawn-of-time
 */
void
attributes_set_default_font (DiaFont *font, real font_height)
{
  g_set_object (&attributes_font, font);

  attributes_font_height = font_height;
}