summaryrefslogtreecommitdiff
path: root/gcr/gcr-certificate-widget.c
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-04-08 20:09:30 +0200
committerStef Walter <stefw@collabora.co.uk>2011-04-08 20:13:59 +0200
commit8349f25653056162d93d59e9ff0e84fa9a569abc (patch)
treed82e40508a44e37582a920b83b66dd53bb74c97b /gcr/gcr-certificate-widget.c
parent754dc2fb82903d2f45bebf1837784931bc43b609 (diff)
downloadgcr-8349f25653056162d93d59e9ff0e84fa9a569abc.tar.gz
gcr: Hide the widget class structs, until we finalize their super classes.
Hide the following GcrCertificateWidget, GcrCertificateWidgetClass, GcrKeyWidget, GcrKeyWidgetClass, GcrUnlockOptionsWidget, GcrUnlockOptionsWidgetClass Currently these are derived from GtkAlignment, because we haven't yet figured out their implementation correctly. We want them to be derived from GtkWidget, or GtkBin (if it makes sense to have a child widget).
Diffstat (limited to 'gcr/gcr-certificate-widget.c')
-rw-r--r--gcr/gcr-certificate-widget.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/gcr/gcr-certificate-widget.c b/gcr/gcr-certificate-widget.c
index e749259..82a8d91 100644
--- a/gcr/gcr-certificate-widget.c
+++ b/gcr/gcr-certificate-widget.c
@@ -48,7 +48,6 @@
/**
* GcrCertificateWidget:
- * @parent: The parent object
*
* A widget that displays a certificate.
*/
@@ -65,6 +64,18 @@ enum {
PROP_ATTRIBUTES
};
+struct _GcrCertificateWidget {
+ GtkAlignment parent;
+
+ /*< private >*/
+ GcrCertificateWidgetPrivate *pv;
+};
+
+struct _GcrCertificateWidgetClass {
+ /*< private >*/
+ GtkAlignmentClass parent_class;
+};
+
struct _GcrCertificateWidgetPrivate {
GcrViewer *viewer;
GcrCertificateRenderer *renderer;