2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-02-27 00:17:10 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcellrendererviewable.h
|
|
|
|
* Copyright (C) 2003 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-02-27 00:17:10 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-02-27 00:17:10 +08:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-02-27 00:17:10 +08:00
|
|
|
*/
|
|
|
|
|
2003-03-13 03:02:51 +08:00
|
|
|
#ifndef __GIMP_CELL_RENDERER_VIEWABLE_H__
|
|
|
|
#define __GIMP_CELL_RENDERER_VIEWABLE_H__
|
2003-02-27 00:17:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_CELL_RENDERER_VIEWABLE (gimp_cell_renderer_viewable_get_type ())
|
|
|
|
#define GIMP_CELL_RENDERER_VIEWABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CELL_RENDERER_VIEWABLE, GimpCellRendererViewable))
|
|
|
|
#define GIMP_CELL_RENDERER_VIEWABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CELL_RENDERER_VIEWABLE, GimpCellRendererViewableClass))
|
|
|
|
#define GIMP_IS_CELL_RENDERER_VIEWABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CELL_RENDERER_VIEWABLE))
|
|
|
|
#define GIMP_IS_CELL_RENDERER_VIEWABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CELL_RENDERER_VIEWABLE))
|
|
|
|
#define GIMP_CELL_RENDERER_VIEWABLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CELL_RENDERER_VIEWABLE, GimpCellRendererViewableClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpCellRendererViewableClass GimpCellRendererViewableClass;
|
|
|
|
|
|
|
|
struct _GimpCellRendererViewable
|
|
|
|
{
|
2004-08-26 06:31:44 +08:00
|
|
|
GtkCellRenderer parent_instance;
|
2003-02-27 00:17:10 +08:00
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
GimpViewRenderer *renderer;
|
2003-02-27 00:17:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpCellRendererViewableClass
|
|
|
|
{
|
2003-03-01 11:53:41 +08:00
|
|
|
GtkCellRendererClass parent_class;
|
2003-03-16 19:14:29 +08:00
|
|
|
|
2010-06-28 03:44:29 +08:00
|
|
|
gboolean (* pre_clicked) (GimpCellRendererViewable *cell,
|
|
|
|
const gchar *path,
|
|
|
|
GdkModifierType state);
|
|
|
|
void (* clicked) (GimpCellRendererViewable *cell,
|
|
|
|
const gchar *path,
|
|
|
|
GdkModifierType state);
|
2003-02-27 00:17:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-28 03:44:29 +08:00
|
|
|
GType gimp_cell_renderer_viewable_get_type (void) G_GNUC_CONST;
|
|
|
|
GtkCellRenderer * gimp_cell_renderer_viewable_new (void);
|
|
|
|
gboolean gimp_cell_renderer_viewable_pre_clicked (GimpCellRendererViewable *cell,
|
|
|
|
const gchar *path,
|
|
|
|
GdkModifierType state);
|
|
|
|
void gimp_cell_renderer_viewable_clicked (GimpCellRendererViewable *cell,
|
|
|
|
const gchar *path,
|
|
|
|
GdkModifierType state);
|
2003-02-27 00:17:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_CELL_RENDERER_VIEWABLE_H__ */
|