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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* libnautilus: A library for nautilus view implementations.
*
* Copyright (C) 1999, 2000 Red Hat, Inc.
* Copyright (C) 2000 Eazel, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Authors: Maciej Stachowiak <mjs@eazel.com>
*
*/
/* nautilus-view-standard-main.c: Standard main functions for Nautilus
views, to reduce boilerplate code. */
#include <config.h>
#include "nautilus-view-standard-main.h"
#include <bonobo/bonobo-generic-factory.h>
#include <bonobo/bonobo-main.h>
#include <gtk/gtkmain.h>
#include <gtk/gtksignal.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-init.h>
#include <libgnomevfs/gnome-vfs-init.h>
#include <liboaf/liboaf.h>
#include <stdlib.h>
typedef struct {
int object_count;
GList *view_iids;
NautilusViewCreateFunction create_function;
void *user_data;
} CallbackData;
static void
object_destroyed (GtkObject *object,
CallbackData *callback_data)
{
g_assert (GTK_IS_OBJECT (object));
callback_data->object_count--;
if (callback_data->object_count <= 0) {
gtk_main_quit ();
}
}
static BonoboObject *
make_object (BonoboGenericFactory *factory,
const char *iid,
gpointer data)
{
CallbackData *callback_data;
NautilusView *view;
callback_data = (CallbackData *) data;
g_assert (BONOBO_IS_GENERIC_FACTORY (factory));
g_assert (iid != NULL);
g_assert (callback_data != NULL);
/* Check that this is one of the types of object we know how to
* create.
*/
if (g_list_find_custom (callback_data->view_iids,
(gpointer) iid, (GCompareFunc) strcmp) == NULL) {
return NULL;
}
view = callback_data->create_function (iid, callback_data->user_data);
/* Connect a handler that will get us out of the main loop
* when there are no more objects outstanding.
*/
callback_data->object_count++;
gtk_signal_connect (GTK_OBJECT (view), "destroy",
object_destroyed, callback_data);
return BONOBO_OBJECT (view);
}
/**
* nautilus_view_standard_main_multi
*
* A version of nautilus_view_standard_main that accepts multiple view
* IIDs.
*
* @executable_name: The name of the executable binary.
* @version: Component version. Usually VERSION.
* @gettext_package_name: Package name for gettext support. Usually PACKAGE.
* Can be NULL, in which case the component will not
* have gettext support and translations might not
* work
* @gettext_locale_directory: Locale directory for gettext support. Usually
* GNOMELOCALEDIR. Must not be NULL if
* @gettext_package_name is not NULL.
* @argc: Command line argument count.
* @argv: Command line argument vector.
* @factory_iid: The components's factory IID.
* @view_iids: A GList of NautilusView IIDs.
* @create_function: Function called to create the NautilusView instance.
* @post_initialize_callback: An optional callback which is invoked after
* all modules have been initialized (gtk, bonobo,
* gnome-vfs, etc.) but before the execution of
* the main event loop or the creation of the
* component's factory.
* @user_data: User data for @create_function.
**/
int
nautilus_view_standard_main_multi (const char *executable_name,
const char *version,
const char *gettext_package_name,
const char *gettext_locale_directory,
int argc,
char **argv,
const char *factory_iid,
GList *view_iids,
NautilusViewCreateFunction create_function,
GVoidFunc post_initialize_callback,
void *user_data)
{
CORBA_ORB orb;
BonoboGenericFactory *factory;
CallbackData callback_data;
char *registration_id;
g_return_val_if_fail (executable_name != NULL, EXIT_FAILURE);
g_return_val_if_fail (version != NULL, EXIT_FAILURE);
g_return_val_if_fail (argc > 0, EXIT_FAILURE);
g_return_val_if_fail (argv != NULL, EXIT_FAILURE);
g_return_val_if_fail (argv[0] != NULL, EXIT_FAILURE);
g_return_val_if_fail (factory_iid != NULL, EXIT_FAILURE);
g_return_val_if_fail (g_list_length (view_iids) > 0, EXIT_FAILURE);
g_return_val_if_fail (create_function != NULL, EXIT_FAILURE);
if (gettext_package_name != NULL) {
g_return_val_if_fail (gettext_locale_directory != NULL, EXIT_FAILURE);
}
if (gettext_locale_directory != NULL) {
g_return_val_if_fail (gettext_package_name != NULL, EXIT_FAILURE);
}
/* Initialize gettext support if needed */
#ifdef ENABLE_NLS
if (gettext_package_name != NULL
&& gettext_locale_directory != NULL) {
bindtextdomain (gettext_package_name, gettext_locale_directory);
textdomain (gettext_package_name);
}
#endif
/* Disable session manager connection */
gnome_client_disable_master_connection ();
gnomelib_register_popt_table (oaf_popt_options, oaf_get_popt_table_name ());
orb = oaf_init (argc, argv);
/* Initialize libraries. */
gnome_init (executable_name, version, argc, argv);
gdk_rgb_init ();
g_thread_init (NULL);
gnome_vfs_init ();
bonobo_init (orb, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL);
if (post_initialize_callback != NULL) {
(* post_initialize_callback) ();
}
/* Fill in the callback data */
callback_data.object_count = 0;
callback_data.view_iids = view_iids;
callback_data.create_function = create_function;
callback_data.user_data = user_data;
/* Create the factory. */
registration_id = oaf_make_registration_id (factory_iid, g_getenv ("DISPLAY"));
factory = bonobo_generic_factory_new_multi (registration_id,
make_object,
&callback_data);
g_free (registration_id);
/* Loop until we have no more objects. */
do {
bonobo_main ();
} while (callback_data.object_count > 0);
/* Let the factory go. */
bonobo_object_unref (BONOBO_OBJECT (factory));
gnome_vfs_shutdown ();
return EXIT_SUCCESS;
}
/**
* nautilus_view_standard_main
*
* An implementation of most of a typical main.c file for Nautilus views.
* Just call the function from main and pass it the right arguments. This
* should make writing Nautilus views simpler.
*
* @executable_name: The name of the executable binary.
* @version: Component version. Usually VERSION.
* @gettext_package_name: Package name for gettext support. Usually PACKAGE.
* Can be NULL, in which case the component will not
* have gettext support and translations might not
* work
* @gettext_locale_directory: Locale directory for gettext support. Usually
* GNOMELOCALEDIR. Must not be NULL if
* @gettext_package_name is not NULL.
* @argc: Command line argument count.
* @argv: Command line argument vector.
* @factory_iid: The components's factory IID.
* @view_iid: The component's NautilusView IID.
* @create_function: Function called to create the NautilusView instance.
* @post_initialize_callback: An optional callback which is invoked after
* all modules have been initialized (gtk, bonobo,
* gnome-vfs, etc.) but before the execution of
* the main event loop or the creation of the
* component's factory.
* @user_data: User data for @create_function.
**/
int
nautilus_view_standard_main (const char *executable_name,
const char *version,
const char *gettext_package_name,
const char *gettext_locale_directory,
int argc,
char **argv,
const char *factory_iid,
const char *view_iid,
NautilusViewCreateFunction create_function,
GVoidFunc post_initialize_callback,
void *user_data)
{
GList node;
g_return_val_if_fail (executable_name != NULL, EXIT_FAILURE);
g_return_val_if_fail (version != NULL, EXIT_FAILURE);
g_return_val_if_fail (argc > 0, EXIT_FAILURE);
g_return_val_if_fail (argv != NULL, EXIT_FAILURE);
g_return_val_if_fail (argv[0] != NULL, EXIT_FAILURE);
g_return_val_if_fail (factory_iid != NULL, EXIT_FAILURE);
g_return_val_if_fail (view_iid != NULL, EXIT_FAILURE);
g_return_val_if_fail (create_function != NULL, EXIT_FAILURE);
if (gettext_package_name != NULL) {
g_return_val_if_fail (gettext_locale_directory != NULL, EXIT_FAILURE);
}
if (gettext_locale_directory != NULL) {
g_return_val_if_fail (gettext_package_name != NULL, EXIT_FAILURE);
}
node.data = (gpointer) view_iid;
node.next = NULL;
node.prev = NULL;
return nautilus_view_standard_main_multi (executable_name,
version,
gettext_package_name,
gettext_locale_directory,
argc,
argv,
factory_iid,
&node,
create_function,
post_initialize_callback,
user_data);
}
typedef GtkType (* TypeFunc) (void);
NautilusView *
nautilus_view_create_from_get_type_function (const char *iid, void *user_data)
{
return NAUTILUS_VIEW (gtk_object_new (((TypeFunc) (user_data)) (), NULL));
}
|