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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
|
/* $Id: gtkdatabox_grid.c 4 2008-06-22 09:19:11Z rbock $ */
/* GtkDatabox - An extension to the gtk+ library
* Copyright (C) 1998 - 2008 Dr. Roland Bock
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* 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 Lesser 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 <gtkdatabox_grid.h>
static void gtk_databox_grid_real_draw (GtkDataboxGraph * grid,
GtkDatabox* box);
static GdkGC* gtk_databox_grid_real_create_gc (GtkDataboxGraph * graph,
GtkDatabox* box);
/* IDs of properties */
enum
{
GRID_HLINES = 1,
GRID_VLINES,
GRID_HLINE_VALS,
GRID_VLINE_VALS
};
struct _GtkDataboxGridPrivate
{
gint hlines;
gint vlines;
gfloat *hline_vals;
gfloat *vline_vals;
};
static gpointer parent_class = NULL;
static void
gtk_databox_grid_set_property (GObject * object,
guint property_id,
const GValue * value, GParamSpec * pspec)
{
GtkDataboxGrid *grid = GTK_DATABOX_GRID (object);
switch (property_id)
{
case GRID_HLINES:
{
gtk_databox_grid_set_hlines (grid, g_value_get_int (value));
}
break;
case GRID_VLINES:
{
gtk_databox_grid_set_vlines (grid, g_value_get_int (value));
}
break;
case GRID_HLINE_VALS:
{
gtk_databox_grid_set_hline_vals (grid, (gfloat *) g_value_get_pointer (value));
}
break;
case GRID_VLINE_VALS:
{
gtk_databox_grid_set_vline_vals (grid, (gfloat *) g_value_get_pointer (value));
}
break;
default:
/* We don't have any other property... */
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
static void
gtk_databox_grid_get_property (GObject * object,
guint property_id,
GValue * value, GParamSpec * pspec)
{
GtkDataboxGrid *grid = GTK_DATABOX_GRID (object);
switch (property_id)
{
case GRID_HLINES:
{
g_value_set_int (value, gtk_databox_grid_get_hlines (grid));
}
break;
case GRID_VLINES:
{
g_value_set_int (value, gtk_databox_grid_get_vlines (grid));
}
break;
case GRID_HLINE_VALS:
{
g_value_set_pointer (value, gtk_databox_grid_get_hline_vals (grid));
}
break;
case GRID_VLINE_VALS:
{
g_value_set_pointer (value, gtk_databox_grid_get_vline_vals (grid));
}
break;
default:
/* We don't have any other property... */
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
static GdkGC*
gtk_databox_grid_real_create_gc (GtkDataboxGraph * graph,
GtkDatabox* box)
{
GdkGC *gc;
GdkGCValues values;
g_return_val_if_fail (GTK_DATABOX_IS_GRID (graph), NULL);
gc = GTK_DATABOX_GRAPH_CLASS (parent_class)->create_gc (graph, box);
if (gc)
{
values.line_style = GDK_LINE_ON_OFF_DASH;
values.cap_style = GDK_CAP_BUTT;
values.join_style = GDK_JOIN_MITER;
gdk_gc_set_values (gc, &values,
GDK_GC_LINE_STYLE |
GDK_GC_CAP_STYLE | GDK_GC_JOIN_STYLE);
}
return gc;
}
static void
grid_finalize (GObject * object)
{
GtkDataboxGrid *grid = GTK_DATABOX_GRID (object);
g_free (grid->priv);
/* Chain up to the parent class */
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
gtk_databox_grid_class_init (gpointer g_class /*, gpointer g_class_data */ )
{
GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
GtkDataboxGraphClass *graph_class = GTK_DATABOX_GRAPH_CLASS (g_class);
GtkDataboxGridClass *klass = GTK_DATABOX_GRID_CLASS (g_class);
GParamSpec *grid_param_spec;
parent_class = g_type_class_peek_parent (klass);
gobject_class->set_property = gtk_databox_grid_set_property;
gobject_class->get_property = gtk_databox_grid_get_property;
gobject_class->finalize = grid_finalize;
grid_param_spec = g_param_spec_int ("grid-hlines", "grid-hlines", "Number of horizontal lines", G_MININT, G_MAXINT, 0, /* default value */
G_PARAM_READWRITE);
g_object_class_install_property (gobject_class,
GRID_HLINES, grid_param_spec);
grid_param_spec = g_param_spec_int ("grid-vlines", "grid-vlines", "Number of vertical lines", G_MININT, G_MAXINT, 0, /* default value */
G_PARAM_READWRITE);
g_object_class_install_property (gobject_class,
GRID_VLINES, grid_param_spec);
grid_param_spec = g_param_spec_pointer ("grid-hline-vals", "Grid Hline Vals", "The locations of each of the horizontal lines", G_PARAM_READWRITE);
g_object_class_install_property (gobject_class,
GRID_HLINE_VALS, grid_param_spec);
grid_param_spec = g_param_spec_pointer ("grid-vline-vals", "Grid Vline Vals", "The locations of each of the vertical lines", G_PARAM_READWRITE);
g_object_class_install_property (gobject_class,
GRID_VLINE_VALS, grid_param_spec);
graph_class->draw = gtk_databox_grid_real_draw;
graph_class->create_gc = gtk_databox_grid_real_create_gc;
}
static void
gtk_databox_grid_instance_init (GTypeInstance * instance /*,
gpointer g_class */ )
{
GtkDataboxGrid *grid = GTK_DATABOX_GRID (instance);
grid->priv = g_new0 (GtkDataboxGridPrivate, 1);
}
GType
gtk_databox_grid_get_type (void)
{
static GType type = 0;
if (type == 0)
{
static const GTypeInfo info = {
sizeof (GtkDataboxGridClass),
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) gtk_databox_grid_class_init, /* class_init */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (GtkDataboxGrid), /* instance_size */
0, /* n_preallocs */
(GInstanceInitFunc) gtk_databox_grid_instance_init, /* instance_init */
NULL, /* value_table */
};
type = g_type_register_static (GTK_DATABOX_TYPE_GRAPH,
"GtkDataboxGrid", &info, 0);
}
return type;
}
/**
* gtk_databox_grid_new:
* @hlines: number of horizontal lines in the grid
* @vlines: number of vertical lines in the grid
* @color: color of the grid
* @size: line width of the grid
*
* Creates a new #GtkDataboxGrid object which can be added to a #GtkDatabox widget as nice decoration for other graphs.
*
* Return value: A new #GtkDataboxGrid object
**/
GtkDataboxGraph *
gtk_databox_grid_new (gint hlines, gint vlines, GdkColor * color, guint size)
{
GtkDataboxGrid *grid;
grid = g_object_new (GTK_DATABOX_TYPE_GRID,
"color", color,
"size", size,
"grid-hlines", hlines, "grid-vlines", vlines, "grid-hline-vals",NULL, "grid-vline-vals", NULL, NULL);
return GTK_DATABOX_GRAPH (grid);
}
/**
* gtk_databox_grid_array_new:
* @hlines: number of horizontal lines in the grid
* @vlines: number of vertical lines in the grid
* @hline_vals: a pointer to an array of gfloat horizontal grid coordinate
* @vline_vals: a pointer to an array of gfloat vertical grid coordinate
* @color: color of the grid
* @size: line width of the grid
*
* Creates a new #GtkDataboxGrid object which can be added to a #GtkDatabox widget as nice decoration for other graphs.
*
* Return value: A new #GtkDataboxGrid object
**/
GtkDataboxGraph *gtk_databox_grid_array_new (gint hlines, gint vlines, gfloat * local_hline_vals, gfloat * local_vline_vals,
GdkColor * color, guint size)
{
GtkDataboxGrid *grid;
grid = g_object_new (GTK_DATABOX_TYPE_GRID,
"color", color,
"size", size,
"grid-hlines", hlines, "grid-vlines", vlines, "grid-hline-vals", local_hline_vals, "grid-vline-vals", local_vline_vals, NULL);
return GTK_DATABOX_GRAPH (grid);
}
static void
gtk_databox_grid_real_draw (GtkDataboxGraph * graph,
GtkDatabox* box)
{
GtkWidget *widget;
GtkDataboxGrid *grid = GTK_DATABOX_GRID (graph);
GdkGC *gc;
GdkPixmap *pixmap;
gint i = 0;
gfloat x;
gfloat y;
gint16 width;
gint16 height;
gfloat offset_x;
gfloat offset_y;
gfloat factor_x;
gfloat factor_y;
gint16 pixel_x;
gint16 pixel_y;
gfloat left, right, top, bottom;
g_return_if_fail (GTK_DATABOX_IS_GRID (grid));
g_return_if_fail (GTK_IS_DATABOX (box));
widget = GTK_WIDGET(box);
pixmap = gtk_databox_get_backing_pixmap (box);
gtk_databox_get_total_limits (box, &left, &right, &top, &bottom);
if (!(gc = gtk_databox_graph_get_gc(graph)))
gc = gtk_databox_graph_create_gc (graph, box);
width = widget->allocation.width;
height = widget->allocation.height;
offset_x = left;
factor_x =
(right - left) / (grid->priv->vlines + 1);
offset_y = top;
factor_y =
(bottom - top) / (grid->priv->hlines + 1);
if (grid->priv->hline_vals == NULL)
for (i = 0; i < grid->priv->hlines; i++)
{
y = offset_y + (i + 1) * factor_y;
pixel_y = gtk_databox_value_to_pixel_y (box, y);
gdk_draw_line (pixmap, gc, 0, pixel_y, width, pixel_y);
}
else
for (i = 0; i < grid->priv->hlines; i++)
{
y = grid->priv->hline_vals[i];
pixel_y = gtk_databox_value_to_pixel_y (box, y);
gdk_draw_line (pixmap, gc, 0, pixel_y, width, pixel_y);
}
if (grid->priv->vline_vals == NULL)
for (i = 0; i < grid->priv->vlines; i++)
{
x = offset_x + (i + 1) * factor_x;
pixel_x = gtk_databox_value_to_pixel_x (box, x);
gdk_draw_line (pixmap, gc, pixel_x, 0, pixel_x, height);
}
else
for (i = 0; i < grid->priv->vlines; i++)
{
x = grid->priv->vline_vals[i];
pixel_x = gtk_databox_value_to_pixel_x (box, x);
gdk_draw_line (pixmap, gc, pixel_x, 0, pixel_x, height);
}
return;
}
/**
* gtk_databox_grid_set_hlines:
* @grid: a #GtkDataboxGrid graph object
* @hlines: number of vertical lines in the grid
*
* Sets the number of horizontal lines in the @grid.
**/
void
gtk_databox_grid_set_hlines (GtkDataboxGrid * grid, gint hlines)
{
g_return_if_fail (GTK_DATABOX_IS_GRID (grid));
grid->priv->hlines = MAX (1, hlines);
g_object_notify (G_OBJECT (grid), "grid-hlines");
}
/**
* gtk_databox_grid_get_hlines:
* @grid: a #GtkDataboxGrid graph object
*
* Gets the number of horizontal lines in the @grid.
*
* Return value: Number of horizontal lines in the @grid.
**/
gint
gtk_databox_grid_get_hlines (GtkDataboxGrid * grid)
{
g_return_val_if_fail (GTK_DATABOX_IS_GRID (grid), -1);
return grid->priv->hlines;
}
/**
* gtk_databox_grid_set_vlines:
* @grid: a #GtkDataboxGrid graph object
* @vlines: number of vertical lines in the grid
*
* Sets the number of vertical lines in the @grid.
**/
void
gtk_databox_grid_set_vlines (GtkDataboxGrid * grid, gint vlines)
{
g_return_if_fail (GTK_DATABOX_IS_GRID (grid));
grid->priv->vlines = MAX (1, vlines);
g_object_notify (G_OBJECT (grid), "grid-vlines");
}
/**
* gtk_databox_grid_get_vlines:
* @grid: a #GtkDataboxGrid graph object
*
* Gets the number of vertical lines in the @grid.
*
* Return value: Number of vertical lines in the @grid.
**/
gint
gtk_databox_grid_get_vlines (GtkDataboxGrid * grid)
{
g_return_val_if_fail (GTK_DATABOX_IS_GRID (grid), -1);
return grid->priv->vlines;
}
/**
* gtk_databox_grid_set_hline_vals:
* @grid: a #GtkDataboxGrid graph object
* @hline_vals: sets the pointer to the hline values for the grid
*
* Sets the pointer to the horizontal lines in the @grid.
**/
void
gtk_databox_grid_set_hline_vals (GtkDataboxGrid * grid, gfloat *hline_vals)
{
g_return_if_fail (GTK_DATABOX_IS_GRID (grid));
grid->priv->hline_vals = hline_vals;
g_object_notify (G_OBJECT (grid), "grid-hline-vals");
}
/**
* gtk_databox_grid_get_hline_vals:
* @grid: a #GtkDataboxGrid graph object
*
* Gets the pointer to the horizontal line values for the @grid.
*
* Return value: Pointer to the horizontal line values for the @grid.
**/
gfloat*
gtk_databox_grid_get_hline_vals (GtkDataboxGrid * grid)
{
g_return_val_if_fail (GTK_DATABOX_IS_GRID (grid), -1);
return grid->priv->hline_vals;
}
/**
* gtk_databox_grid_set_vline_vals:
* @grid: a #GtkDataboxGrid graph object
* @vline_vals: sets the pointer to the vline values for the grid
*
* Sets the pointer to the vertical lines in the @grid.
**/
void
gtk_databox_grid_set_vline_vals (GtkDataboxGrid * grid, gfloat *vline_vals)
{
g_return_if_fail (GTK_DATABOX_IS_GRID (grid));
grid->priv->vline_vals = vline_vals;
g_object_notify (G_OBJECT (grid), "grid-vline-vals");
}
/**
* gtk_databox_grid_get_vline_vals:
* @grid: a #GtkDataboxGrid graph object
*
* Gets the pointer to the vertical line values for the @grid.
*
* Return value: Pointer to the vertical line values for the @grid.
**/
gfloat*
gtk_databox_grid_get_vline_vals (GtkDataboxGrid * grid)
{
g_return_val_if_fail (GTK_DATABOX_IS_GRID (grid), -1);
return grid->priv->vline_vals;
}
|