1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ |
---|
2 | /* e-shell-folder-commands.h |
---|
3 | * |
---|
4 | * Copyright (C) 2001 Ximian, Inc. |
---|
5 | * |
---|
6 | * This program is free software; you can redistribute it and/or |
---|
7 | * modify it under the terms of version 2 of the GNU General Public |
---|
8 | * License as published by the Free Software Foundation. |
---|
9 | * |
---|
10 | * This program is distributed in the hope that it will be useful, |
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
13 | * General Public License for more details. |
---|
14 | * |
---|
15 | * You should have received a copy of the GNU General Public |
---|
16 | * License along with this program; if not, write to the |
---|
17 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
18 | * Boston, MA 02111-1307, USA. |
---|
19 | * |
---|
20 | * Author: Ettore Perazzoli |
---|
21 | */ |
---|
22 | |
---|
23 | #ifndef E_SHELL_FOLDER_COMMANDS_H |
---|
24 | #define E_SHELL_FOLDER_COMMANDS_H |
---|
25 | |
---|
26 | #include "e-shell.h" |
---|
27 | #include "e-shell-view.h" |
---|
28 | |
---|
29 | void e_shell_command_open_folder_in_other_window (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
30 | |
---|
31 | void e_shell_command_create_new_folder (EShell *shell, EShellView *shell_view, const char *parent_folder_path); |
---|
32 | |
---|
33 | void e_shell_command_copy_folder (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
34 | void e_shell_command_move_folder (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
35 | void e_shell_command_delete_folder (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
36 | void e_shell_command_rename_folder (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
37 | |
---|
38 | void e_shell_command_remove_shared_folder (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
39 | |
---|
40 | void e_shell_command_add_to_shortcut_bar (EShell *shell, EShellView *shell_view, const char *folder_path); |
---|
41 | |
---|
42 | #endif |
---|