mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 01:43:24 +00:00

So procedures can declare args and GimpProcedureDialog show chooser widgets Fix so is no error dialog on id_is_valid for resources Palette.pdb changes and testing Memory mgt changes Gradient pdb Font and Pattern tests Test brush, palette Cleanup, remove generator Rebase, edit docs, install test-dialog.py Whitespace, and fix failed distcheck Fix some clang-format, fix fail distcheck Fix distcheck Cleanup from review Jehan
133 lines
4 KiB
Python
133 lines
4 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (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
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import gi
|
|
gi.require_version('Gimp', '3.0')
|
|
from gi.repository import Gimp
|
|
gi.require_version('GimpUi', '3.0')
|
|
from gi.repository import GimpUi
|
|
from gi.repository import GObject
|
|
from gi.repository import GLib
|
|
from gi.repository import Gio
|
|
import time
|
|
import sys
|
|
|
|
|
|
'''
|
|
A Python plugin.
|
|
Tests GimpProcedureDialog.
|
|
|
|
Temporarily, just testing widgets for subclasses of GimpResource.
|
|
Temporarily, just testing Brush subclass of Resource.
|
|
FUTURE: For all the parameter types.
|
|
Formerly PF_ constants, now all parameters for which GimpParamSpecs exist.
|
|
|
|
Not localized, no i18n
|
|
'''
|
|
|
|
|
|
def process_args(brush):
|
|
'''
|
|
Test the args are sane.
|
|
'''
|
|
assert brush is not None
|
|
assert isinstance(brush, Gimp.Brush)
|
|
assert brush.get_id() is not None
|
|
print( "Brush id is:", brush.get_id())
|
|
return
|
|
|
|
|
|
|
|
def test_dialog(procedure, run_mode, image, n_drawables, drawables, args, data):
|
|
'''
|
|
Just a standard shell for a plugin.
|
|
'''
|
|
config = procedure.create_config()
|
|
config.begin_run(image, run_mode, args)
|
|
|
|
if run_mode == Gimp.RunMode.INTERACTIVE:
|
|
GimpUi.init('python-fu-test-dialog')
|
|
dialog = GimpUi.ProcedureDialog(procedure=procedure, config=config)
|
|
dialog.fill(None)
|
|
if not dialog.run():
|
|
dialog.destroy()
|
|
config.end_run(Gimp.PDBStatusType.CANCEL)
|
|
return procedure.new_return_values(Gimp.PDBStatusType.CANCEL, GLib.Error())
|
|
else:
|
|
dialog.destroy()
|
|
|
|
brush = config.get_property('brush')
|
|
|
|
# opacity = config.get_property('opacity')
|
|
|
|
Gimp.context_push()
|
|
image.undo_group_start()
|
|
|
|
process_args(brush)
|
|
|
|
Gimp.displays_flush()
|
|
|
|
image.undo_group_end()
|
|
Gimp.context_pop()
|
|
|
|
config.end_run(Gimp.PDBStatusType.SUCCESS)
|
|
|
|
return procedure.new_return_values(Gimp.PDBStatusType.SUCCESS, GLib.Error())
|
|
|
|
|
|
|
|
class TestDialogPlugin (Gimp.PlugIn):
|
|
## Parameters ##
|
|
__gproperties__ = {
|
|
|
|
}
|
|
# See comments about this in foggify.py, from which we borrowed
|
|
|
|
brush = GObject.Property(type =Gimp.Brush,
|
|
# no default?
|
|
nick ="Brush",
|
|
blurb="Brush")
|
|
|
|
# FUTURE all other Gimp classes that have GimpParamSpecs
|
|
|
|
## GimpPlugIn virtual methods ##
|
|
def do_set_i18n(self, procname):
|
|
return True, 'gimp30-python', None
|
|
|
|
def do_query_procedures(self):
|
|
return [ 'python-fu-test-dialog' ]
|
|
|
|
def do_create_procedure(self, name):
|
|
procedure = Gimp.ImageProcedure.new(self, name,
|
|
Gimp.PDBProcType.PLUGIN,
|
|
test_dialog, None)
|
|
procedure.set_image_types("*");
|
|
procedure.set_sensitivity_mask (Gimp.ProcedureSensitivityMask.DRAWABLE |
|
|
Gimp.ProcedureSensitivityMask.DRAWABLES)
|
|
procedure.set_documentation ("Test dialog",
|
|
"Test dialog",
|
|
name)
|
|
procedure.set_menu_label("Test dialog...")
|
|
procedure.set_attribution("Lloyd Konneker",
|
|
"Lloyd Konneker",
|
|
"2022")
|
|
# Top level menu "Test"
|
|
procedure.add_menu_path ("<Image>/Test")
|
|
|
|
procedure.add_argument_from_property(self, "brush")
|
|
|
|
return procedure
|
|
|
|
Gimp.main(TestDialogPlugin.__gtype__, sys.argv)
|