filemanager/main.cpp

128 lines
4.3 KiB
C++
Raw Normal View History

2021-03-16 00:02:20 -07:00
/*
* Copyright (C) 2021 CutefishOS Team.
*
2021-03-29 01:51:34 -07:00
* Author: revenmartin <revenmartin@gmail.com>
2021-03-16 00:02:20 -07:00
*
* 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 <QApplication>
2021-03-29 01:51:34 -07:00
#include <QCommandLineParser>
2021-03-16 00:02:20 -07:00
#include <QQmlApplicationEngine>
2021-03-30 21:45:51 -07:00
#include <QQmlContext>
2021-03-29 01:51:34 -07:00
2021-03-16 00:02:20 -07:00
#include <QTranslator>
#include <QLocale>
2021-03-29 01:51:34 -07:00
#include "model/placesmodel.h"
#include "model/foldermodel.h"
#include "model/pathbarmodel.h"
#include "model/positioner.h"
2021-03-29 01:51:34 -07:00
#include "widgets/rubberband.h"
#include "widgets/itemviewadapter.h"
2021-03-16 00:02:20 -07:00
#include "desktop/desktopsettings.h"
#include "desktop/desktopview.h"
2021-03-29 01:51:34 -07:00
#include "helper/thumbnailer.h"
2021-04-21 19:24:10 -07:00
#include "helper/datehelper.h"
2021-05-21 00:55:58 -07:00
#include "helper/fm.h"
2021-06-15 21:43:43 -07:00
#include "helper/shortcut.h"
2021-03-16 00:02:20 -07:00
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication app(argc, argv);
app.setOrganizationName("cutefishos");
// 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(app.instance());
if (translator->load(qmFilePath)) {
app.installTranslator(translator);
} else {
translator->deleteLater();
}
}
2021-03-29 01:51:34 -07:00
// Register QML Type.
const char *uri = "Cutefish.FileManager";
qmlRegisterType<PlacesModel>(uri, 1, 0, "PlacesModel");
qmlRegisterType<FolderModel>(uri, 1, 0, "FolderModel");
qmlRegisterType<PathBarModel>(uri, 1, 0, "PathBarModel");
qmlRegisterType<Positioner>(uri, 1, 0, "Positioner");
2021-03-29 01:51:34 -07:00
qmlRegisterType<RubberBand>(uri, 1, 0, "RubberBand");
qmlRegisterType<ItemViewAdapter>(uri, 1, 0, "ItemViewAdapter");
qmlRegisterType<DesktopSettings>(uri, 1, 0, "DesktopSettings");
2021-05-21 00:55:58 -07:00
qmlRegisterType<Fm>(uri, 1, 0, "Fm");
2021-06-15 21:43:43 -07:00
qmlRegisterType<ShortCut>(uri, 1, 0, "ShortCut");
2021-07-25 10:40:13 -07:00
// qmlRegisterAnonymousType<QAction>(uri, 1);
2021-03-29 01:51:34 -07:00
2021-03-16 00:02:20 -07:00
QCommandLineParser parser;
parser.setApplicationDescription(QStringLiteral("File Manager"));
parser.addHelpOption();
2021-03-30 21:45:51 -07:00
parser.addPositionalArgument("files", "Files", "[FILE1, FILE2,...]");
2021-03-16 00:02:20 -07:00
QCommandLineOption desktopOption(QStringList() << "d" << "desktop" << "Desktop Mode");
parser.addOption(desktopOption);
2021-05-21 00:55:58 -07:00
QCommandLineOption emptyTrashOption(QStringList() << "e" << "empty-trash" << "Empty Trash");
parser.addOption(emptyTrashOption);
2021-03-16 00:02:20 -07:00
parser.process(app);
if (parser.isSet(desktopOption)) {
2021-04-07 10:00:08 -07:00
app.setApplicationName("cutefish-desktop");
2021-03-16 00:02:20 -07:00
DesktopView view;
view.show();
return app.exec();
2021-05-21 00:55:58 -07:00
} else if (parser.isSet(emptyTrashOption)) {
// Empty Dialog
QQmlApplicationEngine engine;
const QUrl url(QStringLiteral("qrc:/qml/Dialogs/EmptyTrashDialog.qml"));
engine.load(url);
return app.exec();
2021-03-16 00:02:20 -07:00
}
QQmlApplicationEngine engine;
const QUrl url(QStringLiteral("qrc:/qml/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
2021-03-30 21:45:51 -07:00
// Handle urls
if (!parser.positionalArguments().isEmpty()) {
QStringList arguments = parser.positionalArguments();
2021-03-30 21:54:58 -07:00
QUrl url(arguments.first());
if (!url.isValid())
url = QUrl::fromLocalFile(arguments.first());
if (url.isValid())
engine.rootContext()->setContextProperty("arg", arguments.first());
else
engine.rootContext()->setContextProperty("arg", "");
} else {
engine.rootContext()->setContextProperty("arg", "");
2021-03-30 21:45:51 -07:00
}
2021-03-16 00:02:20 -07:00
engine.load(url);
2021-03-29 01:51:34 -07:00
engine.addImageProvider("thumbnailer", new Thumbnailer());
2021-03-16 00:02:20 -07:00
return app.exec();
}