filemanager/application.cpp

183 lines
5.1 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: Reion Wong <reion@cutefishos.com>
*
* 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 3 of the License, or
* any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "application.h"
#include "dbusinterface.h"
#include "window.h"
#include "desktop/desktop.h"
#include "thumbnailer/thumbnailprovider.h"
#include "filemanageradaptor.h"
#include <QCommandLineParser>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QDBusConnection>
#include <QPixmapCache>
#include <QTranslator>
2021-09-26 07:01:24 -07:00
#include <QFileInfo>
#include <QIcon>
#include <QDir>
2021-12-26 00:57:41 -08:00
// KIO
#include <KIO/CopyJob>
#include <KIO/Job>
#include <KIO/PreviewJob>
#include <KIO/DeleteJob>
#include <KIO/DropJob>
#include <KIO/FileUndoManager>
#include <KIO/JobUiDelegate>
#include <KIO/Paste>
#include <KIO/PasteJob>
#include <KIO/RestoreJob>
Application::Application(int& argc, char** argv)
: QApplication(argc, argv)
, m_instance(false)
{
if (QDBusConnection::sessionBus().registerService("com.cutefish.FileManager")) {
setOrganizationName("cutefishos");
setWindowIcon(QIcon::fromTheme("file-manager"));
new FileManagerAdaptor(this);
new DBusInterface;
QDBusConnection::sessionBus().registerObject("/FileManager", this);
// Translations
QLocale locale;
QString qmFilePath = QString("%1/%2.qm").arg("/usr/share/cutefish-filemanager/translations/").arg(locale.name());
if (QFile::exists(qmFilePath)) {
QTranslator *translator = new QTranslator(this);
if (translator->load(qmFilePath)) {
installTranslator(translator);
} else {
translator->deleteLater();
}
}
m_instance = true;
}
}
int Application::run()
{
if (!parseCommandLineArgs())
return 0;
return QApplication::exec();
}
void Application::openFiles(const QStringList &paths)
{
for (const QString &path : paths) {
openWindow(path);
}
}
2021-12-26 00:57:41 -08:00
void Application::moveToTrash(const QStringList &paths)
{
if (paths.isEmpty())
return;
QList<QUrl> urls;
for (const QString &path : paths) {
urls.append(QUrl::fromLocalFile(path));
}
KIO::Job *job = KIO::trash(urls);
job->uiDelegate()->setAutoErrorHandlingEnabled(true);
KIO::FileUndoManager::self()->recordJob(KIO::FileUndoManager::Trash, urls, QUrl(QStringLiteral("trash:/")), job);
}
void Application::emptyTrash()
{
Window *w = new Window;
w->load(QUrl("qrc:/qml/Dialogs/EmptyTrashDialog.qml"));
}
void Application::openWindow(const QString &path)
{
Window *w = new Window;
w->rootContext()->setContextProperty("arg", path);
w->addImageProvider("thumbnailer", new ThumbnailProvider());
w->load(QUrl("qrc:/qml/main.qml"));
}
2021-09-26 07:01:24 -07:00
QStringList Application::formatUriList(const QStringList &list)
{
2021-12-22 19:26:03 -08:00
QStringList val;
2021-09-26 07:01:24 -07:00
2021-12-22 19:26:03 -08:00
for (const QString &path : list) {
val.append(path == "." ? QDir::currentPath() : path);
}
if (val.isEmpty()) {
2021-09-26 07:01:24 -07:00
val.append(QDir::currentPath());
}
return val;
}
bool Application::parseCommandLineArgs()
{
QCommandLineParser parser;
parser.setApplicationDescription(QStringLiteral("File Manager"));
parser.addHelpOption();
parser.addPositionalArgument("files", "Files", "[FILE1, FILE2,...]");
QCommandLineOption desktopOption(QStringList() << "d" << "desktop" << "Desktop Mode");
parser.addOption(desktopOption);
QCommandLineOption emptyTrashOption(QStringList() << "e" << "empty-trash" << "Empty Trash");
parser.addOption(emptyTrashOption);
2021-12-26 00:57:41 -08:00
QCommandLineOption moveToTrashOption(QStringList() << "mtr" << "move-to-trash" << "Move To Trash");
parser.addOption(moveToTrashOption);
parser.process(arguments());
if (m_instance) {
QPixmapCache::setCacheLimit(2048);
if (parser.isSet(desktopOption)) {
Desktop desktop;
} else {
2021-09-26 07:01:24 -07:00
openFiles(formatUriList(parser.positionalArguments()));
}
} else {
QDBusInterface iface("com.cutefish.FileManager",
"/FileManager",
"com.cutefish.FileManager",
QDBusConnection::sessionBus(), this);
if (parser.isSet(emptyTrashOption)) {
// Empty Dialog
iface.call("emptyTrash");
2021-12-26 00:57:41 -08:00
} else if (parser.isSet(moveToTrashOption)) {
iface.call("moveToTrash", parser.positionalArguments());
} else {
2021-09-26 07:01:24 -07:00
iface.call("openFiles", formatUriList(parser.positionalArguments()));
}
}
return m_instance;
}