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
96 lines
3.2 KiB
C
96 lines
3.2 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
/* evolution-importer.h
|
|
*
|
|
* Copyright (C) 2000 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>
|
|
*/
|
|
|
|
#ifndef EVOLUTION_IMPORTER_H
|
|
#define EVOLUTION_IMPORTER_H
|
|
|
|
#include <glib.h>
|
|
#include <bonobo/bonobo-xobject.h>
|
|
#include <importer/GNOME_Evolution_Importer.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#pragma }
|
|
#endif /* cplusplus */
|
|
|
|
#define EVOLUTION_TYPE_IMPORTER (evolution_importer_get_type ())
|
|
#define EVOLUTION_IMPORTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EVOLUTION_TYPE_IMPORTER, EvolutionImporter))
|
|
#define EVOLUTION_IMPORTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EVOLUTION_TYPE_IMPORTER, EvolutionImporterClass))
|
|
#define EVOLUTION_IS_IMPORTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EVOLUTION_TYPE_IMPORTER))
|
|
#define EVOLUTION_IS_IMPORTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EVOLUTION_TYPE_IMPORTER))
|
|
|
|
typedef struct _EvolutionImporter EvolutionImporter;
|
|
typedef struct _EvolutionImporterPrivate EvolutionImporterPrivate;
|
|
typedef struct _EvolutionImporterClass EvolutionImporterClass;
|
|
|
|
typedef gboolean (* EvolutionImporterSupportFormatFn) (EvolutionImporter *importer,
|
|
const char *filename,
|
|
void *closure);
|
|
typedef gboolean (* EvolutionImporterLoadFileFn) (EvolutionImporter *importer,
|
|
const char *filename,
|
|
const char *folderpath,
|
|
void *closure);
|
|
typedef void (* EvolutionImporterProcessItemFn) (EvolutionImporter *importer,
|
|
CORBA_Object listener,
|
|
void *closure,
|
|
CORBA_Environment *ev);
|
|
typedef char *(* EvolutionImporterGetErrorFn) (EvolutionImporter *importer,
|
|
void *closure);
|
|
|
|
typedef enum {
|
|
EVOLUTION_IMPORTER_OK,
|
|
EVOLUTION_IMPORTER_UNSUPPORTED_OPERATION,
|
|
EVOLUTION_IMPORTER_INTERRUPTED,
|
|
EVOLUTION_IMPORTER_BUSY,
|
|
EVOLUTION_IMPORTER_NOT_READY,
|
|
EVOLUTION_IMPORTER_UNKNOWN_DATA,
|
|
EVOLUTION_IMPORTER_BAD_DATA,
|
|
EVOLUTION_IMPORTER_BAD_FILE,
|
|
EVOLUTION_IMPORTER_UNKNOWN_ERROR
|
|
} EvolutionImporterResult;
|
|
|
|
struct _EvolutionImporter {
|
|
BonoboXObject parent;
|
|
|
|
EvolutionImporterPrivate *priv;
|
|
};
|
|
|
|
struct _EvolutionImporterClass {
|
|
BonoboXObjectClass parent_class;
|
|
|
|
POA_GNOME_Evolution_Importer__epv epv;
|
|
};
|
|
|
|
GType evolution_importer_get_type (void);
|
|
|
|
EvolutionImporter *evolution_importer_new (EvolutionImporterSupportFormatFn support_format_fn,
|
|
EvolutionImporterLoadFileFn load_file_fn,
|
|
EvolutionImporterProcessItemFn process_item_fn,
|
|
EvolutionImporterGetErrorFn get_error_fn,
|
|
void *closure);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|