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
|
/* 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 "attributes.h"
#include "intl.h"
#include "persistence.h"
static Color attributes_foreground = { 0.0f, 0.0f, 0.0f };
static Color attributes_background = { 1.0f, 1.0f, 1.0f };
static real 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 LineStyle attributes_linestyle = LINESTYLE_SOLID;
static real attributes_dash_length = 1.0;
static DiaFont *attributes_font = NULL;
static real attributes_font_height = 0.8;
Color
attributes_get_foreground(void)
{
return attributes_foreground;
}
Color
attributes_get_background(void)
{
return attributes_background;
}
void
attributes_set_foreground(Color *color)
{
attributes_foreground = *color;
persistence_set_color("fg_color", color);
}
void
attributes_set_background(Color *color)
{
attributes_background = *color;
persistence_set_color("bg_color", color);
}
void
attributes_swap_fgbg(void)
{
Color temp;
temp = attributes_foreground;
attributes_set_foreground(&attributes_background);
attributes_set_background(&temp);
}
void
attributes_default_fgbg(void)
{
attributes_set_foreground(&color_black);
attributes_set_background(&color_white);
}
real
attributes_get_default_linewidth(void)
{
return attributes_default_linewidth;
}
void
attributes_set_default_linewidth(real width)
{
attributes_default_linewidth = width;
persistence_set_real("linewidth", width);
}
Arrow
attributes_get_default_start_arrow(void)
{
return attributes_start_arrow;
}
void
attributes_set_default_start_arrow(Arrow arrow)
{
attributes_start_arrow = arrow;
persistence_set_string("start-arrow-type",
arrow_types[arrow_index_from_type(arrow.type)].name);
persistence_set_real("start-arrow-width", arrow.width);
persistence_set_real("start-arrow-length", arrow.length);
}
Arrow
attributes_get_default_end_arrow(void)
{
return attributes_end_arrow;
}
void
attributes_set_default_end_arrow(Arrow arrow)
{
attributes_end_arrow = arrow;
persistence_set_string("end-arrow-type",
arrow_types[arrow_index_from_type(arrow.type)].name);
persistence_set_real("end-arrow-width", arrow.width);
persistence_set_real("end-arrow-length", arrow.length);
}
void
attributes_get_default_line_style(LineStyle *style, real *dash_length)
{
if (style)
*style = attributes_linestyle;
if (dash_length)
*dash_length = attributes_dash_length;
}
void
attributes_set_default_line_style(LineStyle style, real dash_length)
{
attributes_linestyle = style;
attributes_dash_length = dash_length;
persistence_set_integer("line-style", style);
persistence_set_real("dash-length", dash_length);
}
void
attributes_get_default_font(DiaFont **font, real *font_height)
{
if (!attributes_font) {
attributes_font = dia_font_new_from_style(DIA_FONT_SANS,
attributes_font_height);
}
if (font)
*font = dia_font_ref(attributes_font);
if (font_height)
*font_height = attributes_font_height;
}
void
attributes_set_default_font(DiaFont *font, real font_height)
{
if (attributes_font != NULL)
dia_font_unref(attributes_font);
attributes_font = dia_font_ref(font);
attributes_font_height = font_height;
}
|