#ifndef SCREEM_FILE_PROGRESS_DIALOG_H #define SCREEM_FILE_PROGRESS_DIALOG_H #include #include "screem-file.h" #define SCREEM_TYPE_FILE_PROGRESS_DIALOG (screem_file_progress_dialog_get_type ()) #define SCREEM_FILE_PROGRESS_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SCREEM_TYPE_FILE_PROGRESS_DIALOG, ScreemFileProgressDialog)) #define SCREEM_FILE_PROGRESS_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SCREEM_TYPE_FILE_PROGRESS_DIALOG, ScreemFileProgressDialogClass)) #define SCREEM_IS_FILE_PROGRESS_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SCREEM_TYPE_FILE_PROGRESS_DIALOG)) typedef struct ScreemFileProgressDialogPrivate ScreemFileProgressDialogPrivate; typedef struct { GObject parent; ScreemFileProgressDialogPrivate *priv; } ScreemFileProgressDialog; typedef struct { GObjectClass parent_class; } ScreemFileProgressDialogClass; GType screem_file_progress_dialog_get_type( void ); ScreemFileProgressDialog *screem_file_progress_dialog_new( ScreemFile *file ); void screem_file_progress_dialog_run( ScreemFileProgressDialog *dialog ); #endif