
2001-06-27 Peter Williams <peterw@ximian.com> * folder-browser-factory.c (control_deactivate): Change to use more reality-based API below. Include folder-browser-ui.h too. (control_activate): Remove now-unused 'int state'. * folder-browser-ui.h: Changed prototypes to match changes below. * folder-browser-ui.c (folder_browser_ui_rm_message): Commented out to reflect reality of how this stuff works (you can't actually remove the pieces). (folder_browser_ui_rm_global): Same. (folder_browser_ui_rm_list): Left because here we add the view menus. (folder_browser_ui_add_list): ... which were moved here. (folder_browser_ui_rm_all): New function, does the job of old ui_rm() svn path=/trunk/; revision=10531
24 lines
622 B
C
24 lines
622 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* folder-browser-ui.c: Sets up the Bonobo UI for FolderBrowsers
|
|
*
|
|
* Author:
|
|
* Peter Williams <peterw@ximian.com>
|
|
*
|
|
* (C) 2001 Ximian, Inc.
|
|
*/
|
|
|
|
#ifndef _FOLDER_BROWSER_UI_H
|
|
#define _FOLDER_BROWSER_UI_H
|
|
|
|
#include "folder-browser.h"
|
|
|
|
void folder_browser_ui_add_message (FolderBrowser *fb);
|
|
void folder_browser_ui_add_list (FolderBrowser *fb);
|
|
void folder_browser_ui_add_global (FolderBrowser *fb);
|
|
|
|
void folder_browser_ui_rm_list (FolderBrowser *fb);
|
|
void folder_browser_ui_rm_all (FolderBrowser *fb);
|
|
|
|
#endif /* _FOLDER_BROWSER_UI_H */
|