Gimp/libgimp/gimpimagechooser.h
Alx Sa a9dc4ddb2c widgets, pdb, libgimp: GimpProcedureDialog Image Widget
This patch adds a GimpImageChooser widget
for use in GimpProcedureDialog Image parameter
GUI creation.
2025-11-12 03:12:24 +00:00

46 lines
1.7 KiB
C

/* LIBGIMP - The GIMP Library
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
*
* gimpimagechooser.h
*
* 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
* Lesser 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/>.
*/
#if !defined (__GIMP_UI_H_INSIDE__) && !defined (GIMP_COMPILATION)
#error "Only <libgimp/gimpui.h> can be included directly."
#endif
#ifndef __GIMP_IMAGE_CHOOSER_H__
#define __GIMP_IMAGE_CHOOSER_H__
G_BEGIN_DECLS
#define GIMP_TYPE_IMAGE_CHOOSER (gimp_image_chooser_get_type ())
G_DECLARE_FINAL_TYPE (GimpImageChooser, gimp_image_chooser, GIMP, IMAGE_CHOOSER, GtkBox)
GtkWidget * gimp_image_chooser_new (const gchar *title,
const gchar *label,
GimpImage *image);
GimpImage * gimp_image_chooser_get_image (GimpImageChooser *chooser);
void gimp_image_chooser_set_image (GimpImageChooser *chooser,
GimpImage *image);
GtkWidget * gimp_image_chooser_get_label (GimpImageChooser *widget);
G_END_DECLS
#endif /* __GIMP_IMAGE_CHOOSER_H__ */