mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
b7a0958278
- Use edelib::Window (fixes problem with titlebar icon and some cruft in main) - Store user preferences in edelib::Resource - Work better with edeneu icon theme, follow fdo icon-naming-spec - Expand . in directory path (e.g. when called from command line), show just last part of path in window title, full width status bar :) - Some fixes to ExpandableGroup usage, use EG by default - In fileops, don't update view manually when notify is available - Improve documentation of EDE_FileView.h - Temporary "Open with" callback for testing
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* $Id$
|
|
*
|
|
* EFiler - EDE File Manager
|
|
* Part of Equinox Desktop Environment (EDE).
|
|
* Copyright (c) 2000-2007 EDE Authors.
|
|
*
|
|
* This program is licenced under terms of the
|
|
* GNU General Public Licence version 2 or newer.
|
|
* See COPYING for details.
|
|
*/
|
|
|
|
// This file implements copy / move / delete operation with files
|
|
// NOT TO BE CONFUSED WITH edelib::File.h !!!
|
|
// Functions here usually call stuff from File.h, but also update
|
|
// efiler interface, display warnings to user etc.
|
|
|
|
#include "EDE_FileView.h"
|
|
#include <FL/Fl_Box.H>
|
|
#include <edelib/Window.h>
|
|
|
|
// Execute cut or copy operation when List View is active
|
|
void do_cut_copy(bool m_copy);
|
|
|
|
// Execute paste operation - this will copy or move files based on chosen
|
|
// operation
|
|
void do_paste(const char*to = 0);
|
|
|
|
// Delete currently selected file(s) or directory(es)
|
|
void do_delete();
|
|
|
|
// Rename the file that has focus to given name
|
|
void do_rename(const char*);
|
|
|
|
// Show part of path with filename - works for directories too
|
|
const char* my_filename_name(const char*);
|
|
|
|
|
|
// Stuff declared in global scope in efiler.cpp
|
|
extern FileView* view;
|
|
extern edelib::Window* win;
|
|
extern Fl_Box* statusbar;
|
|
extern char current_dir[];
|
|
extern void loaddir(const char*);
|
|
extern bool notify_available;
|