2006-12-09 13:33:38 -08:00
|
|
|
# GIMP - The GNU Image Manipulation Program
|
1999-04-22 23:55:37 -07:00
|
|
|
# Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
|
2009-01-17 14:28:01 -08:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
1999-04-22 23:55:37 -07:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-22 23:55:37 -07: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 14:27:07 -07:00
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-04-22 23:55:37 -07:00
|
|
|
|
|
|
|
|
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
|
|
|
|
|
|
|
|
|
|
sub patterns_popup {
|
|
|
|
|
$blurb = 'Invokes the Gimp pattern selection.';
|
2007-01-09 02:52:47 -08:00
|
|
|
$help = 'This procedure opens the pattern selection dialog.';
|
1999-04-22 23:55:37 -07:00
|
|
|
|
2006-03-14 13:35:50 -08:00
|
|
|
&andy_pdb_misc('1998');
|
1999-04-22 23:55:37 -07:00
|
|
|
|
|
|
|
|
@inargs = (
|
2007-04-25 07:23:05 -07:00
|
|
|
{ name => 'pattern_callback', type => 'string', non_empty => 1,
|
2003-08-19 12:08:11 -07:00
|
|
|
desc => 'The callback PDB proc to call when pattern selection is
|
|
|
|
|
made' },
|
2002-03-12 13:02:10 -08:00
|
|
|
{ name => 'popup_title', type => 'string',
|
2007-01-09 02:52:47 -08:00
|
|
|
desc => 'Title of the pattern selection dialog' },
|
2006-03-22 01:58:08 -08:00
|
|
|
{ name => 'initial_pattern', type => 'string', null_ok => 1,
|
|
|
|
|
desc => 'The name of the pattern to set as the first selected' }
|
1999-04-22 23:55:37 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
|
code => <<'CODE'
|
|
|
|
|
{
|
2004-07-09 12:14:59 -07:00
|
|
|
if (gimp->no_interface ||
|
2006-04-26 02:13:47 -07:00
|
|
|
! gimp_pdb_lookup_procedure (gimp->pdb, pattern_callback) ||
|
2006-09-22 02:24:41 -07:00
|
|
|
! gimp_pdb_dialog_new (gimp, context, progress,
|
2008-12-19 13:58:17 -08:00
|
|
|
gimp_data_factory_get_container (gimp->pattern_factory),
|
2004-07-09 12:14:59 -07:00
|
|
|
popup_title, pattern_callback, initial_pattern,
|
|
|
|
|
NULL))
|
2003-12-08 03:58:45 -08:00
|
|
|
success = FALSE;
|
1999-04-22 23:55:37 -07:00
|
|
|
}
|
|
|
|
|
CODE
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub patterns_close_popup {
|
2007-01-09 02:52:47 -08:00
|
|
|
$blurb = 'Close the pattern selection dialog.';
|
2006-03-14 13:35:50 -08:00
|
|
|
$help = 'This procedure closes an opened pattern selection dialog.';
|
1999-04-22 23:55:37 -07:00
|
|
|
|
2006-03-14 13:35:50 -08:00
|
|
|
&andy_pdb_misc('1998');
|
1999-04-22 23:55:37 -07:00
|
|
|
|
|
|
|
|
@inargs = (
|
2007-04-25 07:23:05 -07:00
|
|
|
{ name => 'pattern_callback', type => 'string', non_empty => 1,
|
2007-01-09 02:52:47 -08:00
|
|
|
desc => 'The name of the callback registered for this pop-up' }
|
1999-04-22 23:55:37 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
|
code => <<'CODE'
|
|
|
|
|
{
|
2004-07-09 12:14:59 -07:00
|
|
|
if (gimp->no_interface ||
|
2006-04-26 02:13:47 -07:00
|
|
|
! gimp_pdb_lookup_procedure (gimp->pdb, pattern_callback) ||
|
2008-12-19 13:58:17 -08:00
|
|
|
! gimp_pdb_dialog_close (gimp, gimp_data_factory_get_container (gimp->pattern_factory),
|
2004-07-09 12:14:59 -07:00
|
|
|
pattern_callback))
|
2003-12-08 03:58:45 -08:00
|
|
|
success = FALSE;
|
1999-04-22 23:55:37 -07:00
|
|
|
}
|
|
|
|
|
CODE
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub patterns_set_popup {
|
2007-01-09 02:52:47 -08:00
|
|
|
$blurb = 'Sets the current pattern in a pattern selection dialog.';
|
2006-03-14 13:35:50 -08:00
|
|
|
$help = $blurb;
|
1999-04-22 23:55:37 -07:00
|
|
|
|
2006-03-14 13:35:50 -08:00
|
|
|
&andy_pdb_misc('1998');
|
1999-04-22 23:55:37 -07:00
|
|
|
|
|
|
|
|
@inargs = (
|
2007-04-25 07:23:05 -07:00
|
|
|
{ name => 'pattern_callback', type => 'string', non_empty => 1,
|
2007-01-09 02:52:47 -08:00
|
|
|
desc => 'The name of the callback registered for this pop-up' },
|
1999-04-22 23:55:37 -07:00
|
|
|
{ name => 'pattern_name', type => 'string',
|
2003-08-19 12:08:11 -07:00
|
|
|
desc => 'The name of the pattern to set as selected' }
|
1999-04-22 23:55:37 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
|
code => <<'CODE'
|
|
|
|
|
{
|
2004-07-09 12:14:59 -07:00
|
|
|
if (gimp->no_interface ||
|
2006-04-26 02:13:47 -07:00
|
|
|
! gimp_pdb_lookup_procedure (gimp->pdb, pattern_callback) ||
|
2008-12-19 13:58:17 -08:00
|
|
|
! gimp_pdb_dialog_set (gimp, gimp_data_factory_get_container (gimp->pattern_factory),
|
2004-07-09 12:14:59 -07:00
|
|
|
pattern_callback, pattern_name,
|
|
|
|
|
NULL))
|
1999-04-22 23:55:37 -07:00
|
|
|
success = FALSE;
|
|
|
|
|
}
|
|
|
|
|
CODE
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-23 13:17:16 -08:00
|
|
|
|
2008-02-07 09:08:54 -08:00
|
|
|
@headers = qw("core/gimp.h"
|
|
|
|
|
"core/gimpdatafactory.h");
|
1999-04-22 23:55:37 -07:00
|
|
|
|
2008-02-07 09:08:54 -08:00
|
|
|
@procs = qw(patterns_popup
|
|
|
|
|
patterns_close_popup
|
|
|
|
|
patterns_set_popup);
|
2006-03-23 13:17:16 -08:00
|
|
|
|
2000-05-31 14:16:11 -07:00
|
|
|
%exports = (app => [@procs], lib => [@procs]);
|
1999-04-22 23:55:37 -07:00
|
|
|
|
|
|
|
|
$desc = 'Pattern UI';
|
2010-07-07 02:43:10 -07:00
|
|
|
$doc_title = 'gimppatternselect';
|
|
|
|
|
$doc_short_desc = 'Functions providing a pattern selection dialog.';
|
|
|
|
|
$doc_long_desc = 'Functions providing a pattern selection dialog.';
|
1999-04-22 23:55:37 -07:00
|
|
|
|
|
|
|
|
1;
|