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.
61 lines
2.0 KiB
61 lines
2.0 KiB
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* go-color-group.h - Utility to keep a shered memory of custom colors
|
|
* between arbitrary widgets.
|
|
* Copyright 2000, Michael Levy
|
|
* Copyright 2001, Almer S. Tigelaar
|
|
*
|
|
* Authors:
|
|
* Michael Levy (mlevy@genoscope.cns.fr)
|
|
* Revised and polished by:
|
|
* Almer S. Tigelaar <almer@gnome.org>
|
|
* Rewritten yet again by
|
|
* Jody Goldberg <jody@gnome.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License, version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
* 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef GO_COLOR_GROUP_H
|
|
#define GO_COLOR_GROUP_H
|
|
|
|
#include <glib-object.h>
|
|
#include <goffice/utils/go-color.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GO_COLOR_GROUP_HISTORY_SIZE 8
|
|
|
|
typedef struct {
|
|
GObject parent;
|
|
|
|
char *name;
|
|
gpointer context;
|
|
|
|
GOColor history[GO_COLOR_GROUP_HISTORY_SIZE];
|
|
} GOColorGroup;
|
|
|
|
#define GO_COLOR_GROUP_TYPE (go_color_group_get_type ())
|
|
#define GO_COLOR_GROUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GO_COLOR_GROUP_TYPE, GOColorGroup))
|
|
#define IS_GO_COLOR_GROUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GO_COLOR_GROUP_TYPE))
|
|
|
|
GType go_color_group_get_type (void);
|
|
GOColorGroup *go_color_group_find (char const *name, gpointer context);
|
|
GOColorGroup *go_color_group_fetch (char const *name, gpointer context);
|
|
void go_color_group_add_color (GOColorGroup *cg, GOColor c);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* GO_COLOR_GROUP_H */
|