2000-05-31 Federico Mena Quintero <federico@helixcode.com> * gui/gnome-cal.h (GnomeCalendar): Added a hash table to map calendar objects to their respective event editors. * gui/gnome-cal.c (gnome_calendar_init): Create the object_editor_hash. (gnome_calendar_destroy): Free the object_editor_hash. (gnome_calendar_edit_object): New function to centralize the launching of event editors; if one already exists for a particular calendar object, we just raise its window. (edit): Use gnome_calendar_edit_object(). * gui/calendar-commands.c (display_objedit): Use gnome_calendar_edit_object(). (display_objedit_today): Likewise. * gui/e-day-view.c (e_day_view_on_new_appointment): Likewise. (e_day_view_on_edit_appointment): Likewise. * gui/e-week-view.c (e_week_view_on_new_appointment): Likewise. (e_week_view_on_edit_appointment): Likewise. * gui/event-editor.c (event_editor_new): Do not take in an iCalObject; rather provide an event_editor_set_ical_object() function. We need this because a single editor may be switched between different calendar objects. Also, do not show the event editor; leave it up to the client code. (event_editor_construct): Likewise. (clear_widgets): New function to clear the widgets to default values. (fill_widgets): New function to fill in the widgets from the iCalObject. We don't do this in init_widgets() anymore. (free_exception_clist_data): New function to free the exceptions clist data. We were leaking the row data. (init_widgets): Hook to the destroy signal of the exceptions clist. (event_editor_set_ical_object): New function. Now it also makes a copy of the calendar object for the event editor; clients do not need to copy it anymore. (event_editor_destroy): Unref the UI handler as well. (event_editor_class_init): New "ical_object_released" signal to notify the parent that we are no longer editing the calendar object. (make_title_from_ico): Handle NULL objects. * gui/event-editor.h (EventEditor): Removed fields that are no longer used. svn path=/trunk/; revision=3317
193 lines
4.1 KiB
C
193 lines
4.1 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
/* control-factory.c
|
|
*
|
|
* Copyright (C) 2000 Helix Code, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* 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 <config.h>
|
|
#include <gnome.h>
|
|
#include <glade/glade.h>
|
|
#include <bonobo.h>
|
|
#include <bonobo/bonobo-control.h>
|
|
#include <glade/glade.h>
|
|
|
|
#ifdef USING_OAF
|
|
#include <liboaf/liboaf.h>
|
|
#else
|
|
#include <libgnorba/gnorba.h>
|
|
#endif
|
|
|
|
#include <cal-util/timeutil.h>
|
|
#include <gui/alarm.h>
|
|
#include <gui/gnome-cal.h>
|
|
#include <gui/calendar-commands.h>
|
|
|
|
#include "control-factory.h"
|
|
|
|
#define PROPERTY_CALENDAR_URI "folder_uri"
|
|
|
|
#define PROPERTY_CALENDAR_URI_IDX 1
|
|
|
|
#ifdef USING_OAF
|
|
#define CONTROL_FACTORY_ID "OAFIID:control-factory:calendar:f4f90989-0f50-4af2-ad94-8bbdf331f0bc"
|
|
#else
|
|
#define CONTROL_FACTORY_ID "control-factory:calendar"
|
|
#endif
|
|
|
|
|
|
CORBA_Environment ev;
|
|
CORBA_ORB orb;
|
|
|
|
|
|
static void
|
|
control_activate_cb (BonoboControl *control,
|
|
gboolean activate,
|
|
gpointer user_data)
|
|
{
|
|
if (activate)
|
|
calendar_control_activate (control, user_data);
|
|
else
|
|
calendar_control_deactivate (control);
|
|
}
|
|
|
|
|
|
static void
|
|
get_prop (BonoboPropertyBag *bag,
|
|
BonoboArg *arg,
|
|
guint arg_id,
|
|
gpointer user_data)
|
|
{
|
|
/*GnomeCalendar *gcal = user_data;*/
|
|
|
|
switch (arg_id) {
|
|
|
|
case PROPERTY_CALENDAR_URI_IDX:
|
|
/*
|
|
if (fb && fb->uri)
|
|
BONOBO_ARG_SET_STRING (arg, fb->uri);
|
|
else
|
|
BONOBO_ARG_SET_STRING (arg, "");
|
|
*/
|
|
break;
|
|
|
|
default:
|
|
g_warning ("Unhandled arg %d\n", arg_id);
|
|
}
|
|
}
|
|
|
|
|
|
static void
|
|
set_prop (BonoboPropertyBag *bag,
|
|
const BonoboArg *arg,
|
|
guint arg_id,
|
|
gpointer user_data)
|
|
{
|
|
GnomeCalendar *gcal = user_data;
|
|
char *filename;
|
|
|
|
switch (arg_id) {
|
|
|
|
case PROPERTY_CALENDAR_URI_IDX:
|
|
printf ("set_prop: '%s'\n", BONOBO_ARG_GET_STRING (arg));
|
|
filename = g_strdup_printf ("%s/calendar.vcf",
|
|
BONOBO_ARG_GET_STRING (arg));
|
|
calendar_set_uri (gcal, filename);
|
|
g_free (filename);
|
|
break;
|
|
|
|
default:
|
|
g_warning ("Unhandled arg %d\n", arg_id);
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
static void
|
|
calendar_properties_init (GnomeCalendar *gcal)
|
|
{
|
|
gcal->properties = bonobo_property_bag_new (get_prop, set_prop, gcal);
|
|
|
|
bonobo_property_bag_add (gcal->properties,
|
|
PROPERTY_CALENDAR_URI,
|
|
PROPERTY_CALENDAR_URI_IDX,
|
|
BONOBO_ARG_STRING,
|
|
NULL,
|
|
_("The URI that the calendar will display"),
|
|
0);
|
|
|
|
bonobo_control_set_property_bag (gcal->control, gcal->properties);
|
|
}
|
|
|
|
|
|
static BonoboControl *
|
|
create_control (void)
|
|
{
|
|
BonoboControl *control;
|
|
GnomeCalendar *cal;
|
|
|
|
cal = new_calendar (full_name, NULL, NULL, 0);
|
|
gtk_widget_show (GTK_WIDGET (cal));
|
|
|
|
control = bonobo_control_new (GTK_WIDGET (cal));
|
|
cal->control = control;
|
|
|
|
calendar_properties_init (cal);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (control), "activate",
|
|
control_activate_cb, cal);
|
|
|
|
return control;
|
|
}
|
|
|
|
|
|
static BonoboObject *
|
|
control_factory (BonoboGenericFactory *Factory, void *closure)
|
|
{
|
|
return BONOBO_OBJECT (create_control ());
|
|
}
|
|
|
|
|
|
void
|
|
control_factory_init (void)
|
|
{
|
|
static BonoboGenericFactory *factory = NULL;
|
|
|
|
if (factory != NULL)
|
|
return;
|
|
|
|
puts ("XXXXXX - initializing calendar factory!!!");
|
|
|
|
factory = bonobo_generic_factory_new (CONTROL_FACTORY_ID, control_factory, NULL);
|
|
|
|
if (factory == NULL)
|
|
g_error ("I could not register a Calendar control factory.");
|
|
}
|
|
|
|
|
|
BonoboControl *
|
|
control_factory_new_control (void)
|
|
{
|
|
return create_control ();
|
|
}
|