2006-12-10 05:33:38 +08:00
|
|
|
# GIMP - The GNU Image Manipulation Program
|
1998-10-24 13:21:56 +08:00
|
|
|
# Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
2009-01-18 06:28:01 +08:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
1998-10-24 13:21:56 +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
|
1998-10-24 13:21:56 +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/>.
|
1998-10-24 13:21:56 +08:00
|
|
|
|
|
|
|
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
|
|
|
|
|
2019-08-29 17:25:35 +08:00
|
|
|
sub display_id_is_valid {
|
|
|
|
$blurb = 'Returns TRUE if the display ID is valid.';
|
2007-01-13 03:59:36 +08:00
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
This procedure checks if the given display ID is valid and refers to an
|
|
|
|
existing display.
|
2024-08-26 20:52:08 +08:00
|
|
|
|
2024-08-26 21:14:48 +08:00
|
|
|
|
|
|
|
*Note*: in most use cases, you should not use this function. If you got a
|
2024-08-26 20:52:08 +08:00
|
|
|
[class@Gimp.Display] from the API, you should trust it is valid. This
|
|
|
|
function is mostly for internal usage.
|
2007-01-13 03:59:36 +08:00
|
|
|
HELP
|
|
|
|
|
2019-08-29 17:25:35 +08:00
|
|
|
&neo_pdb_misc('2007', '3.0');
|
2007-01-13 03:59:36 +08:00
|
|
|
|
|
|
|
@inargs = (
|
2019-08-29 17:25:35 +08:00
|
|
|
{ name => 'display_id', type => 'int32',
|
|
|
|
desc => 'The display ID to check' }
|
2007-01-13 03:59:36 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'valid', type => 'boolean',
|
|
|
|
desc => 'Whether the display ID is valid' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
2019-09-04 20:27:18 +08:00
|
|
|
valid = (gimp_display_get_by_id (gimp, display_id) != NULL);
|
2007-01-13 03:59:36 +08:00
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
1998-10-24 13:21:56 +08:00
|
|
|
sub display_new {
|
|
|
|
$blurb = 'Create a new display for the specified image.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
Creates a new display for the specified image. If the image already has a
|
2007-06-06 16:44:52 +08:00
|
|
|
display, another is added. Multiple displays are handled transparently by
|
1998-10-24 13:21:56 +08:00
|
|
|
GIMP. The newly created display is returned and can be subsequently destroyed
|
2006-06-14 16:32:08 +08:00
|
|
|
with a call to gimp_display_delete(). This procedure only makes sense for use
|
2014-05-27 07:55:36 +08:00
|
|
|
with the GIMP UI, and will result in an execution error if called when
|
|
|
|
GIMP has no UI.
|
1998-10-24 13:21:56 +08:00
|
|
|
HELP
|
|
|
|
|
|
|
|
&std_pdb_misc;
|
|
|
|
|
2006-03-22 17:58:08 +08:00
|
|
|
@inargs = (
|
2006-03-24 05:17:16 +08:00
|
|
|
{ name => 'image', type => 'image',
|
|
|
|
desc => 'The image' }
|
2006-03-22 17:58:08 +08:00
|
|
|
);
|
1998-10-24 13:21:56 +08:00
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'display', type => 'display',
|
2006-03-15 23:32:39 +08:00
|
|
|
desc => 'The new display' }
|
1998-10-24 13:21:56 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
2007-09-25 19:25:05 +08:00
|
|
|
gimp_image_flush (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-26 02:55:21 +08:00
|
|
|
display = gimp_create_display (gimp, image, gimp_unit_pixel (), 1.0, NULL);
|
2001-11-01 05:20:46 +08:00
|
|
|
|
2006-03-23 01:19:14 +08:00
|
|
|
if (display)
|
|
|
|
{
|
|
|
|
/* the first display takes ownership of the image */
|
2010-02-04 04:20:29 +08:00
|
|
|
if (gimp_image_get_display_count (image) == 1)
|
2006-03-24 05:17:16 +08:00
|
|
|
g_object_unref (image);
|
2006-03-23 01:19:14 +08:00
|
|
|
}
|
|
|
|
else
|
2008-02-21 21:43:10 +08:00
|
|
|
{
|
|
|
|
success = FALSE;
|
|
|
|
}
|
1998-10-24 13:21:56 +08:00
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub display_delete {
|
1999-03-20 07:04:16 +08:00
|
|
|
$blurb = 'Delete the specified display.';
|
1998-10-24 13:21:56 +08:00
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
This procedure removes the specified display. If this is the last remaining
|
2007-04-13 00:32:20 +08:00
|
|
|
display for the underlying image, then the image is deleted also. Note that
|
|
|
|
the display is closed no matter if the image is dirty or not. Better save
|
|
|
|
the image before calling this procedure.
|
1998-10-24 13:21:56 +08:00
|
|
|
HELP
|
|
|
|
|
|
|
|
&std_pdb_misc;
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
{ name => 'display', type => 'display',
|
2003-12-08 20:28:29 +08:00
|
|
|
desc => 'The display to delete' }
|
1998-10-24 13:21:56 +08:00
|
|
|
);
|
|
|
|
|
2006-03-25 05:57:47 +08:00
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
2006-03-22 17:58:08 +08:00
|
|
|
{
|
|
|
|
gimp_delete_display (gimp, display);
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
1998-10-24 13:21:56 +08:00
|
|
|
}
|
|
|
|
|
2021-04-30 09:39:23 +08:00
|
|
|
sub display_present {
|
|
|
|
$blurb = 'Present the specified display.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
This procedure presents the specified display at the top of the display stack.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&jehan_pdb_misc('2021', '3.0');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
{ name => 'display', type => 'display',
|
|
|
|
desc => 'The display to present' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
gimp_display_present (display);
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2005-09-06 04:47:12 +08:00
|
|
|
sub display_get_window_handle {
|
|
|
|
$blurb = 'Get a handle to the native window for an image display.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
This procedure returns a handle to the native window for a given image
|
app, libgimp*, pdb, plug-ins: reimplement generic inter-process transient window.
Having windows ID as guint32 is a mistake. Different systems have
different protocols. In Wayland in particular, Windows handles are
exchanged as strings. What this commit does is the following:
In core:
- get_window_id() virtual function in core GimpProgress is changed to
return a GBytes, as a generic "data" to represent a window differently
on different systems.
- All implementations of get_window_id() in various classes implementing
this interface are updated accordingly:
* GimpSubProgress
* GimpDisplay returns the handle of its shell.
* GimpDisplayShell now creates its window handle at construction with
libgimpwidget's gimp_widget_set_native_handle() and simply return
this handle every time it's requested.
* GimpFileDialog also creates its window handle at construction with
gimp_widget_set_native_handle().
- gimp_window_set_transient_for() in core is changed to take a
GimpProgress as argument (instead of a guint32 ID), requests and
process the ID itself, according to the running platform. In
particular, the following were improved:
* Unlike old code, it will work even if the window is not visible yet.
In such a case, the function simply adds a signal handler to set
transient at mapping. It makes it easier to use it at construction
in a reliable way.
* It now works for Wayland too, additionally to X11.
- GimpPdbProgress now exchanges a GBytes too with the command
GIMP_PROGRESS_COMMAND_GET_WINDOW.
- display_get_window_id() in gimp-gui.h also returns a GBytes now.
PDB/libgimp:
- gimp_display_get_window_handle() and gimp_progress_get_window_handle()
now return a GBytes to represent a window handle in an opaque way
(depending on the running platform).
In libgimp:
- GimpProgress's get_window() virtual function changed to return a
GBytes and renamed get_window_handle().
- In particular GimpProgressBar is the only implementation of
get_window_handle(). It creates its handle at object construction with
libgimpwidget's gimp_widget_set_native_handle() and the virtual
method's implementation simply returns the GBytes.
In libgimpUi:
- gimp_ui_get_display_window() and gimp_ui_get_progress_window() were
removed. We should not assume anymore that it is possible to create a
GdkWindow to be used. For instance this is not possible with Wayland
which has its own way to set a window transient with a string handle.
- gimp_window_set_transient_for_display() and
gimp_window_set_transient() now use an internal implementation similar
to core gimp_window_set_transient_for(), with the same improvements
(works even at construction when the window is not visible yet + works
for Wayland too).
In libgimpwidgets:
- New gimp_widget_set_native_handle() is a helper function used both in
core and libgimp* libraries for widgets which we want to be usable as
possible parents. It takes care of getting the relevant window handle
(depending on the running platform) and stores it in a given pointer,
either immediately or after a callback once the widget is mapped. So
it can be used at construction. Also it sets a handle for X11 or
Wayland.
In plug-ins:
- Screenshot uses the new gimp_progress_get_window_handle() directly now
in its X11 code path and creates out of it a GdkWindows itself with
gdk_x11_window_foreign_new_for_display().
Our inter-process transient implementation only worked for X11, and with
this commit, it works for Wayland too.
There is code for Windows but it is currently disabled as it apparently
hangs (there is a comment in-code which links to this old report:
https://bugzilla.gnome.org/show_bug.cgi?id=359538). NikcDC tested
yesterday with re-enabling the code and said they experienced a freeze.
;-(
Finally there is no infrastructure yet to make this work on macOS and
apparently there is no implementation of window handle in GDK for macOS
that I could find. I'm not sure if macOS doesn't have this concept of
setting transient on another processus's window or GDK is simply lacking
the implementation.
2023-08-14 20:23:06 +08:00
|
|
|
display.
|
|
|
|
|
|
|
|
It can be different types of data depending on the platform you are running on.
|
|
|
|
For example in the X backend of GDK, a native window handle is an Xlib
|
|
|
|
XID whereas on Wayland, it is a string handle. A value of NULL is
|
|
|
|
returned for an invalid display or if this function is unimplemented for
|
|
|
|
the windowing system that is being used.
|
2005-09-06 04:47:12 +08:00
|
|
|
HELP
|
|
|
|
|
2006-03-15 05:35:50 +08:00
|
|
|
&neo_pdb_misc('2005', '2.4');
|
2005-09-06 04:47:12 +08:00
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
{ name => 'display', type => 'display',
|
|
|
|
desc => 'The display to get the window handle from' }
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
app, libgimp*, pdb, plug-ins: reimplement generic inter-process transient window.
Having windows ID as guint32 is a mistake. Different systems have
different protocols. In Wayland in particular, Windows handles are
exchanged as strings. What this commit does is the following:
In core:
- get_window_id() virtual function in core GimpProgress is changed to
return a GBytes, as a generic "data" to represent a window differently
on different systems.
- All implementations of get_window_id() in various classes implementing
this interface are updated accordingly:
* GimpSubProgress
* GimpDisplay returns the handle of its shell.
* GimpDisplayShell now creates its window handle at construction with
libgimpwidget's gimp_widget_set_native_handle() and simply return
this handle every time it's requested.
* GimpFileDialog also creates its window handle at construction with
gimp_widget_set_native_handle().
- gimp_window_set_transient_for() in core is changed to take a
GimpProgress as argument (instead of a guint32 ID), requests and
process the ID itself, according to the running platform. In
particular, the following were improved:
* Unlike old code, it will work even if the window is not visible yet.
In such a case, the function simply adds a signal handler to set
transient at mapping. It makes it easier to use it at construction
in a reliable way.
* It now works for Wayland too, additionally to X11.
- GimpPdbProgress now exchanges a GBytes too with the command
GIMP_PROGRESS_COMMAND_GET_WINDOW.
- display_get_window_id() in gimp-gui.h also returns a GBytes now.
PDB/libgimp:
- gimp_display_get_window_handle() and gimp_progress_get_window_handle()
now return a GBytes to represent a window handle in an opaque way
(depending on the running platform).
In libgimp:
- GimpProgress's get_window() virtual function changed to return a
GBytes and renamed get_window_handle().
- In particular GimpProgressBar is the only implementation of
get_window_handle(). It creates its handle at object construction with
libgimpwidget's gimp_widget_set_native_handle() and the virtual
method's implementation simply returns the GBytes.
In libgimpUi:
- gimp_ui_get_display_window() and gimp_ui_get_progress_window() were
removed. We should not assume anymore that it is possible to create a
GdkWindow to be used. For instance this is not possible with Wayland
which has its own way to set a window transient with a string handle.
- gimp_window_set_transient_for_display() and
gimp_window_set_transient() now use an internal implementation similar
to core gimp_window_set_transient_for(), with the same improvements
(works even at construction when the window is not visible yet + works
for Wayland too).
In libgimpwidgets:
- New gimp_widget_set_native_handle() is a helper function used both in
core and libgimp* libraries for widgets which we want to be usable as
possible parents. It takes care of getting the relevant window handle
(depending on the running platform) and stores it in a given pointer,
either immediately or after a callback once the widget is mapped. So
it can be used at construction. Also it sets a handle for X11 or
Wayland.
In plug-ins:
- Screenshot uses the new gimp_progress_get_window_handle() directly now
in its X11 code path and creates out of it a GdkWindows itself with
gdk_x11_window_foreign_new_for_display().
Our inter-process transient implementation only worked for X11, and with
this commit, it works for Wayland too.
There is code for Windows but it is currently disabled as it apparently
hangs (there is a comment in-code which links to this old report:
https://bugzilla.gnome.org/show_bug.cgi?id=359538). NikcDC tested
yesterday with re-enabling the code and said they experienced a freeze.
;-(
Finally there is no infrastructure yet to make this work on macOS and
apparently there is no implementation of window handle in GDK for macOS
that I could find. I'm not sure if macOS doesn't have this concept of
setting transient on another processus's window or GDK is simply lacking
the implementation.
2023-08-14 20:23:06 +08:00
|
|
|
{ name => 'handle', type => 'bytes',
|
|
|
|
desc => 'The native window handle or NULL' }
|
2005-09-06 04:47:12 +08:00
|
|
|
);
|
|
|
|
|
2006-03-25 05:57:47 +08:00
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
2006-03-22 17:58:08 +08:00
|
|
|
{
|
app, libgimp*, pdb, plug-ins: reimplement generic inter-process transient window.
Having windows ID as guint32 is a mistake. Different systems have
different protocols. In Wayland in particular, Windows handles are
exchanged as strings. What this commit does is the following:
In core:
- get_window_id() virtual function in core GimpProgress is changed to
return a GBytes, as a generic "data" to represent a window differently
on different systems.
- All implementations of get_window_id() in various classes implementing
this interface are updated accordingly:
* GimpSubProgress
* GimpDisplay returns the handle of its shell.
* GimpDisplayShell now creates its window handle at construction with
libgimpwidget's gimp_widget_set_native_handle() and simply return
this handle every time it's requested.
* GimpFileDialog also creates its window handle at construction with
gimp_widget_set_native_handle().
- gimp_window_set_transient_for() in core is changed to take a
GimpProgress as argument (instead of a guint32 ID), requests and
process the ID itself, according to the running platform. In
particular, the following were improved:
* Unlike old code, it will work even if the window is not visible yet.
In such a case, the function simply adds a signal handler to set
transient at mapping. It makes it easier to use it at construction
in a reliable way.
* It now works for Wayland too, additionally to X11.
- GimpPdbProgress now exchanges a GBytes too with the command
GIMP_PROGRESS_COMMAND_GET_WINDOW.
- display_get_window_id() in gimp-gui.h also returns a GBytes now.
PDB/libgimp:
- gimp_display_get_window_handle() and gimp_progress_get_window_handle()
now return a GBytes to represent a window handle in an opaque way
(depending on the running platform).
In libgimp:
- GimpProgress's get_window() virtual function changed to return a
GBytes and renamed get_window_handle().
- In particular GimpProgressBar is the only implementation of
get_window_handle(). It creates its handle at object construction with
libgimpwidget's gimp_widget_set_native_handle() and the virtual
method's implementation simply returns the GBytes.
In libgimpUi:
- gimp_ui_get_display_window() and gimp_ui_get_progress_window() were
removed. We should not assume anymore that it is possible to create a
GdkWindow to be used. For instance this is not possible with Wayland
which has its own way to set a window transient with a string handle.
- gimp_window_set_transient_for_display() and
gimp_window_set_transient() now use an internal implementation similar
to core gimp_window_set_transient_for(), with the same improvements
(works even at construction when the window is not visible yet + works
for Wayland too).
In libgimpwidgets:
- New gimp_widget_set_native_handle() is a helper function used both in
core and libgimp* libraries for widgets which we want to be usable as
possible parents. It takes care of getting the relevant window handle
(depending on the running platform) and stores it in a given pointer,
either immediately or after a callback once the widget is mapped. So
it can be used at construction. Also it sets a handle for X11 or
Wayland.
In plug-ins:
- Screenshot uses the new gimp_progress_get_window_handle() directly now
in its X11 code path and creates out of it a GdkWindows itself with
gdk_x11_window_foreign_new_for_display().
Our inter-process transient implementation only worked for X11, and with
this commit, it works for Wayland too.
There is code for Windows but it is currently disabled as it apparently
hangs (there is a comment in-code which links to this old report:
https://bugzilla.gnome.org/show_bug.cgi?id=359538). NikcDC tested
yesterday with re-enabling the code and said they experienced a freeze.
;-(
Finally there is no infrastructure yet to make this work on macOS and
apparently there is no implementation of window handle in GDK for macOS
that I could find. I'm not sure if macOS doesn't have this concept of
setting transient on another processus's window or GDK is simply lacking
the implementation.
2023-08-14 20:23:06 +08:00
|
|
|
handle = gimp_get_display_window_id (gimp, display);
|
2006-03-22 17:58:08 +08:00
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
2005-09-06 04:47:12 +08:00
|
|
|
}
|
|
|
|
|
1998-10-24 13:21:56 +08:00
|
|
|
sub displays_flush {
|
|
|
|
$blurb = 'Flush all internal changes to the user interface';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
This procedure takes no arguments and returns nothing except a success status.
|
|
|
|
Its purpose is to flush all pending updates of image manipulations to the user
|
|
|
|
interface. It should be called whenever appropriate.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&std_pdb_misc;
|
|
|
|
|
2003-10-06 20:17:11 +08:00
|
|
|
%invoke = (
|
|
|
|
headers => [ qw("core/gimpcontainer.h") ],
|
2006-03-22 17:58:08 +08:00
|
|
|
code => <<'CODE'
|
|
|
|
|
|
|
|
{
|
|
|
|
gimp_container_foreach (gimp->images, (GFunc) gimp_image_flush, NULL);
|
|
|
|
}
|
|
|
|
CODE
|
2003-10-06 20:17:11 +08:00
|
|
|
);
|
1998-10-24 13:21:56 +08:00
|
|
|
}
|
|
|
|
|
2002-12-03 20:10:21 +08:00
|
|
|
sub displays_reconnect {
|
|
|
|
$blurb = 'Reconnect displays from one image to another image.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
2004-11-30 00:59:53 +08:00
|
|
|
This procedure connects all displays of the old_image to the
|
|
|
|
new_image. If the old_image has no display or new_image already has a
|
|
|
|
display the reconnect is not performed and the procedure returns
|
|
|
|
without success. You should rarely need to use this function.
|
2002-12-03 20:10:21 +08:00
|
|
|
HELP
|
|
|
|
|
|
|
|
&std_pdb_misc;
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
{ name => 'old_image', type => 'image',
|
2004-11-30 00:59:53 +08:00
|
|
|
desc => 'The old image (must have at least one display)' },
|
2002-12-03 20:10:21 +08:00
|
|
|
{ name => 'new_image', type => 'image',
|
2003-12-08 20:28:29 +08:00
|
|
|
desc => 'The new image (must not have a display)' }
|
2002-12-03 20:10:21 +08:00
|
|
|
);
|
|
|
|
|
2006-03-25 05:57:47 +08:00
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
2004-11-30 00:59:53 +08:00
|
|
|
{
|
|
|
|
success = (old_image != new_image &&
|
2010-02-04 04:20:29 +08:00
|
|
|
gimp_image_get_display_count (old_image) > 0 &&
|
|
|
|
gimp_image_get_display_count (new_image) == 0);
|
2004-11-30 00:59:53 +08:00
|
|
|
|
|
|
|
if (success)
|
|
|
|
{
|
|
|
|
gimp_reconnect_displays (gimp, old_image, new_image);
|
|
|
|
|
|
|
|
/* take ownership of the image */
|
2010-02-04 04:20:29 +08:00
|
|
|
if (gimp_image_get_display_count (new_image) > 0)
|
2004-11-30 00:59:53 +08:00
|
|
|
g_object_unref (new_image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
2002-12-03 20:10:21 +08:00
|
|
|
}
|
|
|
|
|
2006-03-24 05:17:16 +08:00
|
|
|
|
2019-09-04 20:27:18 +08:00
|
|
|
@headers = qw("core/gimp.h"
|
|
|
|
"core/gimpdisplay.h");
|
1999-03-28 14:36:11 +08:00
|
|
|
|
2019-08-29 17:25:35 +08:00
|
|
|
@procs = qw(display_id_is_valid
|
2008-02-08 01:08:54 +08:00
|
|
|
display_new
|
|
|
|
display_delete
|
2007-01-13 03:59:36 +08:00
|
|
|
display_get_window_handle
|
2021-04-30 09:39:23 +08:00
|
|
|
display_present
|
|
|
|
displays_flush
|
2008-02-08 01:08:54 +08:00
|
|
|
displays_reconnect);
|
2006-03-24 05:17:16 +08:00
|
|
|
|
1998-10-24 13:21:56 +08:00
|
|
|
%exports = (app => [@procs], lib => [@procs]);
|
|
|
|
|
2002-12-04 07:00:42 +08:00
|
|
|
$desc = 'Display procedures';
|
2010-07-07 17:43:10 +08:00
|
|
|
$doc_title = 'gimpdisplay';
|
|
|
|
$doc_short_desc = 'Functions to create, delete and flush displays (views) on an image.';
|
|
|
|
$doc_long_desc = 'Functions to create, delete and flush displays (views) on an image.';
|
1998-10-24 13:21:56 +08:00
|
|
|
|
|
|
|
1;
|