finalcut/src/ffiledialog.cpp

835 lines
20 KiB
C++
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* ffiledialog.cpp - Widget FFileDialog (a file chooser dialog) *
* *
* This file is part of the Final Cut widget toolkit *
* *
* Copyright 2014-2019 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
2015-05-23 13:35:12 +02:00
2018-12-30 04:24:46 +01:00
#if defined(__CYGWIN__)
#undef __STRICT_ANSI__ // need for realpath and strdup
#include <strings.h> // need for strcasecmp
#endif
2017-09-11 03:06:02 +02:00
#include <vector>
#include "final/ffiledialog.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
2017-09-11 03:06:02 +02:00
// non-member functions
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
bool sortByName ( const FFileDialog::dir_entry& lhs
, const FFileDialog::dir_entry& rhs )
2015-05-23 13:35:12 +02:00
{
// lhs < rhs
return bool( strcasecmp(lhs.name, rhs.name) < 0 );
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool sortDirFirst ( const FFileDialog::dir_entry& lhs
, const FFileDialog::dir_entry& rhs )
2015-05-23 13:35:12 +02:00
{
// sort directories first
if ( lhs.directory && ! rhs.directory )
2015-05-23 13:35:12 +02:00
return true;
else
return false;
}
2019-01-12 09:11:22 +01:00
//----------------------------------------------------------------------
const FString fileChooser ( FWidget* parent
, const FString& dirname
, const FString& filter
, FFileDialog::DialogType type )
{
FString ret;
FString path = dirname;
FString file_filter = filter;
if ( path.isNull() || path.isEmpty() )
{
path = FFileDialog::getHomeDir();
if ( path.isNull() || path.isEmpty() )
path = FString("/");
}
if ( file_filter.isNull() || file_filter.isEmpty() )
file_filter = FString("*");
FFileDialog fileopen ( path
, file_filter
, type
, parent );
if ( fileopen.exec() == FDialog::Accept )
ret = fileopen.getPath() + fileopen.getSelectedFile();
else
ret = FString();
return ret;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FFileDialog
//----------------------------------------------------------------------
// constructors and destructor
//----------------------------------------------------------------------
FFileDialog::FFileDialog (FWidget* parent)
2015-09-22 04:18:20 +02:00
: FDialog(parent)
2015-05-23 13:35:12 +02:00
{
init();
}
//----------------------------------------------------------------------
2015-09-22 04:18:20 +02:00
FFileDialog::FFileDialog (const FFileDialog& fdlg)
: FDialog(fdlg.getParentWidget())
2015-09-22 04:18:20 +02:00
{
if ( fdlg.directory )
setPath(fdlg.directory);
2015-09-22 04:18:20 +02:00
init();
}
//----------------------------------------------------------------------
FFileDialog::FFileDialog ( const FString& dirname
, const FString& filter
, DialogType type
, FWidget* parent )
: FDialog(parent)
, filter_pattern(filter)
, dlg_type(type)
2015-05-23 13:35:12 +02:00
{
2018-03-21 00:02:43 +01:00
if ( ! dirname.isNull() )
2015-05-23 13:35:12 +02:00
setPath(dirname);
2015-05-23 13:35:12 +02:00
init();
}
//----------------------------------------------------------------------
FFileDialog::~FFileDialog() // destructor
{
clear();
}
// public methods of FFileDialog
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
FFileDialog& FFileDialog::operator = (const FFileDialog& fdlg)
2015-05-23 13:35:12 +02:00
{
if ( &fdlg == this )
{
return *this;
}
else
{
clear();
2015-05-23 13:35:12 +02:00
if ( fdlg.getParentWidget() )
fdlg.getParentWidget()->addChild (this);
2015-05-23 13:35:12 +02:00
directory = fdlg.directory;
filter_pattern = fdlg.filter_pattern;
dlg_type = fdlg.dlg_type;
show_hidden = fdlg.show_hidden;
2015-05-23 13:35:12 +02:00
if ( directory )
setPath(directory);
2015-05-23 13:35:12 +02:00
init();
return *this;
}
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
const FString FFileDialog::getSelectedFile() const
{
uLong n = uLong(filebrowser.currentItem() - 1);
2015-05-23 13:35:12 +02:00
if ( dir_entries[n].directory )
return FString("");
2015-05-23 13:35:12 +02:00
else
return FString(dir_entries[n].name);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
void FFileDialog::setPath (const FString& dir)
2015-05-23 13:35:12 +02:00
{
2017-03-17 22:59:06 +01:00
const char* const dirname = dir.c_str();
char resolved_path[MAXPATHLEN];
FString r_dir;
struct stat sb;
2015-05-23 13:35:12 +02:00
if ( stat(dirname, &sb) != 0 )
2015-05-23 13:35:12 +02:00
{
directory = '/';
return;
2015-05-23 13:35:12 +02:00
}
if ( S_ISLNK(sb.st_mode) )
{
if ( lstat(dirname, &sb) != 0 )
{
directory = '/';
return;
}
}
if ( ! S_ISDIR(sb.st_mode) )
2015-05-23 13:35:12 +02:00
{
directory = '/';
return;
2015-05-23 13:35:12 +02:00
}
if ( realpath(dir.c_str(), resolved_path) != 0 )
r_dir = resolved_path;
2015-05-23 13:35:12 +02:00
else
r_dir = dir;
2015-05-23 13:35:12 +02:00
if ( r_dir[r_dir.getLength() - 1] != '/' )
directory = r_dir + "/";
2015-05-23 13:35:12 +02:00
else
directory = r_dir;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
void FFileDialog::setFilter (const FString& filter)
2015-05-23 13:35:12 +02:00
{
filter_pattern = filter;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2018-12-22 23:50:10 +01:00
bool FFileDialog::setShowHiddenFiles (bool enable)
{
2018-12-22 23:50:10 +01:00
if ( show_hidden == enable )
return show_hidden;
2015-05-23 13:35:12 +02:00
2018-12-22 23:50:10 +01:00
show_hidden = enable;
readDir();
filebrowser.redraw();
return show_hidden;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
void FFileDialog::onKeyPress (FKeyEvent* ev)
2015-05-23 13:35:12 +02:00
{
if ( ! isEnabled() )
return;
FDialog::onKeyPress (ev);
if ( ! filebrowser.hasFocus() )
return;
2018-11-21 20:07:08 +01:00
FKey key = ev->key();
switch ( key )
2015-05-23 13:35:12 +02:00
{
case fc::Fkey_erase:
case fc::Fkey_backspace:
changeDir("..");
ev->accept();
break;
2015-05-23 13:35:12 +02:00
default:
break;
2015-05-23 13:35:12 +02:00
}
}
//----------------------------------------------------------------------
2017-03-17 22:59:06 +01:00
const FString FFileDialog::fileOpenChooser ( FWidget* parent
, const FString& dirname
, const FString& filter )
2015-05-23 13:35:12 +02:00
{
2019-01-12 09:11:22 +01:00
return fileChooser (parent, dirname, filter, FFileDialog::Open);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
2017-03-17 22:59:06 +01:00
const FString FFileDialog::fileSaveChooser ( FWidget* parent
, const FString& dirname
, const FString& filter )
2015-05-23 13:35:12 +02:00
{
2019-01-12 09:11:22 +01:00
return fileChooser (parent, dirname, filter, FFileDialog::Save);
2015-05-23 13:35:12 +02:00
}
// protected methods of FFileDialog
//----------------------------------------------------------------------
void FFileDialog::adjustSize()
{
int X, Y;
std::size_t max_width;
std::size_t max_height;
std::size_t h;
auto root_widget = getRootWidget();
if ( root_widget )
{
max_width = root_widget->getClientWidth();
max_height = root_widget->getClientHeight();
}
else
{
// fallback to xterm default size
max_width = 80;
max_height = 24;
}
h = max_height - 6;
2015-05-23 13:35:12 +02:00
if ( h < 15 ) // minimum
h = 15;
2015-05-23 13:35:12 +02:00
if ( h > 30 ) // maximum
h = 30;
2015-05-23 13:35:12 +02:00
setHeight (h, false);
X = 1 + int((max_width - getWidth()) / 2);
Y = 1 + int((max_height - getHeight()) / 3);
setPos(FPoint(X, Y), false);
filebrowser.setHeight (h - 8, false);
hidden_check.setY (int(h) - 4, false);
cancel_btn.setY (int(h) - 4, false);
open_btn.setY (int(h) - 4, false);
2015-05-23 13:35:12 +02:00
FDialog::adjustSize();
printPath(directory);
}
// private methods of FFileDialog
2015-09-22 04:18:20 +02:00
//----------------------------------------------------------------------
void FFileDialog::init()
2015-09-22 04:18:20 +02:00
{
2018-12-26 23:41:49 +01:00
static constexpr std::size_t w = 42;
static constexpr std::size_t h = 15;
int x, y;
setGeometry(FPoint(1, 1), FSize(w, h), false);
auto parent_widget = getParentWidget();
if ( parent_widget )
{
x = 1 + int((parent_widget->getWidth() - w) / 2);
y = 1 + int((parent_widget->getHeight() - h) / 3);
}
2015-09-22 04:18:20 +02:00
else
x = y = 1;
if ( dlg_type == FFileDialog::Save )
FDialog::setText("Save file");
else
FDialog::setText("Open file");
widgetSettings (FPoint(x, y)); // Create widgets
initCallbacks();
setModal();
readDir();
}
//----------------------------------------------------------------------
inline void FFileDialog::widgetSettings (const FPoint& pos)
{
filename.setLabelText ("File&name");
filename.setText (filter_pattern);
filename.setGeometry (FPoint(11, 1), FSize(28, 1));
filename.setFocus();
2015-09-22 04:18:20 +02:00
filebrowser.setGeometry (FPoint(2, 3), FSize(38, 6));
printPath (directory);
2015-09-22 04:18:20 +02:00
hidden_check.setText ("&hidden files");
hidden_check.setGeometry (FPoint(2, 10), FSize(16, 1));
2015-05-23 13:35:12 +02:00
cancel_btn.setText ("&Cancel");
cancel_btn.setGeometry(FPoint(19, 10), FSize(9, 1));
2015-05-23 13:35:12 +02:00
if ( dlg_type == FFileDialog::Save )
open_btn.setText ("&Save");
else
open_btn.setText ("&Open");
2015-05-23 13:35:12 +02:00
open_btn.setGeometry(FPoint(30, 10), FSize(9, 1));
2019-01-27 22:19:33 +01:00
setGeometry (pos, getSize());
}
//----------------------------------------------------------------------
void FFileDialog::initCallbacks()
{
filename.addCallback
(
"activate",
F_METHOD_CALLBACK (this, &FFileDialog::cb_processActivate)
);
filebrowser.addCallback
(
"row-changed",
F_METHOD_CALLBACK (this, &FFileDialog::cb_processRowChanged)
);
2015-09-20 05:44:50 +02:00
filebrowser.addCallback
(
"clicked",
F_METHOD_CALLBACK (this, &FFileDialog::cb_processClicked)
);
hidden_check.addCallback
(
"toggled",
F_METHOD_CALLBACK (this, &FFileDialog::cb_processShowHidden)
);
cancel_btn.addCallback
(
"clicked",
F_METHOD_CALLBACK (this, &FFileDialog::cb_processCancel)
);
open_btn.addCallback
(
"clicked",
F_METHOD_CALLBACK (this, &FFileDialog::cb_processOpen)
);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
2017-03-17 22:59:06 +01:00
inline bool FFileDialog::pattern_match ( const char* const pattern
2017-12-19 02:06:27 +01:00
, char fname[] )
{
char search[128] = { };
if ( show_hidden && fname[0] == '.' && fname[1] != '\0' ) // hidden files
2015-05-23 13:35:12 +02:00
{
search[0] = '.';
search[1] = '\0';
2018-09-16 19:43:57 +02:00
std::strncat(search, pattern, sizeof(search) - std::strlen(search) - 1);
2015-05-23 13:35:12 +02:00
}
else
std::strncpy(search, pattern, sizeof(search));
search[sizeof(search) - 1] = '\0';
2015-05-23 13:35:12 +02:00
if ( fnmatch (search, fname, FNM_PERIOD) == 0 )
return true;
2015-05-23 13:35:12 +02:00
else
return false;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
void FFileDialog::clear()
2015-05-23 13:35:12 +02:00
{
if ( dir_entries.empty() )
return;
2015-05-23 13:35:12 +02:00
// delete all directory entries;
for (auto&& entry : dir_entries)
std::free (entry.name);
dir_entries.clear();
dir_entries.shrink_to_fit();
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
int FFileDialog::numOfDirs()
2015-05-23 13:35:12 +02:00
{
if ( dir_entries.empty() )
return 0;
int n = 0;
for (auto&& entry : dir_entries)
if ( entry.directory && std::strcmp(entry.name, ".") != 0 )
n++;
return n;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
void FFileDialog::sortDir()
{
int start, dir_num;
if ( std::strcmp((*dir_entries.begin()).name, "..") == 0 )
start = 1;
else
start = 0;
dir_num = numOfDirs();
// directories first
std::sort ( dir_entries.begin() + start
, dir_entries.end()
, sortDirFirst );
// sort directories by name
std::sort ( dir_entries.begin() + start
, dir_entries.begin() + dir_num
, sortByName );
// sort files by name
std::sort ( dir_entries.begin() + dir_num
, dir_entries.end()
, sortByName );
}
//----------------------------------------------------------------------
int FFileDialog::readDir()
{
const char* const dir = directory.c_str();
directory_stream = opendir(dir);
if ( ! directory_stream )
{
FMessageBox::error (this, "Can't open directory\n" + directory);
return -1;
}
clear();
while ( true )
{
errno = 0;
struct dirent* next = readdir(directory_stream);
if ( next )
{
// Continue if name = "." (current directory)
if ( next->d_name[0] == '.' && next->d_name[1] == '\0' )
continue;
// Skip hidden entries
if ( ! show_hidden
&& next->d_name[0] == '.'
&& next->d_name[1] != '\0'
&& next->d_name[1] != '.' )
continue;
// Skip ".." for the root directory
if ( dir[0] == '/' && dir[1] == '\0'
&& std::strcmp(next->d_name, "..") == 0 )
continue;
getEntry(dir, next);
}
else if ( errno != 0 )
{
FMessageBox::error (this, "Reading directory\n" + directory);
if ( errno == EOVERFLOW ) // Value too large to be stored in data type
break;
}
else
break;
} // end while
if ( closedir(directory_stream) != 0 )
{
FMessageBox::error (this, "Closing directory\n" + directory);
return -2;
}
sortDir();
// Insert directory entries into the list
dirEntriesToList();
return 0;
}
//----------------------------------------------------------------------
void FFileDialog::getEntry (const char* const dir, struct dirent* d_entry)
{
const char* const filter = filter_pattern.c_str();
dir_entry entry;
entry.name = strdup(d_entry->d_name);
#if defined _DIRENT_HAVE_D_TYPE || defined HAVE_STRUCT_DIRENT_D_TYPE
entry.fifo = (d_entry->d_type & DT_FIFO) == DT_FIFO;
entry.character_device = (d_entry->d_type & DT_CHR ) == DT_CHR;
entry.directory = (d_entry->d_type & DT_DIR ) == DT_DIR;
entry.block_device = (d_entry->d_type & DT_BLK ) == DT_BLK;
entry.regular_file = (d_entry->d_type & DT_REG ) == DT_REG;
entry.symbolic_link = (d_entry->d_type & DT_LNK ) == DT_LNK;
entry.socket = (d_entry->d_type & DT_SOCK) == DT_SOCK;
#else
struct stat s;
stat (entry.name, &s);
entry.fifo = S_ISFIFO (s.st_mode);
entry.character_device = S_ISCHR (s.st_mode);
entry.directory = S_ISDIR (s.st_mode);
entry.block_device = S_ISBLK (s.st_mode);
entry.regular_file = S_ISREG (s.st_mode);
entry.symbolic_link = S_ISLNK (s.st_mode);
entry.socket = S_ISSOCK (s.st_mode);
#endif
followSymLink (dir, entry);
if ( entry.directory )
dir_entries.push_back (entry);
else if ( pattern_match(filter, entry.name) )
dir_entries.push_back (entry);
else
std::free(entry.name);
}
//----------------------------------------------------------------------
void FFileDialog::followSymLink (const char* const dir, dir_entry& entry)
{
if ( ! entry.symbolic_link )
return; // No symbolic link
char resolved_path[MAXPATHLEN] = { };
char symLink[MAXPATHLEN] = { };
struct stat sb;
std::strncpy (symLink, dir, sizeof(symLink));
symLink[sizeof(symLink) - 1] = '\0';
std::strncat ( symLink
, entry.name
2018-09-16 19:43:57 +02:00
, sizeof(symLink) - std::strlen(symLink) - 1);
symLink[sizeof(symLink) - 1] = '\0';
if ( realpath(symLink, resolved_path) == 0 )
return; // Cannot follow the symlink
if ( lstat(resolved_path, &sb) == -1 )
return; // Cannot get file status
if ( S_ISDIR(sb.st_mode) )
entry.directory = true;
}
//----------------------------------------------------------------------
void FFileDialog::dirEntriesToList()
{
// Fill list with directory entries
filebrowser.clear();
if ( dir_entries.empty() )
return;
for (auto&& entry : dir_entries)
{
if ( entry.directory )
filebrowser.insert(FString(entry.name), fc::SquareBrackets);
else
filebrowser.insert(FString(entry.name));
}
}
//----------------------------------------------------------------------
void FFileDialog::selectDirectoryEntry (const char* const name)
{
if ( dir_entries.empty() )
return;
std::size_t i = 1;
for (auto&& entry : dir_entries)
{
if ( std::strcmp(entry.name, name) == 0 )
{
filebrowser.setCurrentItem(i);
filename.setText(FString(name) + '/');
break;
}
i++;
}
}
//----------------------------------------------------------------------
int FFileDialog::changeDir (const FString& dirname)
{
FString lastdir = directory;
FString newdir = dirname;
if ( newdir.includes('~') )
newdir = newdir.replace('~', getHomeDir());
if ( newdir[0] == '/' )
setPath(newdir);
else
setPath(directory + newdir);
switch ( readDir() )
{
case -1:
setPath(lastdir);
return -1;
case -2:
setPath(lastdir);
readDir();
return -2;
2015-05-23 13:35:12 +02:00
case 0:
if ( newdir == FString("..") )
2015-05-23 13:35:12 +02:00
{
if ( lastdir == FString('/') )
filename.setText('/');
else
2015-05-23 13:35:12 +02:00
{
auto baseName = basename(C_STR(lastdir.c_str()));
selectDirectoryEntry (baseName);
2015-05-23 13:35:12 +02:00
}
}
else
{
FString firstname = dir_entries[0].name;
if ( dir_entries[0].directory )
filename.setText(firstname + '/');
else
filename.setText(firstname);
}
printPath(directory);
filename.redraw();
filebrowser.redraw();
2017-08-11 10:50:39 +02:00
// fall through
default:
return 0;
2015-05-23 13:35:12 +02:00
}
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
void FFileDialog::printPath (const FString& txt)
{
2018-12-26 23:41:49 +01:00
const auto& path = txt;
const uInt max_width = uInt(filebrowser.getWidth()) - 4;
2015-05-23 13:35:12 +02:00
if ( path.getLength() > max_width )
filebrowser.setText(".." + path.right(max_width - 2));
else
filebrowser.setText(path);
}
//----------------------------------------------------------------------
const FString FFileDialog::getHomeDir()
{
struct passwd pwd;
struct passwd* pwd_ptr;
char buf[1024];
if ( getpwuid_r (geteuid(), &pwd, buf, sizeof(buf), &pwd_ptr) )
return FString("");
else
return FString(pwd.pw_dir);
}
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
void FFileDialog::cb_processActivate (FWidget*, FDataPtr)
{
if ( filename.getText().includes('*')
|| filename.getText().includes('?') )
2015-05-23 13:35:12 +02:00
{
setFilter(filename.getText());
readDir();
filebrowser.redraw();
}
else if ( filename.getText().getLength() == 0 )
{
setFilter("*");
readDir();
filebrowser.redraw();
}
else if ( filename.getText().trim() == FString("..")
|| filename.getText().includes('/')
|| filename.getText().includes('~') )
{
changeDir(filename.getText().trim());
}
else
{
bool found = false;
2015-05-23 13:35:12 +02:00
if ( ! dir_entries.empty() )
2015-05-23 13:35:12 +02:00
{
2018-12-26 23:41:49 +01:00
const auto& input = filename.getText().trim();
for (auto&& entry : dir_entries)
{
if ( entry.name && input && ! input.isNull()
&& std::strcmp(entry.name, input) == 0
&& entry.directory )
{
found = true;
changeDir(input);
break;
}
}
}
2015-05-23 13:35:12 +02:00
if ( ! found )
done (FDialog::Accept);
}
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
void FFileDialog::cb_processRowChanged (FWidget*, FDataPtr)
2015-05-23 13:35:12 +02:00
{
const std::size_t n = filebrowser.currentItem();
if ( n == 0 )
return;
const auto& name = FString(dir_entries[n - 1].name);
if ( dir_entries[n - 1].directory )
filename.setText( name + '/' );
2015-05-23 13:35:12 +02:00
else
filename.setText( name );
2015-09-22 04:18:20 +02:00
filename.redraw();
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
void FFileDialog::cb_processClicked (FWidget*, FDataPtr)
2015-05-23 13:35:12 +02:00
{
const uLong n = uLong(filebrowser.currentItem() - 1);
if ( dir_entries[n].directory )
changeDir(dir_entries[n].name);
else
done (FDialog::Accept);
}
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
void FFileDialog::cb_processCancel (FWidget*, FDataPtr)
{
done (FDialog::Reject);
}
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
void FFileDialog::cb_processOpen (FWidget*, FDataPtr)
{
done (FDialog::Accept);
}
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
void FFileDialog::cb_processShowHidden (FWidget*, FDataPtr)
{
2018-11-20 21:11:04 +01:00
setShowHiddenFiles(! show_hidden);
2015-05-23 13:35:12 +02:00
}
} // namespace finalcut