
2002-07-10 Not Zed <NotZed@Ximian.com> ** fixes for #10781 * mail-callbacks.c (filter_edit): Add back a cancel button. We dont need to do anything special to 'undo' here, as the rules are loaded every time they're used. * mail-vfolder.c (vfolder_editor_clicked): If ok wans't clicked, revert the ruleset. (vfolder_editor_destroy): Fake a button of -1 if we get destroyed with no click. (context_rule_removed): Unref the folder after we delete it. If we're the last ref to the folder, unrefing it means it no longer exist,s which means no delte processing occurs ... svn path=/trunk/; revision=17449
26 lines
727 B
C
26 lines
727 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* folder-browser-factory.c: A Bonobo Control factory for Folder Browsers
|
|
*
|
|
* Author:
|
|
* Miguel de Icaza (miguel@ximian.com)
|
|
*
|
|
* (C) 2000 Ximian, Inc.
|
|
*/
|
|
|
|
#ifndef _FOLDER_BROWSER_FACTORY_H
|
|
#define _FOLDER_BROWSER_FACTORY_H
|
|
|
|
#include <bonobo/bonobo-control.h>
|
|
#include "Evolution.h"
|
|
#include "e-util/e-list.h"
|
|
#include "folder-browser.h"
|
|
|
|
BonoboControl *folder_browser_factory_new_control (const char *uri,
|
|
const GNOME_Evolution_Shell shell);
|
|
EList *folder_browser_factory_get_control_list (void);
|
|
|
|
FolderBrowser *folder_browser_factory_get_browser(const char *uri);
|
|
|
|
#endif /* _FOLDER_BROWSER_FACTORY_H */
|