2006-12-10 05:33:38 +08:00
|
|
|
# GIMP - The GNU Image Manipulation Program
|
1999-04-04 13:59:43 +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
|
1999-04-04 13:59:43 +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
|
1999-04-04 13:59:43 +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/>.
|
1999-04-04 13:59:43 +08:00
|
|
|
|
|
|
|
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
|
|
|
|
|
|
|
|
sub brushes_popup {
|
2022-10-16 03:11:05 +08:00
|
|
|
$blurb = 'Invokes the GIMP brush selection dialog.';
|
|
|
|
$help = 'Opens a dialog letting a user choose a brush.';
|
1999-04-04 13:59:43 +08:00
|
|
|
|
2006-03-15 05:35:50 +08:00
|
|
|
&andy_pdb_misc('1998');
|
1999-04-04 13:59:43 +08:00
|
|
|
|
|
|
|
@inargs = (
|
2022-10-16 03:11:05 +08:00
|
|
|
{ name => 'brush_callback', type => 'string', non_empty => 1,
|
|
|
|
desc => 'The callback PDB proc to call when user chooses a brush' },
|
|
|
|
{ name => 'popup_title', type => 'string',
|
|
|
|
desc => 'Title of the brush selection dialog' },
|
2023-08-17 07:30:59 +08:00
|
|
|
{ name => 'initial_brush', type => 'brush', null_ok => 1,
|
|
|
|
desc => 'The brush to set as the initial choice' },
|
app, libgimp, pdb: add a parent_window parameter to gimp_*_popup() PDB calls.
Brush, font, gradient, palette and pattern choices are currently chosen through
a dialog created by the core, which then returns the user choice to the calling
plug-in. This has the unfortunate consequence of having a pile of likely at
least 3 windows (main GIMP window by core process, plug-in window by plug-in
process, then the choice popup by the core process) shared in 2 processes, which
often end up under each other and that's messy. Even more as the choice popup is
kinda expected to be like a sub-part of the plug-in dialog.
So anyway, now the plug-in can send its window handle to the core so that the
resource choice dialog ends up always above the plug-in dialog.
Of course, it will always work only on platforms where we have working
inter-process transient support.
2023-08-15 06:12:16 +08:00
|
|
|
{ name => 'parent_window', type => 'bytes', null_ok => 1,
|
|
|
|
desc => 'An optional parent window handle for the popup to be set transient to' }
|
1999-04-04 13:59:43 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
2023-08-27 07:02:37 +08:00
|
|
|
GimpContainer *container = gimp_data_factory_get_container (gimp->brush_factory);
|
|
|
|
|
|
|
|
if (gimp->no_interface ||
|
2006-04-26 17:13:47 +08:00
|
|
|
! gimp_pdb_lookup_procedure (gimp->pdb, brush_callback) ||
|
2006-09-22 17:24:41 +08:00
|
|
|
! gimp_pdb_dialog_new (gimp, context, progress,
|
2023-08-27 07:02:37 +08:00
|
|
|
gimp_container_get_children_type (container),
|
2023-08-17 07:30:59 +08:00
|
|
|
parent_window, popup_title, brush_callback,
|
|
|
|
GIMP_OBJECT (initial_brush), NULL))
|
2003-12-08 19:58:45 +08:00
|
|
|
success = FALSE;
|
1999-04-04 13:59:43 +08:00
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
1999-04-10 12:52:07 +08:00
|
|
|
sub brushes_close_popup {
|
2007-01-09 18:52:47 +08:00
|
|
|
$blurb = 'Close the brush selection dialog.';
|
2022-10-16 03:11:05 +08:00
|
|
|
$help = 'Closes an open brush selection dialog.';
|
1999-04-04 13:59:43 +08:00
|
|
|
|
2006-03-15 05:35:50 +08:00
|
|
|
&andy_pdb_misc('1998');
|
1999-04-04 13:59:43 +08:00
|
|
|
|
|
|
|
@inargs = (
|
2022-10-16 03:11:05 +08:00
|
|
|
{ name => 'brush_callback', type => 'string', non_empty => 1,
|
|
|
|
desc => 'The name of the callback registered for this pop-up' }
|
1999-04-04 13:59:43 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
2023-08-27 07:02:37 +08:00
|
|
|
GimpContainer *container = gimp_data_factory_get_container (gimp->brush_factory);
|
|
|
|
|
2004-07-10 03:14:59 +08:00
|
|
|
if (gimp->no_interface ||
|
2006-04-26 17:13:47 +08:00
|
|
|
! gimp_pdb_lookup_procedure (gimp->pdb, brush_callback) ||
|
2023-08-27 07:02:37 +08:00
|
|
|
! gimp_pdb_dialog_close (gimp,
|
|
|
|
gimp_container_get_children_type (container),
|
2004-07-10 03:14:59 +08:00
|
|
|
brush_callback))
|
2003-12-08 19:58:45 +08:00
|
|
|
success = FALSE;
|
1999-04-04 13:59:43 +08:00
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
1999-04-10 12:52:07 +08:00
|
|
|
sub brushes_set_popup {
|
2022-10-16 03:11:05 +08:00
|
|
|
$blurb = 'Sets the selected brush in a brush selection dialog.';
|
2006-03-15 05:35:50 +08:00
|
|
|
$help = $blurb;
|
1999-04-04 13:59:43 +08:00
|
|
|
|
2006-03-15 05:35:50 +08:00
|
|
|
&andy_pdb_misc('1998');
|
1999-04-04 13:59:43 +08:00
|
|
|
|
|
|
|
@inargs = (
|
2022-10-16 03:11:05 +08:00
|
|
|
{ name => 'brush_callback', type => 'string', non_empty => 1,
|
|
|
|
desc => 'The name of the callback registered for this pop-up' },
|
2023-08-17 02:17:53 +08:00
|
|
|
{ name => 'brush', type => 'brush',
|
|
|
|
desc => 'The brush to set as selected' }
|
1999-04-04 13:59:43 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
2023-08-27 07:02:37 +08:00
|
|
|
GimpContainer *container = gimp_data_factory_get_container (gimp->brush_factory);
|
|
|
|
|
2004-07-10 03:14:59 +08:00
|
|
|
if (gimp->no_interface ||
|
2006-04-26 17:13:47 +08:00
|
|
|
! gimp_pdb_lookup_procedure (gimp->pdb, brush_callback) ||
|
2023-08-27 07:02:37 +08:00
|
|
|
! gimp_pdb_dialog_set (gimp,
|
|
|
|
gimp_container_get_children_type (container),
|
2023-08-17 02:17:53 +08:00
|
|
|
brush_callback, GIMP_OBJECT (brush), NULL))
|
1999-04-04 13:59:43 +08:00
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2006-03-24 05:17:16 +08:00
|
|
|
|
2008-02-08 01:08:54 +08:00
|
|
|
@headers = qw("core/gimp.h"
|
2023-08-27 07:02:37 +08:00
|
|
|
"core/gimpcontainer.h"
|
2008-02-08 01:08:54 +08:00
|
|
|
"core/gimpdatafactory.h");
|
1999-04-04 13:59:43 +08:00
|
|
|
|
2008-02-08 01:08:54 +08:00
|
|
|
@procs = qw(brushes_popup
|
|
|
|
brushes_close_popup
|
|
|
|
brushes_set_popup);
|
2006-03-24 05:17:16 +08:00
|
|
|
|
1999-12-26 15:54:39 +08:00
|
|
|
%exports = (app => [@procs], lib => [@procs]);
|
1999-04-04 13:59:43 +08:00
|
|
|
|
|
|
|
$desc = 'Brush UI';
|
2010-07-07 17:43:10 +08:00
|
|
|
$doc_title = 'gimpbrushselect';
|
2022-10-16 03:11:05 +08:00
|
|
|
$doc_short_desc = 'Methods of a font chooser dialog';
|
|
|
|
$doc_long_desc = 'A dialog letting a user choose a brush. Read more at gimpfontselect.';
|
1999-04-04 13:59:43 +08:00
|
|
|
|
|
|
|
1;
|