/** * @file cap.cc * @copyright (C) 2001-2006 Marcus Bjurman\n * @copyright (C) 2007-2012 Piotr Eljasiak\n * @copyright (C) 2013-2023 Uwe Scholz\n * * @copyright This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * @copyright 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. * * @copyright 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include "gnome-cmd-includes.h" #include "cap.h" #include "gnome-cmd-xfer.h" #include "gnome-cmd-file.h" #include "gnome-cmd-main-win.h" using namespace std; #define GNOME_CMD_CUTTED 1 #define GNOME_CMD_COPIED 2 static int _type = 0; static GList *_files = NULL; static GnomeCmdFileList *_fl = NULL; static void on_xfer_done (GList *files, gpointer data) { if (files != NULL) gnome_cmd_file_list_free (files); } inline void update_refs (GnomeCmdFileList *fl, GList *files) { if (_files != NULL) gnome_cmd_file_list_free (_files); _files = gnome_cmd_file_list_copy (files); _fl = fl; } inline void cut_and_paste (GnomeCmdDir *to) { gnome_cmd_move_start (_files, gnome_cmd_dir_ref (to), _fl, NULL, G_FILE_COPY_NONE, GNOME_CMD_CONFIRM_OVERWRITE_QUERY, GTK_SIGNAL_FUNC (on_xfer_done), _files); _files = NULL; _fl = NULL; main_win->set_cap_state(FALSE); } inline void copy_and_paste (GnomeCmdDir *to) { gnome_cmd_copy_start (_files, gnome_cmd_dir_ref (to), _fl, NULL, G_FILE_COPY_NONE, GNOME_CMD_CONFIRM_OVERWRITE_QUERY, GTK_SIGNAL_FUNC (on_xfer_done), _files); _files = NULL; _fl = NULL; main_win->set_cap_state(FALSE); } void cap_cut_files (GnomeCmdFileList *fl, GList *files) { update_refs (fl, files); _type = GNOME_CMD_CUTTED; main_win->set_cap_state(TRUE); } void cap_copy_files (GnomeCmdFileList *fl, GList *files) { update_refs (fl, files); _type = GNOME_CMD_COPIED; main_win->set_cap_state(TRUE); } void cap_paste_files (GnomeCmdDir *dir) { switch (_type) { case GNOME_CMD_CUTTED: cut_and_paste (dir); break; case GNOME_CMD_COPIED: copy_and_paste (dir); break; default: return; } }