A new browser for exploring the available and supported GEGL operations for use with the filter API. These include also all operations loaded as GEGL plug-ins and operations registered from GIMP. Similarly to the Procedure browser it shows also the details of individual parameters like the allowed values and default values. In the case of a type that is not completely supported by the GimpProtocol, the browser can show useful information about a parameter thanks to a PDB procedure encoding the information in a placeholder GParamSpec.
28 lines
980 B
C
28 lines
980 B
C
/*
|
|
* GIMP plug-in for browsing available GEGL filters.
|
|
*
|
|
* Copyright (C) 2025 Ondřej Míchal <harrymichal@seznam.cz>
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GEGL_FILTER_TYPE_INFO gegl_filter_info_get_type ()
|
|
G_DECLARE_FINAL_TYPE (GeglFilterInfo, gegl_filter_info, GEGL, FILTER_INFO, GObject)
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|