
2002-11-27 Not Zed <NotZed@Ximian.com> * main.c (show_development_warning): changed to use a gtkdialog instead of a gnome one. (warning_dialog_response_callback): clicked->response. * e-shell-folder-selection-dialog.c: Include gtk/gtkstock.h * e-shell-folder-creation-dialog.c: include gnome-dialog.h (dialog_response_cb): gtk_entry_get_text now returns const. Dont free result. * e-setup.c: include gnome-messagebox.h * *.c: (re)run fix.sh over all, for e_notice changes & pick up some deprecated functions. * e-shell-shared-folder-picker-dialog.c (shared_folder_discovery_callback): reformat e_notice call for script. * e-shell-offline-sync.c (impl_SyncFolderProgressListener_reportFailure): Fix e_notice call, we weren't passing type in. * e-shell-folder-commands.c (xfer_result_callback): changed around slightly to save some processing & allow a script to run. (e_shell_command_rename_folder): reformat e_notice call to help script. Include gnome-messagebox.h svn path=/trunk/; revision=18977
240 lines
5.8 KiB
C
240 lines
5.8 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||
/* evolution-config-control.c
|
||
*
|
||
* Copyright (C) 2002 Ximian, Inc.
|
||
*
|
||
* This program is free software; you can redistribute it and/or
|
||
* modify it under the terms of version 2 of the GNU General Public
|
||
* License as published by the Free Software Foundation.
|
||
*
|
||
* 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., 59 Temple Place - Suite 330,
|
||
* Boston, MA 02111-1307, USA.
|
||
*
|
||
* Author: Ettore Perazzoli
|
||
*/
|
||
|
||
#ifdef HAVE_CONFIG_H
|
||
#include <config.h>
|
||
#endif
|
||
|
||
#include "evolution-config-control.h"
|
||
|
||
#include "e-shell-marshal.h"
|
||
|
||
#include <gal/util/e-util.h>
|
||
|
||
#include <gtk/gtksignal.h>
|
||
|
||
#include <bonobo/bonobo-control.h>
|
||
#include <bonobo/bonobo-event-source.h>
|
||
|
||
|
||
#define PARENT_TYPE BONOBO_X_OBJECT_TYPE
|
||
static BonoboXObjectClass *parent_class = NULL;
|
||
|
||
struct _EvolutionConfigControlPrivate {
|
||
gboolean changed;
|
||
BonoboControl *control;
|
||
BonoboEventSource *event_source;
|
||
};
|
||
|
||
enum {
|
||
APPLY,
|
||
LAST_SIGNAL
|
||
};
|
||
static int signals[LAST_SIGNAL] = { 0 };
|
||
|
||
|
||
/* GObject methods. */
|
||
|
||
static void
|
||
impl_dispose (GObject *object)
|
||
{
|
||
EvolutionConfigControl *config_control;
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
config_control = EVOLUTION_CONFIG_CONTROL (object);
|
||
priv = config_control->priv;
|
||
|
||
if (priv->control != NULL) {
|
||
bonobo_object_unref (BONOBO_OBJECT (priv->control));
|
||
priv->control = NULL;
|
||
}
|
||
|
||
if (priv->event_source != NULL) {
|
||
bonobo_object_unref (BONOBO_OBJECT (priv->event_source));
|
||
priv->event_source = NULL;
|
||
}
|
||
|
||
(* G_OBJECT_CLASS (parent_class)->dispose) (object);
|
||
}
|
||
|
||
static void
|
||
impl_finalize (GObject *object)
|
||
{
|
||
EvolutionConfigControl *config_control;
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
config_control = EVOLUTION_CONFIG_CONTROL (object);
|
||
priv = config_control->priv;
|
||
|
||
g_free (priv);
|
||
|
||
(* G_OBJECT_CLASS (parent_class)->finalize) (object);
|
||
}
|
||
|
||
|
||
/* Evolution::ConfigControl CORBA methods. */
|
||
|
||
static void
|
||
impl_apply (PortableServer_Servant servant,
|
||
CORBA_Environment *ev)
|
||
{
|
||
EvolutionConfigControl *config_control;
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
config_control = EVOLUTION_CONFIG_CONTROL (bonobo_object_from_servant (servant));
|
||
priv = config_control->priv;
|
||
|
||
g_signal_emit (GTK_OBJECT (config_control), signals[APPLY], 0);
|
||
|
||
priv->changed = FALSE;
|
||
}
|
||
|
||
static Bonobo_Control
|
||
impl__get_control (PortableServer_Servant servant,
|
||
CORBA_Environment *ev)
|
||
{
|
||
EvolutionConfigControl *config_control;
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
config_control = EVOLUTION_CONFIG_CONTROL (bonobo_object_from_servant (servant));
|
||
priv = config_control->priv;
|
||
|
||
bonobo_object_ref (BONOBO_OBJECT (priv->control));
|
||
|
||
return CORBA_Object_duplicate (bonobo_object_corba_objref (BONOBO_OBJECT (priv->control)), ev);
|
||
}
|
||
|
||
static Bonobo_EventSource
|
||
impl__get_eventSource (PortableServer_Servant servant,
|
||
CORBA_Environment *ev)
|
||
{
|
||
EvolutionConfigControl *config_control;
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
config_control = EVOLUTION_CONFIG_CONTROL (bonobo_object_from_servant (servant));
|
||
priv = config_control->priv;
|
||
|
||
bonobo_object_ref (BONOBO_OBJECT (priv->event_source));
|
||
|
||
return CORBA_Object_duplicate (bonobo_object_corba_objref (BONOBO_OBJECT (priv->event_source)), ev);
|
||
}
|
||
|
||
|
||
static void
|
||
class_init (EvolutionConfigControlClass *class)
|
||
{
|
||
POA_GNOME_Evolution_ConfigControl__epv *epv;
|
||
GObjectClass *object_class;
|
||
|
||
object_class = G_OBJECT_CLASS (class);
|
||
object_class->dispose = impl_dispose;
|
||
object_class->finalize = impl_finalize;
|
||
|
||
epv = &class->epv;
|
||
epv->apply = impl_apply;
|
||
epv->_get_control = impl__get_control;
|
||
epv->_get_eventSource = impl__get_eventSource;
|
||
|
||
signals[APPLY] = gtk_signal_new ("apply", GTK_RUN_FIRST,
|
||
GTK_CLASS_TYPE (object_class),
|
||
G_STRUCT_OFFSET (EvolutionConfigControlClass, apply),
|
||
e_shell_marshal_NONE__NONE,
|
||
GTK_TYPE_NONE, 0);
|
||
|
||
parent_class = g_type_class_ref(PARENT_TYPE);
|
||
}
|
||
|
||
static void
|
||
init (EvolutionConfigControl *config_control)
|
||
{
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
priv = g_new (EvolutionConfigControlPrivate, 1);
|
||
priv->changed = FALSE;
|
||
priv->control = NULL;
|
||
priv->event_source = bonobo_event_source_new ();
|
||
|
||
config_control->priv = priv;
|
||
}
|
||
|
||
|
||
void
|
||
evolution_config_control_construct (EvolutionConfigControl *control,
|
||
GtkWidget *widget)
|
||
{
|
||
EvolutionConfigControlPrivate *priv;
|
||
|
||
g_return_if_fail (EVOLUTION_IS_CONFIG_CONTROL (control));
|
||
g_return_if_fail (GTK_IS_WIDGET (widget));
|
||
|
||
priv = control->priv;
|
||
|
||
priv->control = bonobo_control_new (widget);
|
||
}
|
||
|
||
EvolutionConfigControl *
|
||
evolution_config_control_new (GtkWidget *widget)
|
||
{
|
||
EvolutionConfigControl *new;
|
||
|
||
g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
|
||
|
||
new = g_object_new (evolution_config_control_get_type (), NULL);
|
||
evolution_config_control_construct (new, widget);
|
||
|
||
return new;
|
||
}
|
||
|
||
void
|
||
evolution_config_control_changed (EvolutionConfigControl *config_control)
|
||
{
|
||
EvolutionConfigControlPrivate *priv;
|
||
CORBA_Environment ev;
|
||
CORBA_any *null_value;
|
||
|
||
g_return_if_fail (EVOLUTION_IS_CONFIG_CONTROL (config_control));
|
||
|
||
priv = config_control->priv;
|
||
|
||
if (priv->changed)
|
||
return;
|
||
|
||
priv->changed = TRUE;
|
||
|
||
CORBA_exception_init (&ev);
|
||
|
||
null_value = CORBA_any__alloc ();
|
||
null_value->_type = TC_null;
|
||
|
||
bonobo_event_source_notify_listeners (priv->event_source, "changed", null_value, &ev);
|
||
|
||
CORBA_free (null_value);
|
||
|
||
CORBA_exception_free (&ev);
|
||
}
|
||
|
||
|
||
E_MAKE_X_TYPE (evolution_config_control, "EvolutionConfigControl", EvolutionConfigControl,
|
||
class_init, init, PARENT_TYPE,
|
||
POA_GNOME_Evolution_ConfigControl__init,
|
||
GTK_STRUCT_OFFSET (EvolutionConfigControlClass, epv))
|