2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2002-03-08 08:27:45 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpdataeditor.h
|
2004-09-27 03:26:37 +08:00
|
|
|
* Copyright (C) 2002-2004 Michael Natterer <mitch@gimp.org>
|
2002-03-08 08:27:45 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2002-03-08 08:27:45 +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
|
2002-03-08 08:27:45 +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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2002-03-08 08:27:45 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_DATA_EDITOR_H__
|
|
|
|
#define __GIMP_DATA_EDITOR_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "gimpeditor.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_DATA_EDITOR (gimp_data_editor_get_type ())
|
|
|
|
#define GIMP_DATA_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DATA_EDITOR, GimpDataEditor))
|
|
|
|
#define GIMP_DATA_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DATA_EDITOR, GimpDataEditorClass))
|
|
|
|
#define GIMP_IS_DATA_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_DATA_EDITOR))
|
|
|
|
#define GIMP_IS_DATA_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_DATA_EDITOR))
|
|
|
|
#define GIMP_DATA_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_DATA_EDITOR, GimpDataEditorClass))
|
|
|
|
|
|
|
|
|
2004-09-27 03:26:37 +08:00
|
|
|
typedef struct _GimpDataEditorClass GimpDataEditorClass;
|
2002-03-08 08:27:45 +08:00
|
|
|
|
|
|
|
struct _GimpDataEditor
|
|
|
|
{
|
2003-01-11 01:55:53 +08:00
|
|
|
GimpEditor parent_instance;
|
2002-03-08 08:27:45 +08:00
|
|
|
|
2003-10-12 00:50:35 +08:00
|
|
|
GimpDataFactory *data_factory;
|
2006-08-30 05:44:51 +08:00
|
|
|
GimpContext *context;
|
2005-10-26 05:38:00 +08:00
|
|
|
gboolean edit_active;
|
|
|
|
|
2003-01-11 01:55:53 +08:00
|
|
|
GimpData *data;
|
2003-03-10 22:07:22 +08:00
|
|
|
gboolean data_editable;
|
2002-03-08 08:27:45 +08:00
|
|
|
|
2003-01-11 01:55:53 +08:00
|
|
|
GtkWidget *name_entry;
|
|
|
|
|
2007-03-18 02:20:19 +08:00
|
|
|
GtkWidget *view; /* filled by subclasses */
|
2002-03-08 08:27:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpDataEditorClass
|
|
|
|
{
|
|
|
|
GimpEditorClass parent_class;
|
|
|
|
|
|
|
|
/* virtual functions */
|
|
|
|
void (* set_data) (GimpDataEditor *editor,
|
|
|
|
GimpData *data);
|
2005-04-17 04:48:33 +08:00
|
|
|
|
|
|
|
const gchar *title;
|
2002-03-08 08:27:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-10-26 05:38:00 +08:00
|
|
|
GType gimp_data_editor_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
void gimp_data_editor_set_data (GimpDataEditor *editor,
|
|
|
|
GimpData *data);
|
|
|
|
GimpData * gimp_data_editor_get_data (GimpDataEditor *editor);
|
2002-03-08 08:27:45 +08:00
|
|
|
|
2005-10-26 05:38:00 +08:00
|
|
|
void gimp_data_editor_set_edit_active (GimpDataEditor *editor,
|
|
|
|
gboolean edit_active);
|
|
|
|
gboolean gimp_data_editor_get_edit_active (GimpDataEditor *editor);
|
2002-03-08 08:27:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_DATA_EDITOR_H__ */
|