Files
evolution/shell/importer/evolution-intelligent-importer.c
Not Zed abda981484 from clicked_cb. (start_import): gtkdialogise.
2002-11-18  Not Zed  <NotZed@Ximian.com>

        * importer/importer.c (dialog_response_cb): from clicked_cb.
        (start_import): gtkdialogise.

        * e-shell-importer.c: removed redundant header.
        (create_html): Removed utf8 from locale stuff.
        (get_name_from_component_info): oaf->bonobo activation.
        (get_iid_for_filetype): "
        (create_plugin_menu): Likewise, and change oafiid to bonoboiid
        (get_intelligent_importers): "
        (prepare_intelligent_page): "
        (show_import_wizard): add null domain to glade_xml_new.
        (choose_importer_from_list): gtkdialogise.
        (dialog_response_cb): changed from dialog_clicked_cb.
        (start_import): gtkdialogise.
        (show_error): use gtk message box.
        (error_response_cb): callback to close error box.
        (show_import_wizard): gnome_druid_page_start/finish ->
        gnome_druid_page_edge.
        (prepare_file_page):
        (filename_changed): set HELP button insensitive.
        (create_plugin_menu): casts for warnings and fix a typo,
        set_data->set_data_full.
        (import_druid_finish): folder_selection_dialog api change(?),
        allow create.
        (dialog_weak_notify): renamed from close_dialog().
        (show_import_wizard): remove gnome_dialog_close_hides -> its a
        gtkwindow anyway(!).

        * Makefile.am (evolution_LDADD): Added back importer.
        (evolution_SOURCES): Added back importer.

        * importer/intelligent.c (get_intelligent_importers):
        bonobo-activationised.
        (create_gui): gtkdialogise.
        (intelligent_importer_init): gtkdialogise.
        (create_gui): remove gnome_util_user_home().
        (intelligent_importer_init): "

        * importer/evolution-importer.c (finalise): from destroy.
        (evolution_importer_new): type_new->object_new.

        * importer/evolution-importer-listener.c (finalise): from destroy.
        (evolution_importer_listener_new): type_new->object_new.

        * importer/evolution-importer-client.c (destroy): removed, as it
        wasn't used anyway.
        (evolution_importer_client_new): g_object_new.
        (finalise): added, tho doesn't do anythign yet, should it unref
        the client->objref?  This whole class doesn't seem much use.

        * importer/evolution-importer-client.h: removed
        bonobo-object-client, change to g_object.

        * importer/*.[ch]: ran fix script over everything.

        * importer/evolution-intelligent-importer.c: gobjectise.
        (finalise): renamed from destroy.
        (evolution_intelligent_importer_new): gtk_type_new -> g_object_new

svn path=/trunk/; revision=18821
2002-11-18 11:29:35 +00:00

198 lines
5.7 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* evolution-intelligent-importer.c
*
* Copyright (C) 2000, 2001 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: Iain Holmes <iain@ximian.com>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "evolution-intelligent-importer.h"
#include <bonobo/bonobo-object.h>
#include "GNOME_Evolution_Importer.h"
#define PARENT_TYPE BONOBO_X_OBJECT_TYPE
static BonoboObjectClass *parent_class = NULL;
struct _EvolutionIntelligentImporterPrivate {
EvolutionIntelligentImporterCanImportFn can_import_fn;
EvolutionIntelligentImporterImportDataFn import_data_fn;
char *importername;
char *message;
void *closure;
};
static inline EvolutionIntelligentImporter *
evolution_intelligent_importer_from_servant (PortableServer_Servant servant)
{
return EVOLUTION_INTELLIGENT_IMPORTER (bonobo_object_from_servant (servant));
}
static CORBA_char *
impl_GNOME_Evolution_IntelligentImporter__get_importername (PortableServer_Servant servant,
CORBA_Environment *ev)
{
EvolutionIntelligentImporter *ii;
ii = evolution_intelligent_importer_from_servant (servant);
return CORBA_string_dup (ii->priv->importername ?
ii->priv->importername : "");
}
static CORBA_char *
impl_GNOME_Evolution_IntelligentImporter__get_message (PortableServer_Servant servant,
CORBA_Environment *ev)
{
EvolutionIntelligentImporter *ii;
ii = evolution_intelligent_importer_from_servant (servant);
return CORBA_string_dup (ii->priv->message ?
ii->priv->message : "");
}
static CORBA_boolean
impl_GNOME_Evolution_IntelligentImporter_canImport (PortableServer_Servant servant,
CORBA_Environment *ev)
{
EvolutionIntelligentImporter *ii;
EvolutionIntelligentImporterPrivate *priv;
ii = evolution_intelligent_importer_from_servant (servant);
priv = ii->priv;
if (priv->can_import_fn != NULL)
return (priv->can_import_fn) (ii, priv->closure);
else
return FALSE;
}
static void
impl_GNOME_Evolution_IntelligentImporter_importData (PortableServer_Servant servant,
CORBA_Environment *ev)
{
EvolutionIntelligentImporter *ii;
EvolutionIntelligentImporterPrivate *priv;
ii = evolution_intelligent_importer_from_servant (servant);
priv = ii->priv;
if (priv->import_data_fn)
(priv->import_data_fn) (ii, priv->closure);
}
static void
finalise (GObject *object)
{
EvolutionIntelligentImporter *ii;
ii = EVOLUTION_INTELLIGENT_IMPORTER (object);
if (ii->priv == NULL)
return;
g_free (ii->priv->importername);
g_free (ii->priv);
ii->priv = NULL;
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
evolution_intelligent_importer_class_init (EvolutionIntelligentImporterClass *klass)
{
GObjectClass *object_class;
POA_GNOME_Evolution_IntelligentImporter__epv *epv = &klass->epv;
object_class = G_OBJECT_CLASS (klass);
object_class->finalize = finalise;
parent_class = g_type_class_ref(PARENT_TYPE);
epv->_get_importername = impl_GNOME_Evolution_IntelligentImporter__get_importername;
epv->_get_message = impl_GNOME_Evolution_IntelligentImporter__get_message;
epv->canImport = impl_GNOME_Evolution_IntelligentImporter_canImport;
epv->importData = impl_GNOME_Evolution_IntelligentImporter_importData;
}
static void
evolution_intelligent_importer_init (EvolutionIntelligentImporter *ii)
{
ii->priv = g_new0 (EvolutionIntelligentImporterPrivate, 1);
}
static void
evolution_intelligent_importer_construct (EvolutionIntelligentImporter *ii,
EvolutionIntelligentImporterCanImportFn can_import_fn,
EvolutionIntelligentImporterImportDataFn import_data_fn,
const char *importername,
const char *message,
void *closure)
{
g_return_if_fail (ii != NULL);
ii->priv->importername = g_strdup (importername);
ii->priv->message = g_strdup (message);
ii->priv->can_import_fn = can_import_fn;
ii->priv->import_data_fn = import_data_fn;
ii->priv->closure = closure;
}
/**
* evolution_intelligent_importer_new:
* can_import_fn: The function that will be called to see if this importer can do
* anything.
* import_data_fn: The function that will be called when the importer should
* import the data.
* importername: The name of this importer.
* message: The message that will be displayed when the importer can import.
* closure: The data to be passed to @can_import_fn and @import_data_fn.
*
* Creates a new IntelligentImporter.
*
* Returns: A newly allocated EvolutionIntelligentImporter.
*/
EvolutionIntelligentImporter *
evolution_intelligent_importer_new (EvolutionIntelligentImporterCanImportFn can_import_fn,
EvolutionIntelligentImporterImportDataFn import_data_fn,
const char *importername,
const char *message,
void *closure)
{
EvolutionIntelligentImporter *ii;
ii = g_object_new (evolution_intelligent_importer_get_type (), NULL);
evolution_intelligent_importer_construct (ii, can_import_fn,
import_data_fn, importername,
message, closure);
return ii;
}
BONOBO_X_TYPE_FUNC_FULL (EvolutionIntelligentImporter,
GNOME_Evolution_IntelligentImporter,
PARENT_TYPE,
evolution_intelligent_importer);