summaryrefslogtreecommitdiff
path: root/libnautilus-extensions/nautilus-bonobo-extensions.h
blob: f8d3c319bfbd6d92e485c82dd8e356ef8ee4291b (plain)
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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/* nautilus-bonobo-extensions.h - interface for new functions that conceptually
                                  belong in bonobo. Perhaps some of these will be
                                  actually rolled into bonobo someday.

   Copyright (C) 2000 Eazel, Inc.

   The Gnome 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.

   The Gnome 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 the Gnome Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.

   Author: John Sullivan <sullivan@eazel.com>
*/

#ifndef NAUTILUS_BONOBO_EXTENSIONS_H
#define NAUTILUS_BONOBO_EXTENSIONS_H

#include <bonobo/bonobo-ui-component.h>

void     nautilus_bonobo_set_accelerator         (BonoboUIComponent *ui,
						  const char        *path,
						  const char        *accelerator);
void     nautilus_bonobo_set_description         (BonoboUIComponent *ui,
						  const char        *path,
						  const char        *description);
char *   nautilus_bonobo_get_label               (BonoboUIComponent *ui,
						  const char        *path);
void     nautilus_bonobo_set_label               (BonoboUIComponent *ui,
						  const char        *path,
						  const char        *label);
void     nautilus_bonobo_set_tip                 (BonoboUIComponent *ui,
						  const char        *path,
						  const char        *tip);
void     nautilus_bonobo_set_sensitive           (BonoboUIComponent *ui,
						  const char        *path,
						  gboolean           sensitive);
void     nautilus_bonobo_set_toggle_state        (BonoboUIComponent *ui,
						  const char        *path,
						  gboolean           state);
void     nautilus_bonobo_set_hidden              (BonoboUIComponent *ui,
						  const char        *path,
						  gboolean           hidden);
gboolean nautilus_bonobo_get_hidden              (BonoboUIComponent *ui,
						  const char        *path);
void     nautilus_bonobo_add_menu_item           (BonoboUIComponent *ui,
						  const char        *id,
						  const char        *path,
						  const char        *label);
void     nautilus_bonobo_add_submenu             (BonoboUIComponent *ui,
						  const char        *path,
						  const char        *label);
void     nautilus_bonobo_add_menu_separator      (BonoboUIComponent *ui,
						  const char        *path);
void     nautilus_bonobo_remove_menu_items       (BonoboUIComponent *ui,
						  const char        *path);
char *   nautilus_bonobo_get_menu_item_verb_name (const char        *path);
void     nautilus_bonobo_set_icon                (BonoboUIComponent *ui,
						  const char        *path,
						  const char        *icon_relative_path);

typedef struct _NautilusBonoboActivate NautilusBonoboActivate;

typedef void (*NautilusBonoboActivateCallback) (CORBA_Object object_reference, gpointer data);

NautilusBonoboActivate *nautilus_bonobo_activate_from_id (const char *iid, 
							 NautilusBonoboActivateCallback callback, 
							 gpointer user_data);
void nautilus_bonobo_activate_stop (NautilusBonoboActivate *activate_structure);
void nautilus_bonobo_activate_free (NautilusBonoboActivate *activate_structure);


#endif /* NAUTILUS_BONOBO_EXTENSIONS_H */