1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
/*
* Copyright (C) 2009 - 2011 Vivien Malerba <malerba@gnome-db.org>
* Copyright (C) 2010 David King <davidk@openismus.com>
* Copyright (C) 2011 Murray Cumming <murrayc@murrayc.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <string.h>
#include <glib/gi18n-lib.h>
#include "dummy-perspective.h"
/*
* Main static functions
*/
static void dummy_perspective_class_init (DummyPerspectiveClass *klass);
static void dummy_perspective_init (DummyPerspective *pers);
static void dummy_perspective_dispose (GObject *object);
/* BrowserPerspective interface */
static void dummy_perspective_perspective_init (BrowserPerspectiveIface *iface);
static BrowserWindow *dummy_perspective_get_window (BrowserPerspective *perspective);
static GtkActionGroup *dummy_perspective_get_actions_group (BrowserPerspective *perspective);
static const gchar *dummy_perspective_get_actions_ui (BrowserPerspective *perspective);
/* get a pointer to the parents to be able to call their destructor */
static GObjectClass *parent_class = NULL;
GType
dummy_perspective_get_type (void)
{
static GType type = 0;
if (G_UNLIKELY (type == 0)) {
static GMutex registering;
static const GTypeInfo info = {
sizeof (DummyPerspectiveClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) dummy_perspective_class_init,
NULL,
NULL,
sizeof (DummyPerspective),
0,
(GInstanceInitFunc) dummy_perspective_init,
0
};
static GInterfaceInfo perspective_info = {
(GInterfaceInitFunc) dummy_perspective_perspective_init,
NULL,
NULL
};
g_mutex_lock (®istering);
if (type == 0) {
type = g_type_register_static (GTK_TYPE_BOX, "DummyPerspective", &info, 0);
g_type_add_interface_static (type, BROWSER_PERSPECTIVE_TYPE, &perspective_info);
}
g_mutex_unlock (®istering);
}
return type;
}
static void
dummy_perspective_class_init (DummyPerspectiveClass * klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
object_class->dispose = dummy_perspective_dispose;
}
static void
dummy_perspective_perspective_init (BrowserPerspectiveIface *iface)
{
iface->i_get_window = dummy_perspective_get_window;
iface->i_get_actions_group = dummy_perspective_get_actions_group;
iface->i_get_actions_ui = dummy_perspective_get_actions_ui;
}
static void
dummy_perspective_init (DummyPerspective *perspective)
{
GtkWidget *wid;
gtk_orientable_set_orientation (GTK_ORIENTABLE (perspective), GTK_ORIENTATION_VERTICAL);
wid = gtk_label_new ("");
gtk_label_set_markup (GTK_LABEL (wid),
"<big><b>Dummy perspective</b></big>\n"
"Use this as a starting point for your own perspective...");
gtk_box_pack_start (GTK_BOX (perspective), wid, TRUE, TRUE, 0);
gtk_widget_show (wid);
}
/**
* dummy_perspective_new
*
* Creates new #BrowserPerspective widget which
*/
BrowserPerspective *
dummy_perspective_new (G_GNUC_UNUSED BrowserWindow *bwin)
{
BrowserPerspective *bpers;
bpers = (BrowserPerspective*) g_object_new (TYPE_DUMMY_PERSPECTIVE, NULL);
/* if there is a notebook to store pages, use:
browser_perspective_declare_notebook (bpers, GTK_NOTEBOOK (perspective->priv->notebook));
*/
return bpers;
}
static void
dummy_perspective_dispose (GObject *object)
{
DummyPerspective *perspective;
g_return_if_fail (object != NULL);
g_return_if_fail (IS_DUMMY_PERSPECTIVE (object));
perspective = DUMMY_PERSPECTIVE (object);
browser_perspective_declare_notebook ((BrowserPerspective*) perspective, NULL);
/* parent class */
parent_class->dispose (object);
}
static void
dummy_add_cb (G_GNUC_UNUSED GtkAction *action, G_GNUC_UNUSED BrowserPerspective *bpers)
{
g_print ("Add something...\n");
}
static void
dummy_list_cb (G_GNUC_UNUSED GtkAction *action, G_GNUC_UNUSED BrowserPerspective *bpers)
{
g_print ("List something...\n");
}
static GtkActionEntry ui_actions[] = {
{ "DummyMenu", NULL, "_Dummy", NULL, "DummyMenu", NULL },
{ "DummyItem1", GTK_STOCK_ADD, "_Dummy Add", NULL, "Add something",
G_CALLBACK (dummy_add_cb)},
{ "DummyItem2", GTK_STOCK_REMOVE, "_Dummy List", NULL, "List something",
G_CALLBACK (dummy_list_cb)},
};
static const gchar *ui_actions_info =
"<ui>"
" <menubar name='MenuBar'>"
" <placeholder name='MenuExtension'>"
" <menu name='Dummy' action='DummyMenu'>"
" <menuitem name='DummyItem1' action= 'DummyItem1'/>"
" <menuitem name='DummyItem2' action= 'DummyItem2'/>"
" </menu>"
" </placeholder>"
" </menubar>"
" <toolbar name='ToolBar'>"
" <separator/>"
" <toolitem action='DummyItem1'/>"
" <toolitem action='DummyItem2'/>"
" </toolbar>"
"</ui>";
static GtkActionGroup *
dummy_perspective_get_actions_group (BrowserPerspective *bpers)
{
GtkActionGroup *agroup;
agroup = gtk_action_group_new ("DummyActions");
gtk_action_group_set_translation_domain (agroup, GETTEXT_PACKAGE);
gtk_action_group_add_actions (agroup, ui_actions, G_N_ELEMENTS (ui_actions), bpers);
return agroup;
}
static const gchar *
dummy_perspective_get_actions_ui (G_GNUC_UNUSED BrowserPerspective *bpers)
{
return ui_actions_info;
}
static BrowserWindow *
dummy_perspective_get_window (BrowserPerspective *perspective)
{
DummyPerspective *bpers;
bpers = DUMMY_PERSPECTIVE (perspective);
return NULL;/*bpers->priv->bwin;*/
}
|