gtkperiodic.h

Go to the documentation of this file.
00001 // -*- C -*-
00002 
00003 /* 
00004  * Gnome Chemisty Utils
00005  * gtkperiodic.h 
00006  *
00007  * Copyright (C) 2002-2004 Jean Bréfort <jean.brefort@normalesup.org>
00008  *
00009  * This program is free software; you can redistribute it and/or 
00010  * modify it under the terms of the GNU General Public License as 
00011  * published by the Free Software Foundation; either version 2 of the
00012  * License, or (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
00022  * USA
00023  */
00024 
00025 #ifndef GTK_PERIODIC_H
00026 #define GTK_PERIODIC_H
00027 
00028 #include <gdk/gdk.h>
00029 #include <gtk/gtkbin.h>
00030 #include <gtk/gtkvbox.h>
00031 #include <gtk/gtktogglebutton.h>
00032 
00033 G_BEGIN_DECLS
00034 
00045 typedef enum
00046 {
00047   GTK_PERIODIC_COLOR_NONE,
00048   GTK_PERIODIC_COLOR_DEFAULT,
00049 } GtkPeriodicColorStyle;
00050 
00051 #define GTK_TYPE_PERIODIC                 (gtk_periodic_get_type ())
00052 #define GTK_PERIODIC(obj)                 (GTK_CHECK_CAST ((obj), GTK_TYPE_PERIODIC, GtkPeriodic))
00053 #define GTK_PERIODIC_CLASS(klass)         (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PERIODIC, GtkPeriodicClass))
00054 #define GTK_IS_PERIODIC(obj)      (GTK_CHECK_TYPE ((obj), GTK_TYPE_PERIODIC))
00055 #define GTK_IS_PERIODIC_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PERIODIC))
00056 #define GTK_PERIODIC_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PERIODIC, GtkPeriodicClass))
00057 
00058 typedef struct _GtkPeriodic       GtkPeriodic;
00059 typedef struct _GtkPeriodicClass  GtkPeriodicClass;
00060 typedef struct _GtkPeriodicPrivate       GtkPeriodicPrivate;
00061 
00095 struct _GtkPeriodic
00096 {
00097         GtkBin bin;
00098         
00099         GtkPeriodicPrivate *priv;
00100 };
00101 
00102 struct _GtkPeriodicClass
00103 {
00104         GtkBinClass parent_class;
00105 
00106         void (* element_changed_event)(GtkPeriodic *periodic);
00107 };
00108 
00109 GType               gtk_periodic_get_type          (void) G_GNUC_CONST;
00110 GtkWidget*            gtk_periodic_new               (void);
00111 
00120 guint                           gtk_periodic_get_element                (GtkPeriodic* periodic);
00129 void                            gtk_periodic_set_element                (GtkPeriodic* periodic, guint element);
00130 
00131 G_END_DECLS
00132 
00133 #endif //GTK_PERIODIC_H

Generated on Tue Aug 15 10:47:35 2006 for The Gnome Chemistry Utils by  doxygen 1.4.7