2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-10-26 20:26:47 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcontrollereditor.h
|
|
|
|
* Copyright (C) 2004 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
|
2004-10-26 20:26:47 +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
|
2004-10-26 20:26:47 +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/>.
|
2004-10-26 20:26:47 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_CONTROLLER_EDITOR_H__
|
|
|
|
#define __GIMP_CONTROLLER_EDITOR_H__
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_CONTROLLER_EDITOR (gimp_controller_editor_get_type ())
|
|
|
|
#define GIMP_CONTROLLER_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CONTROLLER_EDITOR, GimpControllerEditor))
|
|
|
|
#define GIMP_CONTROLLER_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CONTROLLER_EDITOR, GimpControllerEditorClass))
|
|
|
|
#define GIMP_IS_CONTROLLER_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CONTROLLER_EDITOR))
|
|
|
|
#define GIMP_IS_CONTROLLER_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CONTROLLER_EDITOR))
|
|
|
|
#define GIMP_CONTROLLER_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CONTROLLER_EDITOR, GimpControllerEditorClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpControllerEditorClass GimpControllerEditorClass;
|
|
|
|
|
|
|
|
struct _GimpControllerEditor
|
|
|
|
{
|
|
|
|
GtkVBox parent_instance;
|
|
|
|
|
|
|
|
GimpControllerInfo *info;
|
2006-09-14 16:44:17 +08:00
|
|
|
GimpContext *context;
|
2004-10-26 23:10:00 +08:00
|
|
|
|
|
|
|
GtkTreeSelection *sel;
|
|
|
|
|
2005-05-11 06:08:48 +08:00
|
|
|
GtkWidget *grab_button;
|
2004-10-26 23:10:00 +08:00
|
|
|
GtkWidget *edit_button;
|
|
|
|
GtkWidget *delete_button;
|
|
|
|
|
|
|
|
GtkWidget *edit_dialog;
|
|
|
|
GtkTreeSelection *edit_sel;
|
2004-10-26 20:26:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpControllerEditorClass
|
|
|
|
{
|
|
|
|
GtkVBoxClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_controller_editor_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2006-09-14 16:44:17 +08:00
|
|
|
GtkWidget * gimp_controller_editor_new (GimpControllerInfo *info,
|
|
|
|
GimpContext *context);
|
2004-10-26 20:26:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_CONTROLLER_EDITOR_H__ */
|