remove unused files
svn path=/trunk/; revision=23005
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -1,30 +0,0 @@
|
||||
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||||
/* component-factory.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: Ettore Perazzoli
|
||||
*/
|
||||
|
||||
#ifndef COMPONENT_FACTORY_H
|
||||
#define COMPONENT_FACTORY_H
|
||||
|
||||
#define COMPONENT_ID "OAFIID:GNOME_Evolution_Mail_Component2"
|
||||
#define SHELL_COMPONENT_ID "OAFIID:GNOME_Evolution_Mail_ShellComponent"
|
||||
#define SUMMARY_FACTORY_ID "OAFIID:GNOME_Evolution_Mail_ExecutiveSummaryComponentFactory"
|
||||
|
||||
#endif
|
File diff suppressed because it is too large
Load Diff
@ -1,192 +0,0 @@
|
||||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
||||
|
||||
|
||||
#ifndef _FOLDER_BROWSER_H_
|
||||
#define _FOLDER_BROWSER_H_
|
||||
|
||||
#include <gtk/gtktable.h>
|
||||
#include "camel/camel-stream.h"
|
||||
#include <bonobo/bonobo-property-bag.h>
|
||||
#include <bonobo/bonobo-ui-component.h>
|
||||
#include <widgets/misc/e-filter-bar.h>
|
||||
#include "widgets/menus/gal-view-menus.h"
|
||||
#include "filter/filter-rule.h"
|
||||
#include "filter/filter-context.h" /*eek*/
|
||||
#include "message-list.h"
|
||||
#include "mail-display.h"
|
||||
#include "mail-types.h"
|
||||
#include "shell/Evolution.h"
|
||||
|
||||
#define FOLDER_BROWSER_TYPE (folder_browser_get_type ())
|
||||
#define FOLDER_BROWSER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), FOLDER_BROWSER_TYPE, FolderBrowser))
|
||||
#define FOLDER_BROWSER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), FOLDER_BROWSER_TYPE, FolderBrowserClass))
|
||||
#define IS_FOLDER_BROWSER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), FOLDER_BROWSER_TYPE))
|
||||
#define IS_FOLDER_BROWSER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), FOLDER_BROWSER_TYPE))
|
||||
|
||||
#define FB_DEFAULT_CHARSET _("Default")
|
||||
|
||||
#define FOLDER_BROWSER_IS_DESTROYED(fb) (!fb || !fb->message_list || !fb->mail_display || !fb->folder)
|
||||
|
||||
typedef enum _FolderBrowserSelectionState {
|
||||
FB_SELSTATE_NONE,
|
||||
FB_SELSTATE_SINGLE,
|
||||
FB_SELSTATE_MULTIPLE,
|
||||
FB_SELSTATE_UNDEFINED
|
||||
} FolderBrowserSelectionState;
|
||||
|
||||
struct _FolderBrowser {
|
||||
GtkTable parent;
|
||||
|
||||
BonoboPropertyBag *properties;
|
||||
|
||||
GNOME_Evolution_ShellView shell_view;
|
||||
|
||||
BonoboUIComponent *uicomp;
|
||||
|
||||
/*
|
||||
* The current URI being displayed by the FolderBrowser
|
||||
*/
|
||||
char *uri;
|
||||
CamelFolder *folder;
|
||||
int unread_count; /* last known unread message count */
|
||||
|
||||
/* async loading stuff */
|
||||
char *loading_uid; /* what uid am i loading now */
|
||||
char *pending_uid; /* what uid should i load next */
|
||||
char *new_uid; /* place to save the next uid during idle timeout */
|
||||
char *loaded_uid; /* what we have loaded */
|
||||
guint loading_id;
|
||||
guint seen_id;
|
||||
|
||||
gulong paned_resize_id;
|
||||
|
||||
/* a folder we are expunging, dont use other than to compare the pointer value */
|
||||
CamelFolder *expunging;
|
||||
int expunge_mlfocussed; /* true if the ml was focussed before we expunged */
|
||||
|
||||
MessageList *message_list;
|
||||
MailDisplay *mail_display;
|
||||
GtkWidget *vpaned;
|
||||
|
||||
EFilterBar *search;
|
||||
FilterRule *search_full; /* if we have a full search active */
|
||||
|
||||
struct _EMeta *meta; /* various per-folder meta-data */
|
||||
|
||||
guint32 preview_shown : 1;
|
||||
guint32 threaded : 1;
|
||||
guint32 pref_master : 1;
|
||||
|
||||
FolderBrowserSelectionState selection_state;
|
||||
GSList *sensitize_changes;
|
||||
GHashTable *sensitise_state; /* the last sent sensitise state, to avoid much bonobo overhead */
|
||||
int sensitize_timeout_id;
|
||||
int update_status_bar_idle_id;
|
||||
|
||||
/* View instance and the menu handler object */
|
||||
GalViewInstance *view_instance;
|
||||
GalViewMenus *view_menus;
|
||||
|
||||
GtkWidget *invisible;
|
||||
GByteArray *clipboard_selection;
|
||||
|
||||
/* for async events */
|
||||
struct _MailAsyncEvent *async_event;
|
||||
|
||||
int get_id; /* for getting folder op */
|
||||
|
||||
/* info used by popup for filter/vfolder */
|
||||
struct _popup_filter_data *popup;
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
GtkTableClass parent_class;
|
||||
|
||||
/* signals */
|
||||
void (*folder_loaded) (FolderBrowser *fb, const char *uri);
|
||||
void (*message_loaded) (FolderBrowser *fb, const char *uid);
|
||||
} FolderBrowserClass;
|
||||
|
||||
struct fb_ondemand_closure {
|
||||
FilterRule *rule;
|
||||
FolderBrowser *fb;
|
||||
gchar *path;
|
||||
};
|
||||
|
||||
GtkType folder_browser_get_type (void);
|
||||
GtkWidget *folder_browser_new (const char *uri);
|
||||
|
||||
void folder_browser_set_folder (FolderBrowser *fb, CamelFolder *folder, const char *uri);
|
||||
|
||||
void folder_browser_set_ui_component (FolderBrowser *fb, BonoboUIComponent *uicomp);
|
||||
void folder_browser_set_shell_view (FolderBrowser *fb, GNOME_Evolution_ShellView shell_view);
|
||||
|
||||
void folder_browser_set_message_preview (FolderBrowser *folder_browser,
|
||||
gboolean show_message_preview);
|
||||
void folder_browser_clear_search (FolderBrowser *fb);
|
||||
|
||||
void folder_browser_cut (GtkWidget *widget, FolderBrowser *fb);
|
||||
void folder_browser_copy (GtkWidget *widget, FolderBrowser *fb);
|
||||
void folder_browser_paste (GtkWidget *widget, FolderBrowser *fb);
|
||||
|
||||
void folder_browser_reload (FolderBrowser *fb);
|
||||
|
||||
/* callbacks for functions on the folder-browser */
|
||||
void vfolder_subject (GtkWidget *w, FolderBrowser *fb);
|
||||
void vfolder_sender (GtkWidget *w, FolderBrowser *fb);
|
||||
void vfolder_recipient (GtkWidget *w, FolderBrowser *fb);
|
||||
void vfolder_mlist (GtkWidget *w, FolderBrowser *fb);
|
||||
|
||||
void filter_subject (GtkWidget *w, FolderBrowser *fb);
|
||||
void filter_sender (GtkWidget *w, FolderBrowser *fb);
|
||||
void filter_recipient (GtkWidget *w, FolderBrowser *fb);
|
||||
void filter_mlist (GtkWidget *w, FolderBrowser *fb);
|
||||
|
||||
void hide_read(GtkWidget *w, FolderBrowser *fb);
|
||||
void hide_deleted(GtkWidget *w, FolderBrowser *fb);
|
||||
void hide_selected(GtkWidget *w, FolderBrowser *fb);
|
||||
void hide_none(GtkWidget *w, FolderBrowser *fb);
|
||||
void hide_subject(GtkWidget *w, FolderBrowser *fb);
|
||||
void hide_sender(GtkWidget *w, FolderBrowser *fb);
|
||||
|
||||
void folder_browser_toggle_preview (BonoboUIComponent *component,
|
||||
const char *path,
|
||||
Bonobo_UIComponent_EventType type,
|
||||
const char *state,
|
||||
gpointer user_data);
|
||||
|
||||
void folder_browser_toggle_threads (BonoboUIComponent *component,
|
||||
const char *path,
|
||||
Bonobo_UIComponent_EventType type,
|
||||
const char *state,
|
||||
gpointer user_data);
|
||||
|
||||
void folder_browser_toggle_hide_deleted (BonoboUIComponent *component,
|
||||
const char *path,
|
||||
Bonobo_UIComponent_EventType type,
|
||||
const char *state,
|
||||
gpointer user_data);
|
||||
|
||||
void folder_browser_toggle_caret_mode (BonoboUIComponent *component,
|
||||
const char *path,
|
||||
Bonobo_UIComponent_EventType type,
|
||||
const char *state,
|
||||
gpointer user_data);
|
||||
|
||||
void folder_browser_set_message_display_style (BonoboUIComponent *component,
|
||||
const char *path,
|
||||
Bonobo_UIComponent_EventType type,
|
||||
const char *state,
|
||||
gpointer user_data);
|
||||
|
||||
void folder_browser_charset_changed (BonoboUIComponent *component,
|
||||
const char *path,
|
||||
Bonobo_UIComponent_EventType type,
|
||||
const char *state,
|
||||
gpointer user_data);
|
||||
|
||||
gboolean folder_browser_is_drafts (FolderBrowser *fb);
|
||||
gboolean folder_browser_is_sent (FolderBrowser *fb);
|
||||
gboolean folder_browser_is_outbox (FolderBrowser *fb);
|
||||
|
||||
#endif /* _FOLDER_BROWSER_H_ */
|
Reference in New Issue
Block a user