2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-08-11 02:47:21 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpprogress.h
|
|
|
|
* Copyright (C) 2004 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-08-11 02:47:21 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-08-11 02:47:21 +08:00
|
|
|
* (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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2004-08-11 02:47:21 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_PROGRESS_H__
|
|
|
|
#define __GIMP_PROGRESS_H__
|
|
|
|
|
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
#define GIMP_TYPE_PROGRESS (gimp_progress_get_type ())
|
2004-08-11 02:47:21 +08:00
|
|
|
#define GIMP_IS_PROGRESS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_PROGRESS))
|
|
|
|
#define GIMP_PROGRESS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_PROGRESS, GimpProgress))
|
|
|
|
#define GIMP_PROGRESS_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GIMP_TYPE_PROGRESS, GimpProgressInterface))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpProgressInterface GimpProgressInterface;
|
|
|
|
|
|
|
|
struct _GimpProgressInterface
|
|
|
|
{
|
|
|
|
GTypeInterface base_iface;
|
|
|
|
|
|
|
|
/* virtual functions */
|
2011-02-06 19:07:55 +08:00
|
|
|
GimpProgress * (* start) (GimpProgress *progress,
|
2014-07-13 05:45:20 +08:00
|
|
|
gboolean cancellable,
|
|
|
|
const gchar *message);
|
2011-02-06 19:07:55 +08:00
|
|
|
void (* end) (GimpProgress *progress);
|
|
|
|
gboolean (* is_active) (GimpProgress *progress);
|
|
|
|
|
|
|
|
void (* set_text) (GimpProgress *progress,
|
|
|
|
const gchar *message);
|
|
|
|
void (* set_value) (GimpProgress *progress,
|
|
|
|
gdouble percentage);
|
|
|
|
gdouble (* get_value) (GimpProgress *progress);
|
|
|
|
void (* pulse) (GimpProgress *progress);
|
|
|
|
|
|
|
|
guint32 (* get_window_id) (GimpProgress *progress);
|
|
|
|
|
|
|
|
gboolean (* message) (GimpProgress *progress,
|
|
|
|
Gimp *gimp,
|
|
|
|
GimpMessageSeverity severity,
|
|
|
|
const gchar *domain,
|
|
|
|
const gchar *message);
|
2004-10-14 23:15:03 +08:00
|
|
|
|
2004-08-11 02:47:21 +08:00
|
|
|
/* signals */
|
2011-02-06 19:07:55 +08:00
|
|
|
void (* cancel) (GimpProgress *progress);
|
2004-08-11 02:47:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
GType gimp_progress_get_type (void) G_GNUC_CONST;
|
2004-08-11 02:47:21 +08:00
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
GimpProgress * gimp_progress_start (GimpProgress *progress,
|
|
|
|
gboolean cancellable,
|
|
|
|
const gchar *format,
|
|
|
|
...) G_GNUC_PRINTF (3, 4);
|
|
|
|
void gimp_progress_end (GimpProgress *progress);
|
|
|
|
gboolean gimp_progress_is_active (GimpProgress *progress);
|
2006-10-09 16:17:22 +08:00
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
void gimp_progress_set_text (GimpProgress *progress,
|
|
|
|
const gchar *format,
|
|
|
|
...) G_GNUC_PRINTF (2, 3);
|
|
|
|
void gimp_progress_set_text_literal (GimpProgress *progress,
|
|
|
|
const gchar *message);
|
|
|
|
void gimp_progress_set_value (GimpProgress *progress,
|
|
|
|
gdouble percentage);
|
|
|
|
gdouble gimp_progress_get_value (GimpProgress *progress);
|
|
|
|
void gimp_progress_pulse (GimpProgress *progress);
|
2006-10-09 16:17:22 +08:00
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
guint32 gimp_progress_get_window_id (GimpProgress *progress);
|
2006-10-09 16:17:22 +08:00
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
gboolean gimp_progress_message (GimpProgress *progress,
|
|
|
|
Gimp *gimp,
|
|
|
|
GimpMessageSeverity severity,
|
|
|
|
const gchar *domain,
|
|
|
|
const gchar *message);
|
2006-10-09 16:17:22 +08:00
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
void gimp_progress_cancel (GimpProgress *progress);
|
2006-10-09 16:17:22 +08:00
|
|
|
|
2018-05-27 16:23:24 +08:00
|
|
|
void gimp_progress_update_and_flush (gint min,
|
|
|
|
gint max,
|
|
|
|
gint current,
|
|
|
|
gpointer data);
|
2004-08-11 02:47:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_PROGRESS_H__ */
|