~ubuntu-branches/ubuntu/maverick/gimp/maverick-updates

« back to all changes in this revision

Viewing changes to libgimpwidgets/gimpcellrenderercolor.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-09 19:44:52 UTC
  • Revision ID: james.westby@ubuntu.com-20051209194452-yggpemjlofpjqyf4
Tags: upstream-2.2.9
ImportĀ upstreamĀ versionĀ 2.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* LIBGIMP - The GIMP Library
 
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
 
3
 *
 
4
 * gimpcellrenderercolor.h
 
5
 * Copyright (C) 2004  Sven Neuman <sven1@gimp.org>
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Lesser General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef __GIMP_CELL_RENDERER_COLOR_H__
 
24
#define __GIMP_CELL_RENDERER_COLOR_H__
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
 
 
29
#define GIMP_TYPE_CELL_RENDERER_COLOR            (gimp_cell_renderer_color_get_type ())
 
30
#define GIMP_CELL_RENDERER_COLOR(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CELL_RENDERER_COLOR, GimpCellRendererColor))
 
31
#define GIMP_CELL_RENDERER_COLOR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CELL_RENDERER_COLOR, GimpCellRendererColorClass))
 
32
#define GIMP_IS_CELL_RENDERER_COLOR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CELL_RENDERER_COLOR))
 
33
#define GIMP_IS_CELL_RENDERER_COLOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CELL_RENDERER_COLOR))
 
34
#define GIMP_CELL_RENDERER_COLOR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CELL_RENDERER_COLOR, GimpCellRendererColorClass))
 
35
 
 
36
 
 
37
typedef struct _GimpCellRendererColorClass GimpCellRendererColorClass;
 
38
 
 
39
struct _GimpCellRendererColor
 
40
{
 
41
  GtkCellRenderer       parent_instance;
 
42
 
 
43
  GimpRGB               color;
 
44
  gboolean              opaque;
 
45
  GtkIconSize           size;
 
46
  gint                  border;
 
47
};
 
48
 
 
49
struct _GimpCellRendererColorClass
 
50
{
 
51
  GtkCellRendererClass  parent_class;
 
52
 
 
53
  /* Padding for future expansion */
 
54
  void (* _gimp_reserved1) (void);
 
55
  void (* _gimp_reserved2) (void);
 
56
  void (* _gimp_reserved3) (void);
 
57
  void (* _gimp_reserved4) (void);
 
58
};
 
59
 
 
60
 
 
61
GType             gimp_cell_renderer_color_get_type (void) G_GNUC_CONST;
 
62
 
 
63
GtkCellRenderer * gimp_cell_renderer_color_new      (void);
 
64
 
 
65
 
 
66
G_END_DECLS
 
67
 
 
68
#endif /* __GIMP_CELL_RENDERER_COLOR_H__ */