diff options
Diffstat (limited to 'ui/gcr-certificate-request-renderer.h')
-rw-r--r-- | ui/gcr-certificate-request-renderer.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/ui/gcr-certificate-request-renderer.h b/ui/gcr-certificate-request-renderer.h new file mode 100644 index 0000000..1292c63 --- /dev/null +++ b/ui/gcr-certificate-request-renderer.h @@ -0,0 +1,71 @@ +/* + * Copyright (C) 2010 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. + */ + +#if !defined (__GCR_INSIDE_HEADER__) && !defined (GCR_COMPILATION) +#error "Only <gcr/gcr.h> or <gcr/gcr-base.h> can be included directly." +#endif + +#ifndef __GCR_CERTIFICATE_REQUEST_RENDERER_H__ +#define __GCR_CERTIFICATE_REQUEST_RENDERER_H__ + +#include <glib-object.h> +#include <gtk/gtk.h> + +#include "gcr/gcr-certificate.h" +#include "gcr/gcr-types.h" + +#include "gcr-renderer.h" + +G_BEGIN_DECLS + +#define GCR_TYPE_CERTIFICATE_REQUEST_RENDERER (_gcr_certificate_request_renderer_get_type ()) +#define GCR_CERTIFICATE_REQUEST_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_CERTIFICATE_REQUEST_RENDERER, GcrCertificateRequestRenderer)) +#define GCR_CERTIFICATE_REQUEST_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_CERTIFICATE_REQUEST_RENDERER, GcrCertificateRequestRendererClass)) +#define GCR_IS_CERTIFICATE_REQUEST_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCR_TYPE_CERTIFICATE_REQUEST_RENDERER)) +#define GCR_IS_CERTIFICATE_REQUEST_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GCR_TYPE_CERTIFICATE_REQUEST_RENDERER)) +#define GCR_CERTIFICATE_REQUEST_RENDERER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GCR_TYPE_CERTIFICATE_REQUEST_RENDERER, GcrCertificateRequestRendererClass)) + +typedef struct _GcrCertificateRequestRenderer GcrCertificateRequestRenderer; +typedef struct _GcrCertificateRequestRendererClass GcrCertificateRequestRendererClass; +typedef struct _GcrCertificateRequestRendererPrivate GcrCertificateRequestRendererPrivate; + +struct _GcrCertificateRequestRenderer { + GObject parent; + + /*< private >*/ + GcrCertificateRequestRendererPrivate *pv; +}; + +struct _GcrCertificateRequestRendererClass { + GObjectClass parent_class; +}; + +GType _gcr_certificate_request_renderer_get_type (void); + +GcrRenderer * _gcr_certificate_request_renderer_new_for_attributes (const gchar *label, + struct _GckAttributes *attrs); + +GckAttributes * _gcr_certificate_request_renderer_get_attributes (GcrCertificateRequestRenderer *self); + +void _gcr_certificate_request_renderer_set_attributes (GcrCertificateRequestRenderer *self, + GckAttributes *attrs); + +G_END_DECLS + +#endif /* __GCR_CERTIFICATE_REQUEST_RENDERER_H__ */ |