/usr/include/gtkdatabox.h is in libgtkdatabox-0.9.2-0-dev 1:0.9.2.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* $Id: gtkdatabox.h 3 2008-06-22 08:45:45Z 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.
*/
#ifndef __GTK_DATABOX_H__
#define __GTK_DATABOX_H__
#include <gtkdatabox_typedefs.h>
#include <gtkdatabox_graph.h>
#include <gtkdatabox_ruler.h>
#include <gtk/gtkwidget.h>
#include <gtk/gtkadjustment.h>
/**
* SECTION:gtkdatabox
* @short_description: A GTK+ widget to display large amounts of numerical data quickly and easily.
* @include: gtkdatabox.h
* @see_also: #GtkDataboxGraph, #GtkDataboxPoints, #GtkDataboxLines, #GtkDataboxMarkers, #GtkDataboxGrid
*
* #GtkDatabox is a widget for the GTK+ library designed to display
* large amounts of numerical data quickly and easily. It allows
* for one or more data sets of thousands of data points (X and Y coordinates)
* to be displayed and updated in split seconds.
*
* It offers the ability to zoom into and out of the data, and to navigate
* through your data by scrolling.
*
* In addition to rulers and a simple
* coordinate cross, it allows you to add one (or even more) configurable grids
* like on an oscilloscope.
*
* Data may be presented as dots, lines connecting the data,
* or vertical bars. The widget allows you to easily transform pixel
* coordinates into data coordinates, thus allowing you to easily create
* powerful applications for data analysis.
*
**/
G_BEGIN_DECLS
#define GTK_TYPE_DATABOX (gtk_databox_get_type ())
#define GTK_DATABOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
GTK_TYPE_DATABOX, \
GtkDatabox))
#define GTK_DATABOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
GTK_TYPE_DATABOX, \
GtkDataboxClass))
#define GTK_IS_DATABOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
GTK_TYPE_DATABOX))
#define GTK_IS_DATABOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
GTK_TYPE_DATABOX))
#define GTK_DATABOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
GTK_TYPE_DATABOX, \
GtkDataboxClass))
typedef struct _GtkDataboxClass GtkDataboxClass;
/**
* GtkDataboxPrivate
*
* A private data structure used by the #GtkDatabox. It shields all internal things
* from developers who are just using the widget.
*
**/
typedef struct _GtkDataboxPrivate GtkDataboxPrivate;
typedef struct
{
gfloat x1;
gfloat x2;
gfloat y1;
gfloat y2;
} GtkDataboxValueRectangle;
/**
* _GtkDatabox
* @box: The parent object
* @priv: A private structure containing internal data.
*
* Implementation of #GtkDatabox.
*
**/
struct _GtkDatabox
{
/*< private >*/
GtkWidget box;
GtkDataboxPrivate *priv;
};
struct _GtkDataboxClass
{
GtkWidgetClass parent_class;
void (*zoomed) (GtkDatabox * box);
void (*selection_started) (GtkDatabox * box,
GtkDataboxValueRectangle * selectionValues);
void (*selection_changed) (GtkDatabox * box,
GtkDataboxValueRectangle * selectionValues);
void (*selection_finalized) (GtkDatabox * box,
GtkDataboxValueRectangle *
selectionValues);
void (*selection_canceled) (GtkDatabox * box);
};
GType gtk_databox_get_type (void);
GtkWidget *gtk_databox_new (void);
gint gtk_databox_graph_add (GtkDatabox * box, GtkDataboxGraph * graph);
gint gtk_databox_graph_add_front (GtkDatabox * box, GtkDataboxGraph * graph);
gint gtk_databox_graph_remove (GtkDatabox * box, GtkDataboxGraph * graph);
gint gtk_databox_graph_remove_all (GtkDatabox * box);
gint gtk_databox_auto_rescale (GtkDatabox * box, gfloat border);
gint gtk_databox_calculate_extrema (GtkDatabox * box,
gfloat * min_x, gfloat * max_x,
gfloat * min_y, gfloat * max_y);
void gtk_databox_set_total_limits (GtkDatabox * box,
gfloat left, gfloat right,
gfloat top, gfloat bottom);
void gtk_databox_set_visible_limits (GtkDatabox * box,
gfloat left, gfloat right,
gfloat top, gfloat bottom);
void gtk_databox_get_total_limits (GtkDatabox * box,
gfloat * left, gfloat * right,
gfloat * top, gfloat * bottom);
void gtk_databox_get_visible_limits (GtkDatabox * box,
gfloat * left, gfloat * right,
gfloat * top, gfloat * bottom);
void gtk_databox_set_adjustment_x (GtkDatabox * box, GtkAdjustment * adj);
void gtk_databox_set_adjustment_y (GtkDatabox * box, GtkAdjustment * adj);
GtkAdjustment *gtk_databox_get_adjustment_x (GtkDatabox * box);
GtkAdjustment *gtk_databox_get_adjustment_y (GtkDatabox * box);
void gtk_databox_set_ruler_x (GtkDatabox * box, GtkDataboxRuler * ruler);
void gtk_databox_set_ruler_y (GtkDatabox * box, GtkDataboxRuler * ruler);
GtkDataboxRuler *gtk_databox_get_ruler_x (GtkDatabox * box);
GtkDataboxRuler *gtk_databox_get_ruler_y (GtkDatabox * box);
void gtk_databox_set_scale_type_x (GtkDatabox * box,
GtkDataboxScaleType scale_type);
void gtk_databox_set_scale_type_y (GtkDatabox * box,
GtkDataboxScaleType scale_type);
GtkDataboxScaleType gtk_databox_get_scale_type_x (GtkDatabox * box);
GtkDataboxScaleType gtk_databox_get_scale_type_y (GtkDatabox * box);
void gtk_databox_set_enable_selection (GtkDatabox * box, gboolean enable);
void gtk_databox_set_enable_zoom (GtkDatabox * box, gboolean enable);
void gtk_databox_set_box_shadow(GtkDatabox * box, GtkShadowType which_shadow);
gboolean gtk_databox_get_enable_selection (GtkDatabox * box);
gboolean gtk_databox_get_enable_zoom (GtkDatabox * box);
GtkShadowType gtk_databox__get_box_shadow(GtkDatabox * box);
void gtk_databox_zoom_to_selection (GtkDatabox * box);
void gtk_databox_zoom_out (GtkDatabox * box);
void gtk_databox_zoom_home (GtkDatabox * box);
gint16 gtk_databox_value_to_pixel_x (GtkDatabox * box, gfloat value);
gint16 gtk_databox_value_to_pixel_y (GtkDatabox * box, gfloat value);
gfloat gtk_databox_pixel_to_value_x (GtkDatabox * box, gint16 pixel);
gfloat gtk_databox_pixel_to_value_y (GtkDatabox * box, gint16 pixel);
void gtk_databox_values_to_pixels (GtkDatabox * box,
guint len,
const gfloat * values_x,
const gfloat * values_y,
GdkPoint * pixels);
void gtk_databox_create_box_with_scrollbars_and_rulers (GtkWidget **
p_box,
GtkWidget **
p_table,
gboolean scrollbar_x,
gboolean scrollbar_y,
gboolean ruler_x,
gboolean ruler_y);
void
gtk_databox_create_box_with_scrollbars_and_rulers_positioned (GtkWidget ** p_box,
GtkWidget ** p_table,
gboolean scrollbar_x,
gboolean scrollbar_y,
gboolean ruler_x,
gboolean ruler_y,
gboolean ruler_x_top,
gboolean ruler_y_left);
/* Used by graph objects */
GdkPixmap* gtk_databox_get_backing_pixmap(GtkDatabox * box);
G_END_DECLS
#endif /* __GTK_DATABOX_H__ */
|