~ubuntu-branches/ubuntu/precise/xfce4-panel/precise

« back to all changes in this revision

Viewing changes to wrapper/wrapper-module.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 15:45:53 UTC
  • mto: (4.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: james.westby@ubuntu.com-20101204154553-f452gq02eiksf09f
Tags: upstream-4.7.5
ImportĀ upstreamĀ versionĀ 4.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2009 Nick Schermer <nick@xfce.org>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 */
 
18
 
 
19
#ifdef HAVE_CONFIG_H
 
20
#include <config.h>
 
21
#endif
 
22
 
 
23
#ifdef HAVE_STRING_H
 
24
#include <string.h>
 
25
#endif
 
26
 
 
27
#include <common/panel-private.h>
 
28
#include <wrapper/wrapper-module.h>
 
29
 
 
30
 
 
31
 
 
32
static void     wrapper_module_dispose (GObject     *object);
 
33
static gboolean wrapper_module_load    (GTypeModule *type_module);
 
34
static void     wrapper_module_unload  (GTypeModule *type_module);
 
35
 
 
36
 
 
37
 
 
38
 
 
39
struct _WrapperModuleClass
 
40
{
 
41
  GTypeModuleClass __parent__;
 
42
};
 
43
 
 
44
struct _WrapperModule
 
45
{
 
46
  GTypeModule __parent__;
 
47
 
 
48
  /* module library */
 
49
  GModule *library;
 
50
};
 
51
 
 
52
 
 
53
 
 
54
G_DEFINE_TYPE (WrapperModule, wrapper_module, G_TYPE_TYPE_MODULE)
 
55
 
 
56
 
 
57
 
 
58
static void
 
59
wrapper_module_class_init (WrapperModuleClass *klass)
 
60
{
 
61
  GObjectClass *gobject_class;
 
62
  GTypeModuleClass *gtype_module_class;
 
63
 
 
64
  gobject_class = G_OBJECT_CLASS (klass);
 
65
  gobject_class->dispose = wrapper_module_dispose;
 
66
 
 
67
  gtype_module_class = G_TYPE_MODULE_CLASS (klass);
 
68
  gtype_module_class->load = wrapper_module_load;
 
69
  gtype_module_class->unload = wrapper_module_unload;
 
70
}
 
71
 
 
72
 
 
73
 
 
74
static void
 
75
wrapper_module_init (WrapperModule *module)
 
76
{
 
77
  /* foo */
 
78
}
 
79
 
 
80
 
 
81
 
 
82
static void
 
83
wrapper_module_dispose (GObject *object)
 
84
{
 
85
  /* do nothing */
 
86
}
 
87
 
 
88
 
 
89
 
 
90
static gboolean
 
91
wrapper_module_load (GTypeModule *type_module)
 
92
{
 
93
  return TRUE;
 
94
}
 
95
 
 
96
 
 
97
 
 
98
static void
 
99
wrapper_module_unload (GTypeModule *type_module)
 
100
{
 
101
  /* foo */
 
102
}
 
103
 
 
104
 
 
105
 
 
106
WrapperModule *
 
107
wrapper_module_new (GModule *library)
 
108
{
 
109
  WrapperModule *module;
 
110
 
 
111
  module = g_object_new (WRAPPER_TYPE_MODULE, NULL);
 
112
  module->library = library;
 
113
 
 
114
  return module;
 
115
}
 
116
 
 
117
 
 
118
 
 
119
GtkWidget *
 
120
wrapper_module_new_provider (WrapperModule  *module,
 
121
                             GdkScreen      *screen,
 
122
                             const gchar    *name,
 
123
                             gint            unique_id,
 
124
                             const gchar    *display_name,
 
125
                             const gchar    *comment,
 
126
                             gchar         **arguments)
 
127
{
 
128
  GtkWidget           *plugin = NULL;
 
129
  PluginConstructFunc  construct_func;
 
130
  PluginInitFunc       init_func;
 
131
  GType                type;
 
132
 
 
133
  panel_return_val_if_fail (WRAPPER_IS_MODULE (module), NULL);
 
134
  panel_return_val_if_fail (module->library != NULL, NULL);
 
135
 
 
136
  g_type_module_use (G_TYPE_MODULE (module));
 
137
 
 
138
  /* try to link the contruct or init function */
 
139
  if (g_module_symbol (module->library, "xfce_panel_module_init",
 
140
      (gpointer) &init_func) && init_func != NULL)
 
141
    {
 
142
      /* initialize the plugin */
 
143
      type = (init_func) (G_TYPE_MODULE (module), NULL);
 
144
 
 
145
      /* create the object */
 
146
      plugin = g_object_new (type,
 
147
                             "name", name,
 
148
                             "unique-id", unique_id,
 
149
                             "display-name", display_name,
 
150
                             "comment", comment,
 
151
                             "arguments", arguments, NULL);
 
152
    }
 
153
  else if (g_module_symbol (module->library, "xfce_panel_module_construct",
 
154
           (gpointer) &construct_func) && construct_func != NULL)
 
155
    {
 
156
      /* create a new panel plugin */
 
157
      plugin = (*construct_func) (name, unique_id,
 
158
                                  display_name, comment,
 
159
                                  arguments, screen);
 
160
    }
 
161
  else
 
162
    {
 
163
      /* print critical warning */
 
164
      g_critical ("Plugin \"%s\" lacks a plugin register function.", name);
 
165
    }
 
166
 
 
167
  return plugin;
 
168
}