Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F36623379
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
5 KB
Subscribers
None
View Options
diff --git a/src/gpaprogressdlg.c b/src/gpaprogressdlg.c
index c091a0f..ed43f45 100644
--- a/src/gpaprogressdlg.c
+++ b/src/gpaprogressdlg.c
@@ -1,200 +1,200 @@
/* gpaprogressdlg.h - The GpaProgressDialog object.
Copyright (C) 2003 Miguel Coca.
Copyright (C) 2008 g10 Code GmbH.
This file is part of GPA.
GPA is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
GPA 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 along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "gpaprogressdlg.h"
#include "i18n.h"
/* Properties. */
enum
{
PROP_0,
PROP_WINDOW,
PROP_CONTEXT
};
static GObjectClass *parent_class = NULL;
static void
gpa_progress_dialog_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GpaProgressDialog *dialog = GPA_PROGRESS_DIALOG (object);
switch (prop_id)
{
case PROP_WINDOW:
g_value_set_object (value,
gtk_window_get_transient_for (GTK_WINDOW (dialog)));
break;
case PROP_CONTEXT:
g_value_set_object (value, gpa_progress_bar_get_context (dialog->pbar));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gpa_progress_dialog_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GpaProgressDialog *dialog = GPA_PROGRESS_DIALOG (object);
switch (prop_id)
{
case PROP_WINDOW:
gtk_window_set_transient_for (GTK_WINDOW (dialog),
g_value_get_object (value));
break;
case PROP_CONTEXT:
gpa_progress_bar_set_context (dialog->pbar,
(GpaContext *) g_value_get_object (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gpa_progress_dialog_finalize (GObject *object)
{
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
gpa_progress_dialog_class_init (GpaProgressDialogClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
object_class->finalize = gpa_progress_dialog_finalize;
object_class->set_property = gpa_progress_dialog_set_property;
object_class->get_property = gpa_progress_dialog_get_property;
/* Properties. */
g_object_class_install_property (object_class,
PROP_WINDOW,
g_param_spec_object
("window", "Parent window",
"Parent window", GTK_TYPE_WIDGET,
G_PARAM_WRITABLE|G_PARAM_CONSTRUCT_ONLY));
g_object_class_install_property (object_class,
PROP_CONTEXT,
g_param_spec_object
("context", "context",
"context", GPA_CONTEXT_TYPE,
G_PARAM_WRITABLE|G_PARAM_CONSTRUCT_ONLY));
}
static void
gpa_progress_dialog_init (GpaProgressDialog *dialog)
{
- GtkBox *box = gtk_dialog_get_content_area(dialog);
+ GtkWidget *box = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
gtk_container_set_border_width (GTK_CONTAINER (box),
5);
/* Elements. */
dialog->label = gtk_label_new (NULL);
gtk_box_pack_start(GTK_BOX (box),
dialog->label, TRUE, TRUE, 0);
dialog->pbar = GPA_PROGRESS_BAR (gpa_progress_bar_new ());
gtk_box_pack_start (GTK_BOX (box),
GTK_WIDGET (dialog->pbar), TRUE, TRUE, 0);
/* Set up the dialog. */
gtk_dialog_add_button (GTK_DIALOG (dialog),
_("_Cancel"),
GTK_RESPONSE_CANCEL);
/* FIXME: Cancelling is not supported yet by GPGME. */
gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL,
FALSE);
}
GType
gpa_progress_dialog_get_type (void)
{
static GType progress_dialog_type = 0;
if (! progress_dialog_type)
{
static const GTypeInfo progress_dialog_info =
{
sizeof (GpaProgressDialogClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) gpa_progress_dialog_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (GpaProgressDialog),
0, /* n_preallocs */
(GInstanceInitFunc) gpa_progress_dialog_init,
};
progress_dialog_type = g_type_register_static (GTK_TYPE_DIALOG,
"GpaProgressDialog",
&progress_dialog_info, 0);
}
return progress_dialog_type;
}
/* API */
/* Create a new progress dialog for the given context. */
GtkWidget*
gpa_progress_dialog_new (GtkWidget *parent,
GpaContext *context)
{
GpaProgressDialog *dialog;
dialog = g_object_new (GPA_PROGRESS_DIALOG_TYPE,
"window", parent,
"context", context,
NULL);
return GTK_WIDGET(dialog);
}
/* Set the dialog label. */
void
gpa_progress_dialog_set_label (GpaProgressDialog *dialog, const gchar *label)
{
gtk_label_set_text (GTK_LABEL (dialog->label), label);
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Feb 26, 6:46 PM (4 h, 46 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
2c/a3/23e40613a859f957140f21551a74
Attached To
rGPA Gnu Privacy Assistant
Event Timeline
Log In to Comment