2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-04-11 21:17:23 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimptemplateeditor.h
|
|
|
|
* Copyright (C) 2002 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-04-11 21:17:23 +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-04-11 21:17:23 +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/>.
|
2003-04-11 21:17:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_TEMPLATE_EDITOR_H__
|
|
|
|
#define __GIMP_TEMPLATE_EDITOR_H__
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_TEMPLATE_EDITOR (gimp_template_editor_get_type ())
|
|
|
|
#define GIMP_TEMPLATE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_TEMPLATE_EDITOR, GimpTemplateEditor))
|
|
|
|
#define GIMP_TEMPLATE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_TEMPLATE_EDITOR, GimpTemplateEditorClass))
|
|
|
|
#define GIMP_IS_TEMPLATE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_TEMPLATE_EDITOR))
|
|
|
|
#define GIMP_IS_TEMPLATE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_TEMPLATE_EDITOR))
|
|
|
|
#define GIMP_TEMPLATE_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_TEMPLATE_EDITOR, GimpTemplateEditorClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpTemplateEditorClass GimpTemplateEditorClass;
|
|
|
|
|
|
|
|
struct _GimpTemplateEditor
|
|
|
|
{
|
2011-03-01 18:50:16 +08:00
|
|
|
GtkBox parent_instance;
|
2003-04-11 21:17:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpTemplateEditorClass
|
|
|
|
{
|
2010-10-30 21:44:46 +08:00
|
|
|
GtkBoxClass parent_class;
|
2003-04-11 21:17:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-03-01 18:50:16 +08:00
|
|
|
GType gimp_template_editor_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GtkWidget * gimp_template_editor_new (GimpTemplate *template,
|
|
|
|
Gimp *gimp,
|
|
|
|
gboolean edit_template);
|
2003-04-11 21:17:23 +08:00
|
|
|
|
2011-03-01 18:50:16 +08:00
|
|
|
GimpTemplate * gimp_template_editor_get_template (GimpTemplateEditor *editor);
|
2004-06-10 06:37:49 +08:00
|
|
|
|
2011-03-01 18:50:16 +08:00
|
|
|
void gimp_template_editor_show_advanced (GimpTemplateEditor *editor,
|
|
|
|
gboolean expanded);
|
|
|
|
GtkWidget * gimp_template_editor_get_size_se (GimpTemplateEditor *editor);
|
2014-04-19 00:43:32 +08:00
|
|
|
GtkWidget * gimp_template_editor_get_resolution_se
|
|
|
|
(GimpTemplateEditor *editor);
|
|
|
|
GtkWidget * gimp_template_editor_get_resolution_chain
|
|
|
|
(GimpTemplateEditor *editor);
|
2003-04-11 21:17:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_TEMPLATE_EDITOR_H__ */
|