| 1 /* gtkxcellrendererprogress.h |
|
| 2 * Pidgin is the legal property of its developers, whose names are too numerous |
|
| 3 * to list here. Please refer to the COPYRIGHT file distributed with this |
|
| 4 * source distribution. |
|
| 5 * |
|
| 6 * This program is free software; you can redistribute it and/or modify |
|
| 7 * it under the terms of the GNU General Public License as published by |
|
| 8 * the Free Software Foundation; either version 2 of the License, or |
|
| 9 * (at your option) any later version. |
|
| 10 * |
|
| 11 * This program is distributed in the hope that it will be useful, |
|
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 * GNU General Public License for more details. |
|
| 15 * |
|
| 16 * You should have received a copy of the GNU General Public License |
|
| 17 * along with this program; if not, write to the Free Software |
|
| 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
| 19 * |
|
| 20 */ |
|
| 21 #ifndef _PIDGINCELLRENDERERPROGRESS_H_ |
|
| 22 #define _PIDGINCELLRENDERERPROGRESS_H_ |
|
| 23 |
|
| 24 #include <gtk/gtk.h> |
|
| 25 |
|
| 26 #ifdef __cplusplus |
|
| 27 extern "C" { |
|
| 28 #endif /* __cplusplus */ |
|
| 29 |
|
| 30 |
|
| 31 #define PIDGIN_TYPE_GTK_CELL_RENDERER_PROGRESS (pidgin_cell_renderer_progress_get_type()) |
|
| 32 #define PIDGIN_CELL_RENDERER_PROGRESS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PIDGIN_TYPE_GTK_CELL_RENDERER_PROGRESS, PidginCellRendererProgress)) |
|
| 33 #define PIDGIN_CELL_RENDERER_PROGRESS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PIDGIN_TYPE_GTK_CELL_RENDERER_PROGRESS, PidginCellRendererProgressClass)) |
|
| 34 #define PIDGIN_IS_GTK_CELL_PROGRESS_PROGRESS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PIDGIN_TYPE_GTK_CELL_RENDERER_PROGRESS)) |
|
| 35 #define PIDGIN_IS_GTK_CELL_PROGRESS_PROGRESS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PIDGIN_TYPE_GTK_CELL_RENDERER_PROGRESS)) |
|
| 36 #define PIDGIN_CELL_RENDERER_PROGRESS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PIDGIN_TYPE_GTK_CELL_RENDERER_PROGRESS, PidginCellRendererProgressClass)) |
|
| 37 |
|
| 38 typedef struct _PidginCellRendererProgress PidginCellRendererProgress; |
|
| 39 typedef struct _PidginCellRendererProgressClass PidginCellRendererProgressClass; |
|
| 40 |
|
| 41 struct _PidginCellRendererProgress { |
|
| 42 GtkCellRenderer parent; |
|
| 43 |
|
| 44 gdouble progress; |
|
| 45 gchar *text; |
|
| 46 gboolean text_set; |
|
| 47 }; |
|
| 48 |
|
| 49 struct _PidginCellRendererProgressClass { |
|
| 50 GtkCellRendererClass parent_class; |
|
| 51 }; |
|
| 52 |
|
| 53 GType pidgin_cell_renderer_progress_get_type (void); |
|
| 54 GtkCellRenderer *pidgin_cell_renderer_progress_new (void); |
|
| 55 |
|
| 56 |
|
| 57 #ifdef __cplusplus |
|
| 58 } |
|
| 59 #endif /* __cplusplus */ |
|
| 60 |
|
| 61 #endif /* _PIDGINCELLRENDERERPROGRESS_H_ */ |
|