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
|
/* $Id: gtkdatabox_lines.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_lines.h>
static void gtk_databox_lines_real_draw (GtkDataboxGraph * lines,
GtkDatabox* box);
struct _GtkDataboxLinesPrivate
{
GdkPoint *data;
};
static gpointer parent_class = NULL;
static void
lines_finalize (GObject * object)
{
GtkDataboxLines *lines = GTK_DATABOX_LINES (object);
g_free (lines->priv->data);
g_free (lines->priv);
/* Chain up to the parent class */
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
gtk_databox_lines_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);
GtkDataboxLinesClass *klass = GTK_DATABOX_LINES_CLASS (g_class);
parent_class = g_type_class_peek_parent (klass);
gobject_class->finalize = lines_finalize;
graph_class->draw = gtk_databox_lines_real_draw;
}
static void
gtk_databox_lines_complete (GtkDataboxLines * lines)
{
lines->priv->data =
g_new0 (GdkPoint,
gtk_databox_xyc_graph_get_length
(GTK_DATABOX_XYC_GRAPH (lines)));
}
static void
gtk_databox_lines_instance_init (GTypeInstance * instance /*,
gpointer g_class */ )
{
GtkDataboxLines *lines = GTK_DATABOX_LINES (instance);
lines->priv = g_new0 (GtkDataboxLinesPrivate, 1);
g_signal_connect (lines, "notify::length",
G_CALLBACK (gtk_databox_lines_complete), NULL);
}
GType
gtk_databox_lines_get_type (void)
{
static GType type = 0;
if (type == 0)
{
static const GTypeInfo info = {
sizeof (GtkDataboxLinesClass),
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) gtk_databox_lines_class_init, /* class_init */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (GtkDataboxLines), /* instance_size */
0, /* n_preallocs */
(GInstanceInitFunc) gtk_databox_lines_instance_init, /* instance_init */
NULL, /* value_table */
};
type = g_type_register_static (GTK_DATABOX_TYPE_XYC_GRAPH,
"GtkDataboxLines", &info, 0);
}
return type;
}
/**
* gtk_databox_lines_new:
* @len: length of @X and @Y
* @X: array of horizontal position values of markers
* @Y: array of vertical position values of markers
* @color: color of the markers
* @size: marker size or line width (depending on the @type)
*
* Creates a new #GtkDataboxLines object which can be added to a #GtkDatabox widget.
*
* Return value: A new #GtkDataboxLines object
**/
GtkDataboxGraph *
gtk_databox_lines_new (guint len, gfloat * X, gfloat * Y,
GdkColor * color, guint size)
{
GtkDataboxLines *lines;
g_return_val_if_fail (X, NULL);
g_return_val_if_fail (Y, NULL);
g_return_val_if_fail ((len > 0), NULL);
lines = g_object_new (GTK_DATABOX_TYPE_LINES,
"X-Values", X,
"Y-Values", Y,
"length", len, "color", color, "size", size, NULL);
return GTK_DATABOX_GRAPH (lines);
}
static void
gtk_databox_lines_real_draw (GtkDataboxGraph * graph,
GtkDatabox * box)
{
GtkWidget *widget;
GtkDataboxLines *lines = GTK_DATABOX_LINES (graph);
GdkPoint *data;
GdkPixmap *pixmap;
GtkStyle *style;
GdkGC *gc;
guint i = 0;
gfloat *X;
gfloat *Y;
guint len;
gint size = 0;
g_return_if_fail (GTK_DATABOX_IS_LINES (lines));
g_return_if_fail (GTK_IS_DATABOX (box));
widget = GTK_WIDGET(box);
pixmap = gtk_databox_get_backing_pixmap (box);
style = widget->style;
if (!(gc = gtk_databox_graph_get_gc(graph)))
gc = gtk_databox_graph_create_gc (graph, box);
len = gtk_databox_xyc_graph_get_length (GTK_DATABOX_XYC_GRAPH (graph));
X = gtk_databox_xyc_graph_get_X (GTK_DATABOX_XYC_GRAPH (graph));
Y = gtk_databox_xyc_graph_get_Y (GTK_DATABOX_XYC_GRAPH (graph));
size = gtk_databox_graph_get_size (graph);
data = lines->priv->data;
gtk_databox_values_to_pixels (box, len, X, Y, data);
/* More than 2^16 lines will cause X IO error on most XServers
(Hint from Paul Barton-Davis) */
for (i = 0; i < len; i += 65536)
{
gdk_draw_lines (pixmap, gc, data + i,
MIN (65536, len - i));
}
return;
}
|