inc_HEADERS = \
gcr.h \
gcr-certificate.h \
+ gcr-certificate-basics-widget.h \
gcr-certificate-chain.h \
+ gcr-certificate-details-widget.h \
gcr-certificate-renderer.h \
gcr-certificate-widget.h \
gcr-key-renderer.h \
--- /dev/null
+/*
+ * Copyright (C) 2011 Collabora Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ *
+ * Stef Walter <stefw@collabora.co.uk>
+ */
+
+#include "config.h"
+#include "gcr-certificate-details-widget.h"
+
+#ifndef GCR_DISABLE_DEPRECATED
+
+/* These are all stubs for GcrCertificateWidget */
+
+GType
+gcr_certificate_details_widget_get_type (void)
+{
+ return gcr_certificate_widget_get_type ();
+}
+
+GcrCertificateDetailsWidget*
+gcr_certificate_details_widget_new (GcrCertificate *cert)
+{
+ return gcr_certificate_widget_new (cert);
+}
+
+GcrCertificate*
+gcr_certificate_details_widget_get_certificate (GcrCertificateDetailsWidget *details)
+{
+ return gcr_certificate_widget_get_certificate (details);
+}
+
+void
+gcr_certificate_details_widget_set_certificate (GcrCertificateDetailsWidget *details,
+ GcrCertificate *cert)
+{
+ return gcr_certificate_widget_set_certificate (details, cert);
+}
+
+#endif /* GCR_DISABLE_DEPRECATED */
--- /dev/null
+/*
+ * Copyright (C) 2008 Stefan Walter
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ */
+
+#ifndef __GCR_CERTIFICATE_BASICS_WIDGET_H__
+#define __GCR_CERTIFICATE_BASICS_WIDGET_H__
+
+/*
+ * GcrCertificateBasicsWidget has been replaced with GcrCertificateWidget.
+ * These functions are stubs for GcrCertificateWidget.
+ */
+
+#ifndef GCR_DISABLE_DEPRECATED
+
+#include <glib-object.h>
+#include <gtk/gtk.h>
+
+#include "gcr-certificate.h"
+#include "gcr-certificate-widget.h"
+#include "gcr-types.h"
+
+G_BEGIN_DECLS
+
+#define GCR_TYPE_CERTIFICATE_BASICS_WIDGET (gcr_certificate_basics_widget_get_type ())
+#define GCR_CERTIFICATE_BASICS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_CERTIFICATE_BASICS_WIDGET, GcrCertificateBasicsWidget))
+#define GCR_CERTIFICATE_BASICS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_CERTIFICATE_BASICS_WIDGET, GcrCertificateBasicsWidgetClass))
+#define GCR_IS_CERTIFICATE_BASICS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCR_TYPE_CERTIFICATE_BASICS_WIDGET))
+#define GCR_IS_CERTIFICATE_BASICS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GCR_TYPE_CERTIFICATE_BASICS_WIDGET))
+#define GCR_CERTIFICATE_BASICS_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GCR_TYPE_CERTIFICATE_BASICS_WIDGET, GcrCertificateBasicsWidgetClass))
+
+typedef GcrCertificateWidget GcrCertificateBasicsWidget;
+typedef GcrCertificateWidgetClass GcrCertificateBasicsWidgetClass;
+
+GType gcr_certificate_basics_widget_get_type (void);
+
+GcrCertificateBasicsWidget* gcr_certificate_basics_widget_new (GcrCertificate *cert);
+
+GcrCertificate* gcr_certificate_basics_widget_get_certificate (GcrCertificateBasicsWidget *basics);
+
+void gcr_certificate_basics_widget_set_certificate (GcrCertificateBasicsWidget *basics,
+ GcrCertificate *cert);
+
+G_END_DECLS
+
+#endif /* GCR_DISABLE_DEPRECATED */
+
+#endif /* __GCR_CERTIFICATE_BASICS_WIDGET_H__ */
--- /dev/null
+/*
+ * Copyright (C) 2011 Collabora Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ *
+ * Stef Walter <stefw@collabora.co.uk>
+ */
+
+#include "config.h"
+#include "gcr-certificate-details-widget.h"
+
+#ifndef GCR_DISABLE_DEPRECATED
+
+/* These are all stubs for GcrCertificateWidget */
+
+GType
+gcr_certificate_details_widget_get_type (void)
+{
+ return gcr_certificate_widget_get_type ();
+}
+
+GcrCertificateDetailsWidget*
+gcr_certificate_details_widget_new (GcrCertificate *cert)
+{
+ return gcr_certificate_widget_new (cert);
+}
+
+GcrCertificate*
+gcr_certificate_details_widget_get_certificate (GcrCertificateDetailsWidget *details)
+{
+ return gcr_certificate_widget_get_certificate (details);
+}
+
+void
+gcr_certificate_details_widget_set_certificate (GcrCertificateDetailsWidget *details,
+ GcrCertificate *cert)
+{
+ return gcr_certificate_widget_set_certificate (details, cert);
+}
+
+#endif /* GCR_DISABLE_DEPRECATED */
--- /dev/null
+/*
+ * Copyright (C) 2008 Stefan Walter
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ */
+
+#ifndef __GCR_CERTIFICATE_DETAILS_WIDGET_H__
+#define __GCR_CERTIFICATE_DETAILS_WIDGET_H__
+
+/*
+ * GcrCertificateDetailsWidget has been replaced with GcrCertificateWidget.
+ * These functions are stubs for GcrCertificateWidget.
+ */
+
+#ifndef GCR_DISABLE_DEPRECATED
+
+#include <glib-object.h>
+#include <gtk/gtk.h>
+
+#include "gcr-certificate.h"
+#include "gcr-types.h"
+
+G_BEGIN_DECLS
+
+#define GCR_TYPE_CERTIFICATE_DETAILS_WIDGET (gcr_certificate_details_widget_get_type ())
+#define GCR_CERTIFICATE_DETAILS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_CERTIFICATE_DETAILS_WIDGET, GcrCertificateDetailsWidget))
+#define GCR_CERTIFICATE_DETAILS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_CERTIFICATE_DETAILS_WIDGET, GcrCertificateDetailsWidgetClass))
+#define GCR_IS_CERTIFICATE_DETAILS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCR_TYPE_CERTIFICATE_DETAILS_WIDGET))
+#define GCR_IS_CERTIFICATE_DETAILS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GCR_TYPE_CERTIFICATE_DETAILS_WIDGET))
+#define GCR_CERTIFICATE_DETAILS_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GCR_TYPE_CERTIFICATE_DETAILS_WIDGET, GcrCertificateDetailsWidgetClass))
+
+typedef GcrCertificateWidget GcrCertificateDetailsWidget;
+typedef GcrCertificateWidgetClass GcrCertificateDetailsWidgetClass;
+
+GType gcr_certificate_details_widget_get_type (void);
+
+GcrCertificateDetailsWidget* gcr_certificate_details_widget_new (GcrCertificate *cert);
+
+GcrCertificate* gcr_certificate_details_widget_get_certificate (GcrCertificateDetailsWidget *details);
+
+void gcr_certificate_details_widget_set_certificate (GcrCertificateDetailsWidget *details,
+ GcrCertificate *cert);
+
+G_END_DECLS
+
+#endif /* GCR_DISABLE_DEPRECATED */
+
+#endif /* __GCR_CERTIFICATE_DETAILS_WIDGET_H__ */
g_queue_push_tail (&self->pv->queue, gck_attributes_ref (attrs));
g_signal_emit (self, signals[QUEUED], 0, label, attrs);
}
+
+#ifndef GCR_DISABLE_DEPRECATED
+
+GcrParser*
+gcr_importer_get_parser (GcrImporter *self)
+{
+ g_warning ("gcr_importer_get_parser() is no longer supported "
+ "Use gcr_importer_listen() instead.");
+ return NULL;
+}
+
+void
+gcr_importer_set_parser (GcrImporter *self, GcrParser *parser)
+{
+ g_warning ("gcr_importer_set_parser() is no longer supported "
+ "Use gcr_importer_listen() instead.");
+}
+
+#endif /* GCR_DISABLE_DEPRECATED */
GAsyncResult *res,
GError **error);
+#ifndef GCR_DISABLE_DEPRECATED
+
+GcrParser* gcr_importer_get_parser (GcrImporter *self);
+
+void gcr_importer_set_parser (GcrImporter *self,
+ GcrParser *parser);
+
+#endif /* GCR_DISABLE_DEPRECATED */
+
G_END_DECLS
#endif /* __GCR_IMPORTER_H__ */
#include "gcr-unlock-options-widget.h"
#include "gcr-viewer.h"
+#ifndef GCR_DISABLE_DEPRECATED
+
+#include "gcr-certificate-basics-widget.h"
+#include "gcr-certificate-details-widget.h"
+
+#endif /* GCR_DISABLE_DEPRECATED */
+
#undef __GCR_H_INSIDE__
#endif /* __GCR_H__ */