summaryrefslogtreecommitdiff
path: root/capplets/common/activate-settings-daemon.c
blob: d60f3330d0a201d8a162262f8b96e8a3fc779b0e (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
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <libbonobo.h>
#include <gtk/gtk.h>

#include "activate-settings-daemon.h"


/*#include "GNOME_SettingsDaemon.h"*/

static void popup_error_message ()
{
  GtkWidget *dialog;

  dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_WARNING,
				   GTK_BUTTONS_OK, _("Unable to start the settings manager 'gnome-settings-daemon'.\n"
				   "Without the GNOME settings manager running, some preferences may not take effect. This could "
				   "indicate a problem with Bonobo, or a non-GNOME (e.g. KDE) settings manager may already "
				   "be active and conflicting with the GNOME settings manager."));

  gtk_widget_show (dialog);
  gtk_widget_destroy (dialog);
}

/* Returns FALSE if activation failed, else TRUE */
gboolean 
activate_settings_daemon (void)
{
  CORBA_Environment ev;
  CORBA_Object object;

  /*GNOME_SettingsDaemon corba_foo;*/
  
  bonobo_init (NULL, NULL);
  
  CORBA_exception_init (&ev);

  object = bonobo_activation_activate_from_id  ("OAFIID:GNOME_SettingsDaemon",
						0, NULL, &ev);
  
  if (ev._major != CORBA_NO_EXCEPTION) {
    popup_error_message ();
    return FALSE;
  }
  
  if (object == CORBA_OBJECT_NIL) {
    popup_error_message ();
    return FALSE;
  }

  /*bool = GNOME_SettingsDaemon_awake (corba_foo, "MyService", &ev);
    printf ("bool is %d\n", bool);*/


  return TRUE;
}