gplate/gplate-variable.h
author Gary Kramlich <grim@reaperworld.com>
Sat Jul 03 23:24:33 2010 -0500 (22 months ago)
changeset 394 ad26d98e20e6
parent 261 76fd2955b82d
permissions -rw-r--r--
Changed the license from gplv2 to gplv3
Updated copyrights to be 2007-2010 rather than 2007-2008 (since just about everything has been touched recently
Ignored the top level tests/ directory for now since that is slowly being replaced
     1 /*
     2  * Copyright (C) 2007-2010 Gary Kramlich <grim@reaperworld.com>
     3  *
     4  * This program is free software: you can redistribute it and/or modify
     5  * it under the terms of the GNU General Public License as published by
     6  * the Free Software Foundation, either version 3 of the License, or
     7  * (at your option) any later version.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    16  */
    17 #ifndef GPLATE_VARIABLE_H
    18 #define GPLATE_VARIABLE_H
    19 
    20 #include <glib.h>
    21 #include <glib-object.h>
    22 
    23 #define GPLATE_TYPE_VARIABLE			(gplate_variable_get_gtype())
    24 #define GPLATE_VARIABLE(obj)			(G_TYPE_CHECK_INSTANCE_CAST((obj), GPLATE_TYPE_VARIABLE, GPlateVariable))
    25 #define GPLATE_VARIABLE_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST((klass), GPLATE_TYPE_VARIABLE, GPlateVariableClass))
    26 #define GPLATE_IS_VARIABLE(obj)			(G_TYPE_CHECK_INSTANCE_TYPE((obj), GPLATE_TYPE_VARIABLE))
    27 #define GPLATE_IS_VARIABLE_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE((klass), GPLATE_TYPE_VARIABLE))
    28 #define GPLATE_VARIABLE_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS((obj), GPLATE_TYPE_VARIABLE, GPlateVariableClass))
    29 
    30 typedef struct _GPlateVariable			GPlateVariable;
    31 typedef struct _GPlateVariableClass		GPlateVariableClass;
    32 
    33 struct _GPlateVariable {
    34 	GObject gparent;
    35 
    36 	void (*_gplate_reserved1)(void);
    37 	void (*_gplate_reserved2)(void);
    38 	void (*_gplate_reserved3)(void);
    39 	void (*_gplate_reserved4)(void);
    40 };
    41 
    42 struct _GPlateVariableClass {
    43 	GObjectClass parent;
    44 
    45 	const gchar *(*get_name)(const GPlateVariable *variable);
    46 
    47 	const gchar *(*get_value)(const GPlateVariable *variable);
    48 	void (*set_value)(GPlateVariable *variable, const gchar *value);
    49 
    50 	void (*_gplate_reserved1)(void);
    51 	void (*_gplate_reserved2)(void);
    52 	void (*_gplate_reserved3)(void);
    53 	void (*_gplate_reserved4)(void);
    54 };
    55 
    56 G_BEGIN_DECLS
    57 
    58 GType gplate_variable_get_gtype(void);
    59 
    60 GPlateVariable *gplate_variable_new_from_string(const gchar *name, const gchar *value);
    61 GPlateVariable *gplate_variable_new_from_boolean(const gchar *name, gboolean value);
    62 GPlateVariable *gplate_variable_new_from_integer(const gchar *name, gint value);
    63 GPlateVariable *gplate_variable_new_from_float(const gchar *name, gfloat value);
    64 GPlateVariable *gplate_variable_new_from_double(const gchar *name, gdouble value);
    65 
    66 const gchar *gplate_variable_get_name(const GPlateVariable *variable);
    67 
    68 const gchar *gplate_variable_get_value(const GPlateVariable *variable);
    69 void gplate_variable_set_value(GPlateVariable *variable, const gchar *value);
    70 
    71 G_END_DECLS
    72 
    73 #endif /* GPLATE_VARIABLE_H */