mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
3.0 KiB
68 lines
3.0 KiB
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* go-data-simple.h :
|
|
*
|
|
* Copyright (C) 2003-2004 Jody Goldberg (jody@gnome.org)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* 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 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 GO_DATA_SIMPLE_H
|
|
#define GO_DATA_SIMPLE_H
|
|
|
|
#include <goffice/graph/goffice-graph.h>
|
|
#include <goffice/graph/go-data.h>
|
|
|
|
#define GO_DATA_SCALAR_VAL_TYPE (go_data_scalar_val_get_type ())
|
|
#define GO_DATA_SCALAR_VAL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_DATA_SCALAR_VAL_TYPE, GODataScalarVal))
|
|
#define IS_GO_DATA_SCALAR_VAL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_DATA_SCALAR_VAL_TYPE))
|
|
|
|
typedef struct _GODataScalarVal GODataScalarVal;
|
|
GType go_data_scalar_val_get_type (void);
|
|
GOData *go_data_scalar_val_new (double val);
|
|
|
|
#define GO_DATA_SCALAR_STR_TYPE (go_data_scalar_str_get_type ())
|
|
#define GO_DATA_SCALAR_STR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_DATA_SCALAR_STR_TYPE, GODataScalarStr))
|
|
#define IS_GO_DATA_SCALAR_STR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_DATA_SCALAR_STR_TYPE))
|
|
|
|
typedef struct _GODataScalarStr GODataScalarStr;
|
|
GType go_data_scalar_str_get_type (void);
|
|
GOData *go_data_scalar_str_new (char const *text, gboolean needs_free);
|
|
void go_data_scalar_str_set_str (GODataScalarStr *str,
|
|
char const *text, gboolean needs_free);
|
|
|
|
#define GO_DATA_VECTOR_VAL_TYPE (go_data_vector_val_get_type ())
|
|
#define GO_DATA_VECTOR_VAL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_DATA_VECTOR_VAL_TYPE, GODataVectorVal))
|
|
#define IS_GO_DATA_VECTOR_VAL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_DATA_VECTOR_VAL_TYPE))
|
|
|
|
typedef struct _GODataVectorVal GODataVectorVal;
|
|
GType go_data_vector_val_get_type (void);
|
|
GOData *go_data_vector_val_new (double const *val, unsigned n);
|
|
|
|
#define GO_DATA_VECTOR_STR_TYPE (go_data_vector_str_get_type ())
|
|
#define GO_DATA_VECTOR_STR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_DATA_VECTOR_STR_TYPE, GODataVectorStr))
|
|
#define IS_GO_DATA_VECTOR_STR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_DATA_VECTOR_STR_TYPE))
|
|
|
|
typedef struct _GODataVectorStr GODataVectorStr;
|
|
GType go_data_vector_str_get_type (void);
|
|
GOData *go_data_vector_str_new (char const * const *str, unsigned n);
|
|
void go_data_vector_str_set_translate_func (GODataVectorStr *vector,
|
|
GOTranslateFunc func,
|
|
gpointer data,
|
|
GDestroyNotify notify);
|
|
void go_data_vector_str_set_translation_domain (GODataVectorStr *vec,
|
|
char const *domain);
|
|
|
|
#endif /* GO_DATA_SIMPLE_H */
|