Blame gcr/gcr-memory-icon.h

Packit b00eeb
/*
Packit b00eeb
 * Copyright (C) 2011 Collabora Ltd.
Packit b00eeb
 *
Packit b00eeb
 * This program is free software; you can redistribute it and/or modify
Packit b00eeb
 * it under the terms of the GNU Lesser General Public License as
Packit b00eeb
 * published by the Free Software Foundation; either version 2.1 of
Packit b00eeb
 * the License, or (at your option) any later version.
Packit b00eeb
 *
Packit b00eeb
 * This program is distributed in the hope that it will be useful, but
Packit b00eeb
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit b00eeb
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit b00eeb
 * Lesser General Public License for more details.
Packit b00eeb
 *
Packit b00eeb
 * You should have received a copy of the GNU Lesser General Public
Packit b00eeb
 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit b00eeb
 *
Packit b00eeb
 * Author: Stef Walter <stefw@collabora.co.uk>
Packit b00eeb
 */
Packit b00eeb
Packit b00eeb
#ifndef GCR_MEMORY_ICON_H
Packit b00eeb
#define GCR_MEMORY_ICON_H
Packit b00eeb
Packit b00eeb
#include <glib-object.h>
Packit b00eeb
#include <gio/gio.h>
Packit b00eeb
Packit b00eeb
G_BEGIN_DECLS
Packit b00eeb
Packit b00eeb
#define GCR_MEMORY_ICON_COLUMNS            (_gcr_memory_icon_get_columns ())
Packit b00eeb
#define GCR_TYPE_MEMORY_ICON               (_gcr_memory_icon_get_type ())
Packit b00eeb
#define GCR_MEMORY_ICON(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_MEMORY_ICON, GcrMemoryIcon))
Packit b00eeb
#define GCR_MEMORY_ICON_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_MEMORY_ICON, GcrMemoryIconClass))
Packit b00eeb
#define GCR_IS_MEMORY_ICON(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCR_TYPE_MEMORY_ICON))
Packit b00eeb
#define GCR_IS_MEMORY_ICON_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GCR_TYPE_MEMORY_ICON))
Packit b00eeb
#define GCR_MEMORY_ICON_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GCR_TYPE_MEMORY_ICON, GcrMemoryIconClass))
Packit b00eeb
Packit b00eeb
typedef struct _GcrMemoryIcon GcrMemoryIcon;
Packit b00eeb
typedef struct _GcrMemoryIconClass GcrMemoryIconClass;
Packit b00eeb
typedef struct _GcrMemoryIconPrivate GcrMemoryIconPrivate;
Packit b00eeb
Packit b00eeb
struct _GcrMemoryIcon {
Packit b00eeb
	/*< private >*/
Packit b00eeb
	GObject parent;
Packit b00eeb
	GcrMemoryIconPrivate *pv;
Packit b00eeb
};
Packit b00eeb
Packit b00eeb
struct _GcrMemoryIconClass {
Packit b00eeb
	GObjectClass parent_class;
Packit b00eeb
};
Packit b00eeb
Packit b00eeb
GType               _gcr_memory_icon_get_type             (void) G_GNUC_CONST;
Packit b00eeb
Packit b00eeb
GIcon*              _gcr_memory_icon_new                  (const gchar *image_type,
Packit b00eeb
                                                           gconstpointer data,
Packit b00eeb
                                                           gsize n_data);
Packit b00eeb
Packit b00eeb
GIcon*              _gcr_memory_icon_new_full             (const gchar *image_type,
Packit b00eeb
                                                           gpointer data,
Packit b00eeb
                                                           gsize n_data,
Packit b00eeb
                                                           goffset offset,
Packit b00eeb
                                                           GDestroyNotify destroy);
Packit b00eeb
Packit b00eeb
G_END_DECLS
Packit b00eeb
Packit b00eeb
#endif /* __GCR_MEMORY_ICON_H__ */