2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2005-04-03 23:48:03 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcursorview.h
|
2016-10-19 04:48:04 +08:00
|
|
|
* Copyright (C) 2005-2016 Michael Natterer <mitch@gimp.org>
|
2005-04-03 23:48:03 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2005-04-03 23:48:03 +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
|
2005-04-03 23:48:03 +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/>.
|
2005-04-03 23:48:03 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_CURSOR_VIEW_H__
|
|
|
|
#define __GIMP_CURSOR_VIEW_H__
|
|
|
|
|
|
|
|
|
2008-11-14 04:12:49 +08:00
|
|
|
#include "widgets/gimpeditor.h"
|
|
|
|
|
|
|
|
|
2005-04-03 23:48:03 +08:00
|
|
|
#define GIMP_TYPE_CURSOR_VIEW (gimp_cursor_view_get_type ())
|
|
|
|
#define GIMP_CURSOR_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CURSOR_VIEW, GimpCursorView))
|
|
|
|
#define GIMP_CURSOR_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CURSOR_VIEW, GimpCursorViewClass))
|
|
|
|
#define GIMP_IS_CURSOR_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CURSOR_VIEW))
|
|
|
|
#define GIMP_IS_CURSOR_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CURSOR_VIEW))
|
|
|
|
#define GIMP_CURSOR_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CURSOR_VIEW, GimpCursorViewClass))
|
|
|
|
|
|
|
|
|
app, libgimp*, modules: don't use g_type_class_add_private() ...
... and G_TYPE_INSTANCE_GET_PRIVATE()
g_type_class_add_private() and G_TYPE_INSTANCE_GET_PRIVATE() were
deprecated in GLib 2.58. Instead, use
G_DEFINE_[ABSTRACT_]TYPE_WITH_PRIVATE(), and
G_ADD_PRIVATE[_DYNAMIC](), and the implictly-defined
foo_get_instance_private() functions, all of which are available in
the GLib versions we depend on.
This commit only covers types registered using one of the
G_DEFINE_FOO() macros (i.e., most types), but not types with a
custom registration function, of which we still have a few -- GLib
currently only provides a (non-deprecated) public API for adding a
private struct using the G_DEFINE_FOO() macros.
Note that this commit was 99% auto-generated (because I'm not
*that* crazy :), so if there are any style mismatches... we'll have
to live with them for now.
2018-09-19 00:09:39 +08:00
|
|
|
typedef struct _GimpCursorViewClass GimpCursorViewClass;
|
|
|
|
typedef struct _GimpCursorViewPrivate GimpCursorViewPrivate;
|
2008-11-14 04:12:49 +08:00
|
|
|
|
|
|
|
struct _GimpCursorView
|
|
|
|
{
|
app, libgimp*, modules: don't use g_type_class_add_private() ...
... and G_TYPE_INSTANCE_GET_PRIVATE()
g_type_class_add_private() and G_TYPE_INSTANCE_GET_PRIVATE() were
deprecated in GLib 2.58. Instead, use
G_DEFINE_[ABSTRACT_]TYPE_WITH_PRIVATE(), and
G_ADD_PRIVATE[_DYNAMIC](), and the implictly-defined
foo_get_instance_private() functions, all of which are available in
the GLib versions we depend on.
This commit only covers types registered using one of the
G_DEFINE_FOO() macros (i.e., most types), but not types with a
custom registration function, of which we still have a few -- GLib
currently only provides a (non-deprecated) public API for adding a
private struct using the G_DEFINE_FOO() macros.
Note that this commit was 99% auto-generated (because I'm not
*that* crazy :), so if there are any style mismatches... we'll have
to live with them for now.
2018-09-19 00:09:39 +08:00
|
|
|
GimpEditor parent_instance;
|
2008-11-14 04:12:49 +08:00
|
|
|
|
app, libgimp*, modules: don't use g_type_class_add_private() ...
... and G_TYPE_INSTANCE_GET_PRIVATE()
g_type_class_add_private() and G_TYPE_INSTANCE_GET_PRIVATE() were
deprecated in GLib 2.58. Instead, use
G_DEFINE_[ABSTRACT_]TYPE_WITH_PRIVATE(), and
G_ADD_PRIVATE[_DYNAMIC](), and the implictly-defined
foo_get_instance_private() functions, all of which are available in
the GLib versions we depend on.
This commit only covers types registered using one of the
G_DEFINE_FOO() macros (i.e., most types), but not types with a
custom registration function, of which we still have a few -- GLib
currently only provides a (non-deprecated) public API for adding a
private struct using the G_DEFINE_FOO() macros.
Note that this commit was 99% auto-generated (because I'm not
*that* crazy :), so if there are any style mismatches... we'll have
to live with them for now.
2018-09-19 00:09:39 +08:00
|
|
|
GimpCursorViewPrivate *priv;
|
2008-11-14 04:12:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpCursorViewClass
|
|
|
|
{
|
|
|
|
GimpEditorClass parent_class;
|
|
|
|
};
|
2005-04-03 23:48:03 +08:00
|
|
|
|
|
|
|
|
2005-07-09 06:54:46 +08:00
|
|
|
GType gimp_cursor_view_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GtkWidget * gimp_cursor_view_new (GimpMenuFactory *menu_factory);
|
2005-04-03 23:48:03 +08:00
|
|
|
|
2005-07-09 06:54:46 +08:00
|
|
|
void gimp_cursor_view_set_sample_merged (GimpCursorView *view,
|
|
|
|
gboolean sample_merged);
|
|
|
|
gboolean gimp_cursor_view_get_sample_merged (GimpCursorView *view);
|
2005-04-03 23:48:03 +08:00
|
|
|
|
2005-07-09 06:54:46 +08:00
|
|
|
void gimp_cursor_view_update_cursor (GimpCursorView *view,
|
|
|
|
GimpImage *image,
|
2008-11-11 06:18:33 +08:00
|
|
|
GimpUnit shell_unit,
|
2005-07-09 06:54:46 +08:00
|
|
|
gdouble x,
|
|
|
|
gdouble y);
|
2007-03-21 03:03:34 +08:00
|
|
|
void gimp_cursor_view_clear_cursor (GimpCursorView *view);
|
|
|
|
|
2005-04-03 23:48:03 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_CURSOR_VIEW_H__ */
|