2006-12-09 21:33:38 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2005-04-03 15:48:03 +00:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcursorview.h
|
2016-10-18 22:48:04 +02:00
|
|
|
* Copyright (C) 2005-2016 Michael Natterer <mitch@gimp.org>
|
2005-04-03 15:48:03 +00:00
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2005-04-03 15:48:03 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2005-04-03 15:48:03 +00: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-11 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2005-04-03 15:48:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_CURSOR_VIEW_H__
|
|
|
|
#define __GIMP_CURSOR_VIEW_H__
|
|
|
|
|
|
|
|
|
2008-11-13 20:12:49 +00:00
|
|
|
#include "widgets/gimpeditor.h"
|
|
|
|
|
|
|
|
|
2005-04-03 15:48:03 +00: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-18 12:09:39 -04:00
|
|
|
typedef struct _GimpCursorViewClass GimpCursorViewClass;
|
|
|
|
typedef struct _GimpCursorViewPrivate GimpCursorViewPrivate;
|
2008-11-13 20:12:49 +00: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-18 12:09:39 -04:00
|
|
|
GimpEditor parent_instance;
|
2008-11-13 20:12:49 +00: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-18 12:09:39 -04:00
|
|
|
GimpCursorViewPrivate *priv;
|
2008-11-13 20:12:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpCursorViewClass
|
|
|
|
{
|
|
|
|
GimpEditorClass parent_class;
|
|
|
|
};
|
2005-04-03 15:48:03 +00:00
|
|
|
|
|
|
|
|
2005-07-08 22:54:46 +00:00
|
|
|
GType gimp_cursor_view_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2022-03-03 03:15:44 +00:00
|
|
|
GtkWidget * gimp_cursor_view_new (Gimp *gimp,
|
|
|
|
GimpMenuFactory *menu_factory);
|
2005-04-03 15:48:03 +00:00
|
|
|
|
2005-07-08 22:54:46 +00: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 15:48:03 +00:00
|
|
|
|
2005-07-08 22:54:46 +00:00
|
|
|
void gimp_cursor_view_update_cursor (GimpCursorView *view,
|
|
|
|
GimpImage *image,
|
Issue #8900 and #9923: reimplementing GimpUnit as a proper class.
This fixes all our GObject Introspection issues with GimpUnit which was
both an enum and an int-derived type of user-defined units *completing*
the enum values. GIR clearly didn't like this!
Now GimpUnit is a proper class and units are unique objects, allowing to
compare them with an identity test (i.e. `unit == gimp_unit_pixel ()`
tells us if unit is the pixel unit or not), which makes it easy to use,
just like with int, yet adding also methods, making for nicer
introspected API.
As an aside, this also fixes #10738, by having all the built-in units
retrievable even if libgimpbase had not been properly initialized with
gimp_base_init().
I haven't checked in details how GIR works to introspect, but it looks
like it loads the library to inspect and runs functions, hence
triggering some CRITICALS because virtual methods (supposed to be
initialized with gimp_base_init() run by libgimp) are not set. This new
code won't trigger any critical because the vtable method are now not
necessary, at least for all built-in units.
Note that GimpUnit is still in libgimpbase. It could have been moved to
libgimp in order to avoid any virtual method table (since we need to
keep core and libgimp side's units in sync, PDB is required), but too
many libgimpwidgets widgets were already using GimpUnit. And technically
most of GimpUnit logic doesn't require PDB (only the creation/sync
part). This is one of the reasons why user-created GimpUnit list is
handled and stored differently from other types of objects.
Globally this simplifies the code a lot too and we don't need separate
implementations of various utils for core and libgimp, which means less
prone to errors.
2024-07-25 20:55:21 +02:00
|
|
|
GimpUnit *shell_unit,
|
2024-11-16 14:08:44 +09:00
|
|
|
gboolean shell_show_all,
|
2005-07-08 22:54:46 +00:00
|
|
|
gdouble x,
|
|
|
|
gdouble y);
|
2007-03-20 19:03:34 +00:00
|
|
|
void gimp_cursor_view_clear_cursor (GimpCursorView *view);
|
|
|
|
|
2005-04-03 15:48:03 +00:00
|
|
|
|
|
|
|
#endif /* __GIMP_CURSOR_VIEW_H__ */
|