2004-08-30 02:36:30 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpprogress.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-08-30 02:36:30 +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-08-30 02:36:30 +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
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2004-08-30 02:36:30 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-29 01:59:52 +08:00
|
|
|
#if !defined (__GIMP_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
|
|
|
#error "Only <libgimp/gimp.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-08-30 02:36:30 +08:00
|
|
|
#ifndef __GIMP_PROGRESS_H__
|
|
|
|
#define __GIMP_PROGRESS_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2005-09-10 02:07:31 +08:00
|
|
|
typedef struct _GimpProgressVtable GimpProgressVtable;
|
|
|
|
|
|
|
|
struct _GimpProgressVtable
|
|
|
|
{
|
|
|
|
void (* start) (const gchar *message,
|
|
|
|
gboolean cancelable,
|
|
|
|
gpointer user_data);
|
|
|
|
void (* end) (gpointer user_data);
|
|
|
|
void (* set_text) (const gchar *message,
|
|
|
|
gpointer user_data);
|
|
|
|
void (* set_value) (gdouble percentage,
|
|
|
|
gpointer user_data);
|
|
|
|
void (* pulse) (gpointer user_data);
|
|
|
|
|
|
|
|
guint32 (* get_window) (gpointer user_data);
|
|
|
|
|
|
|
|
/* Padding for future expansion. Must be initialized with NULL! */
|
|
|
|
void (* _gimp_reserved1) (void);
|
|
|
|
void (* _gimp_reserved2) (void);
|
|
|
|
void (* _gimp_reserved3) (void);
|
|
|
|
void (* _gimp_reserved4) (void);
|
|
|
|
void (* _gimp_reserved5) (void);
|
|
|
|
void (* _gimp_reserved6) (void);
|
|
|
|
void (* _gimp_reserved7) (void);
|
|
|
|
void (* _gimp_reserved8) (void);
|
|
|
|
};
|
|
|
|
|
2005-09-10 08:33:41 +08:00
|
|
|
|
2005-09-30 02:34:08 +08:00
|
|
|
const gchar * gimp_progress_install_vtable (const GimpProgressVtable *vtable,
|
|
|
|
gpointer user_data);
|
|
|
|
gpointer gimp_progress_uninstall (const gchar *progress_callback);
|
2005-09-10 08:33:41 +08:00
|
|
|
|
2006-02-20 15:35:42 +08:00
|
|
|
gboolean gimp_progress_init (const gchar *message);
|
2005-09-30 02:34:08 +08:00
|
|
|
gboolean gimp_progress_init_printf (const gchar *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
2006-02-20 15:35:42 +08:00
|
|
|
|
2005-09-30 02:34:08 +08:00
|
|
|
gboolean gimp_progress_set_text_printf (const gchar *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
2005-09-10 08:33:41 +08:00
|
|
|
|
2006-02-20 15:35:42 +08:00
|
|
|
gboolean gimp_progress_update (gdouble percentage);
|
|
|
|
|
2005-09-10 08:33:41 +08:00
|
|
|
|
2004-08-30 02:36:30 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_PROGRESS_H__ */
|