2004-07-27 23:15:58 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimppaletteselect.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-07-27 23:15:58 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2004-07-27 23:15:58 +08:00
|
|
|
*
|
|
|
|
* 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
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
2004-07-27 23:15:58 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_PALETTE_SELECT_H__
|
|
|
|
#define __GIMP_PALETTE_SELECT_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (* GimpRunPaletteCallback) (const gchar *palette_name,
|
|
|
|
gboolean dialog_closing,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
|
|
|
|
const gchar * gimp_palette_select_new (const gchar *title,
|
|
|
|
const gchar *palette_name,
|
|
|
|
GimpRunPaletteCallback callback,
|
|
|
|
gpointer data);
|
|
|
|
void gimp_palette_select_destroy (const gchar *palette_callback);
|
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_PALETTE_SELECT_H__ */
|