73 lines
2 KiB
C
73 lines
2 KiB
C
/*
|
|
Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
|
|
|
|
This library 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.
|
|
|
|
See the file COPYING for the full license text.
|
|
*/
|
|
|
|
#ifndef __MIDORI_VIEWABLE_H__
|
|
#define __MIDORI_VIEWABLE_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <katze/katze.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define MIDORI_TYPE_VIEWABLE \
|
|
(midori_viewable_get_type ())
|
|
#define MIDORI_VIEWABLE(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_VIEWABLE, MidoriViewable))
|
|
#define MIDORI_IS_VIEWABLE(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_VIEWABLE))
|
|
#define MIDORI_VIEWABLE_GET_IFACE(inst) \
|
|
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), MIDORI_TYPE_VIEWABLE, \
|
|
MidoriViewableIface))
|
|
|
|
typedef struct _MidoriViewable MidoriViewable;
|
|
typedef struct _MidoriViewableIface MidoriViewableIface;
|
|
|
|
struct _MidoriViewableIface
|
|
{
|
|
GTypeInterface base_iface;
|
|
|
|
/* Virtual functions */
|
|
const gchar*
|
|
(*get_stock_id) (MidoriViewable* viewable);
|
|
|
|
const gchar*
|
|
(*get_label) (MidoriViewable* viewable);
|
|
|
|
GtkWidget*
|
|
(*get_toolbar) (MidoriViewable* viewable);
|
|
|
|
/* Private data */
|
|
gpointer p;
|
|
};
|
|
|
|
GType
|
|
midori_viewable_get_type (void) G_GNUC_CONST;
|
|
|
|
GtkWidget*
|
|
midori_viewable_new_from_uri (const gchar* uri);
|
|
|
|
void
|
|
midori_viewable_register_protocol (GType type,
|
|
const gchar* protocol);
|
|
|
|
const gchar*
|
|
midori_viewable_get_stock_id (MidoriViewable* viewable);
|
|
|
|
const gchar*
|
|
midori_viewable_get_label (MidoriViewable* viewable);
|
|
|
|
GtkWidget*
|
|
midori_viewable_get_toolbar (MidoriViewable* viewable);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __MIDORI_VIEWABLE_H__ */
|