"Fossies" - the Fresh Open Source Software Archive

Member "gtkdatabox-1.0.0/gtk/gtkdatabox_lines.h" (31 Mar 2021, 3340 Bytes) of package /linux/privat/gtkdatabox-1.0.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /* $Id: gtkdatabox_lines.h 4 2008-06-22 09:19:11Z rbock $ */
    2 /* GtkDatabox - An extension to the gtk+ library
    3  * Copyright (C) 1998 - 2008  Dr. Roland Bock
    4  *
    5  * This program is free software; you can redistribute it and/or
    6  * modify it under the terms of the GNU Lesser General Public License
    7  * as published by the Free Software Foundation; either version 2.1
    8  * of the License, or (at your option) any later version.
    9  * 
   10  * This program is distributed in the hope that it will be useful,
   11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
   12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   13  * GNU Lesser General Public License for more details.
   14  * 
   15  * You should have received a copy of the GNU General Public License
   16  * along with this program; if not, write to the Free Software
   17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
   18  */
   19 
   20 /**
   21  * SECTION:gtkdatabox_lines
   22  * @short_description: A #GtkDataboxGraph used for displaying xy-values series of connected lines.
   23  * @include: gtkdatabox_lines.h
   24  * @see_also: #GtkDatabox, #GtkDataboxGraph, #GtkDataboxPoints, #GtkDataboxBars, #GtkDataboxMarkers
   25  *
   26  * #GtkDataboxLines is a #GtkDataboxGraph class for displaying xy-values as series of connected lines.
   27  *
   28  */
   29 
   30 #ifndef __GTK_DATABOX_LINES_H__
   31 #define __GTK_DATABOX_LINES_H__
   32 
   33 #include <gtkdatabox_xyc_graph.h>
   34 
   35 G_BEGIN_DECLS
   36 #define GTK_DATABOX_TYPE_LINES        (gtk_databox_lines_get_type ())
   37 #define GTK_DATABOX_LINES(obj)        (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
   38                                            GTK_DATABOX_TYPE_LINES, \
   39                                            GtkDataboxLines))
   40 #define GTK_DATABOX_LINES_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), \
   41                                            GTK_DATABOX_TYPE_LINES, \
   42                                            GtkDataboxLinesClass))
   43 #define GTK_DATABOX_IS_LINES(obj)     (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
   44                                            GTK_DATABOX_TYPE_LINES))
   45 #define GTK_DATABOX_IS_LINES_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
   46                                            GTK_DATABOX_TYPE_LINES))
   47 #define GTK_DATABOX_LINES_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
   48                                            GTK_DATABOX_TYPE_LINES, \
   49                                            GtkDataboxLinesClass))
   50 
   51 /**
   52  * GtkDataboxLines
   53  *
   54  * #GtkDataboxLines is a #GtkDataboxGraph class for displaying xy-values as series of connected lines.
   55  *
   56  */
   57    typedef struct _GtkDataboxLines GtkDataboxLines;
   58 
   59    /**
   60     * GtkDataboxLinesClass
   61     *
   62     * The object class of #GtkDataboxLines.
   63     *
   64     **/
   65    typedef struct _GtkDataboxLinesClass GtkDataboxLinesClass;
   66 
   67    struct _GtkDataboxLines
   68    {
   69       /*< private >*/
   70       GtkDataboxXYCGraph parent;
   71    };
   72 
   73    struct _GtkDataboxLinesClass
   74    {
   75       GtkDataboxXYCGraphClass parent_class;
   76    };
   77 
   78    GType gtk_databox_lines_get_type (void);
   79 
   80    GtkDataboxGraph *gtk_databox_lines_new (guint len, gfloat * X, gfloat * Y,
   81                        GdkRGBA * color, guint size);
   82 
   83    GtkDataboxGraph *gtk_databox_lines_new_full (guint maxlen, guint len,
   84             void * X, guint xstart, guint xstride, GType xtype,
   85             void * Y, guint ystart, guint ystride, GType ytype,
   86             GdkRGBA * color, guint size);
   87 
   88 G_END_DECLS
   89 #endif              /* __GTK_DATABOX_LINES_H__ */