2023-01-04 17:28:07 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022, KylinSoft Co., Ltd.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDateTime>
|
2023-01-17 10:53:00 +08:00
|
|
|
#include <QDBusReply>
|
|
|
|
#include <gio/gdesktopappinfo.h>
|
|
|
|
#include <QDesktopServices>
|
2023-03-16 14:14:16 +08:00
|
|
|
#include <QMenu>
|
2023-04-09 11:22:39 +08:00
|
|
|
#include <QDir>
|
|
|
|
#include <QTranslator>
|
|
|
|
#include <QCoreApplication>
|
2023-05-31 15:47:11 +08:00
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QThread>
|
|
|
|
#include <QAbstractListModel>
|
2023-01-04 17:28:07 +08:00
|
|
|
|
|
|
|
#include "recent-file-extension.h"
|
|
|
|
|
2023-03-16 14:14:16 +08:00
|
|
|
#define KYLIN_APP_MANAGER_NAME "com.kylin.AppManager"
|
|
|
|
#define KYLIN_APP_MANAGER_PATH "/com/kylin/AppManager"
|
|
|
|
#define KYLIN_APP_MANAGER_INTERFACE "com.kylin.AppManager"
|
|
|
|
#define FREEDESKTOP_FILEMANAGER_NAME "org.freedesktop.FileManager1"
|
|
|
|
#define FREEDESKTOP_FILEMANAGER_PATH "/org/freedesktop/FileManager1"
|
|
|
|
#define FREEDESKTOP_FILEMANAGER_INTERFACE "org.freedesktop.FileManager1"
|
2023-01-17 10:53:00 +08:00
|
|
|
|
2023-01-04 17:28:07 +08:00
|
|
|
namespace UkuiMenu {
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
class RecentFileProvider : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit RecentFileProvider(QObject *parent = nullptr);
|
|
|
|
void dataProcess(QVector<RecentFile> &recentFiles);
|
|
|
|
|
|
|
|
public Q_SLOT:
|
|
|
|
void getRecentData();
|
|
|
|
void openFileByGFile(const QString &fileUrl);
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void dataLoadCompleted(QVector<RecentFile> recentFiles);
|
|
|
|
};
|
|
|
|
|
|
|
|
class RecentFilesModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum RoleMessage
|
|
|
|
{
|
|
|
|
UriRole = Qt::UserRole,
|
|
|
|
NameRole = Qt::UserRole + 1,
|
|
|
|
IconRole = Qt::UserRole + 2,
|
2023-06-06 09:22:29 +08:00
|
|
|
PathRole = Qt::UserRole + 3
|
2023-05-31 15:47:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
explicit RecentFilesModel(QObject *parent = nullptr);
|
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
QString getInfoId(const int &index);
|
|
|
|
QStringList getAllInfoId();
|
|
|
|
Q_INVOKABLE void updateData();
|
|
|
|
|
|
|
|
public Q_SLOT:
|
|
|
|
void updateRecentFiles(QVector<RecentFile> recentFiles);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QVector<RecentFile> m_recentFileData;
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void updateRecentData();
|
|
|
|
};
|
|
|
|
|
2023-01-04 17:28:07 +08:00
|
|
|
// GVFS 最近文件获取工具
|
|
|
|
class GVFSRecentFileData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static int s_queryFileNum;
|
2023-03-16 14:14:16 +08:00
|
|
|
static GFile *s_recentFileRootDir;
|
|
|
|
static GFileMonitor *s_recentFileMonitor;
|
2023-01-17 10:53:00 +08:00
|
|
|
static void loadRecentFileASync(RecentFileProvider *p_recentFileProvider);
|
2023-03-16 14:14:16 +08:00
|
|
|
static void fileMonitor(RecentFileProvider *p_recentFileProvider);
|
|
|
|
static void removeRecentFileByInfoId(const QString &infoId);
|
2023-01-04 17:28:07 +08:00
|
|
|
|
|
|
|
private:
|
2023-01-17 10:53:00 +08:00
|
|
|
static GAsyncReadyCallback enumerateFinish(GFile *file, GAsyncResult *res, RecentFileProvider *p_recentFileProvider);
|
|
|
|
static GAsyncReadyCallback parseRecentFiles(GFileEnumerator *enumerator, GAsyncResult *res, RecentFileProvider *p_recentFileProvider);
|
2023-03-16 14:14:16 +08:00
|
|
|
static void fileChangedCallback(GFileMonitor *monitor,
|
|
|
|
GFile *file,
|
|
|
|
GFile *other_file,
|
|
|
|
GFileMonitorEvent event_type,
|
|
|
|
RecentFileProvider *p_recentFileProvider);
|
2023-01-04 17:28:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int GVFSRecentFileData::s_queryFileNum = 100;
|
|
|
|
GFile *GVFSRecentFileData::s_recentFileRootDir = g_file_new_for_uri("recent:///");
|
2023-03-16 14:14:16 +08:00
|
|
|
GFileMonitor *GVFSRecentFileData::s_recentFileMonitor = nullptr;
|
|
|
|
|
|
|
|
void GVFSRecentFileData::fileMonitor(RecentFileProvider *p_recentFileProvider)
|
|
|
|
{
|
|
|
|
GError *error = nullptr;
|
|
|
|
s_recentFileMonitor = g_file_monitor_directory(GVFSRecentFileData::s_recentFileRootDir,
|
2023-05-31 15:47:11 +08:00
|
|
|
G_FILE_MONITOR_NONE,
|
|
|
|
nullptr,
|
|
|
|
&error);
|
2023-03-16 14:14:16 +08:00
|
|
|
|
|
|
|
if (error) {
|
|
|
|
qWarning() << "recentFile monitor creat error";
|
|
|
|
g_error_free(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_signal_connect(s_recentFileMonitor, "changed", G_CALLBACK(fileChangedCallback), p_recentFileProvider);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GVFSRecentFileData::fileChangedCallback(GFileMonitor *monitor,
|
|
|
|
GFile *file,
|
|
|
|
GFile *other_file,
|
|
|
|
GFileMonitorEvent event_type,
|
|
|
|
RecentFileProvider *p_recentFileProvider)
|
|
|
|
{
|
|
|
|
Q_UNUSED(monitor);
|
|
|
|
Q_UNUSED(file);
|
|
|
|
Q_UNUSED(other_file);
|
|
|
|
|
|
|
|
switch (event_type) {
|
|
|
|
case G_FILE_MONITOR_EVENT_DELETED:
|
|
|
|
case G_FILE_MONITOR_EVENT_CREATED: {
|
|
|
|
loadRecentFileASync(p_recentFileProvider);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GVFSRecentFileData::removeRecentFileByInfoId(const QString &infoId)
|
|
|
|
{
|
|
|
|
GFile *file = g_file_new_for_uri(infoId.toUtf8().constData());
|
|
|
|
GError *err = nullptr;
|
|
|
|
|
|
|
|
g_file_delete(file, nullptr, &err);
|
|
|
|
|
|
|
|
g_object_unref(file);
|
|
|
|
if (err) {
|
|
|
|
qWarning() << "Recentfile Delete Error";
|
|
|
|
}
|
|
|
|
}
|
2023-01-04 17:28:07 +08:00
|
|
|
|
2023-01-17 10:53:00 +08:00
|
|
|
void GVFSRecentFileData::loadRecentFileASync(RecentFileProvider *p_recentFileProvider)
|
2023-01-04 17:28:07 +08:00
|
|
|
{
|
|
|
|
if (!s_recentFileRootDir) {
|
|
|
|
qWarning() << "Can not find 'recent:///' dir.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_file_enumerate_children_async(s_recentFileRootDir,
|
|
|
|
"*",
|
|
|
|
G_FILE_QUERY_INFO_NONE, G_PRIORITY_DEFAULT,
|
2023-03-16 14:14:16 +08:00
|
|
|
nullptr, GAsyncReadyCallback(enumerateFinish),
|
2023-01-17 10:53:00 +08:00
|
|
|
p_recentFileProvider);
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GAsyncReadyCallback
|
2023-01-17 10:53:00 +08:00
|
|
|
GVFSRecentFileData::enumerateFinish(GFile *file, GAsyncResult *res, RecentFileProvider *p_recentFileProvider)
|
2023-01-04 17:28:07 +08:00
|
|
|
{
|
|
|
|
GError *error = nullptr;
|
|
|
|
GFileEnumerator *enumerator = g_file_enumerate_children_finish(file, res, &error);
|
|
|
|
if (error) {
|
|
|
|
qWarning() << "GVFSRecentFileData::enumerateFinish Error:" << error->message;
|
|
|
|
g_error_free(error);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_file_enumerator_next_files_async(enumerator, s_queryFileNum, G_PRIORITY_DEFAULT,
|
2023-03-16 14:14:16 +08:00
|
|
|
nullptr, GAsyncReadyCallback(parseRecentFiles), p_recentFileProvider);
|
2023-01-04 17:28:07 +08:00
|
|
|
|
|
|
|
g_object_unref(enumerator);
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
GAsyncReadyCallback
|
2023-05-31 15:47:11 +08:00
|
|
|
GVFSRecentFileData::parseRecentFiles(GFileEnumerator *enumerator, GAsyncResult *res,
|
|
|
|
RecentFileProvider *p_recentFileProvider)
|
2023-01-04 17:28:07 +08:00
|
|
|
{
|
|
|
|
GError *error = nullptr;
|
|
|
|
GList *fileList = g_file_enumerator_next_files_finish(enumerator, res, &error);
|
|
|
|
if (error) {
|
|
|
|
qWarning() << "GVFSRecentFileData::parseRecentFiles Error:" << error->message;
|
|
|
|
g_error_free(error);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-03-16 14:14:16 +08:00
|
|
|
QVector<RecentFile> recentFiles;
|
2023-01-04 17:28:07 +08:00
|
|
|
if (!fileList) {
|
2023-03-16 14:14:16 +08:00
|
|
|
p_recentFileProvider->dataProcess(recentFiles);
|
2023-01-04 17:28:07 +08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto listIterator = fileList;
|
|
|
|
while (listIterator) {
|
|
|
|
RecentFile recentFile;
|
|
|
|
GFileInfo *info = static_cast<GFileInfo *>(listIterator->data);
|
2023-03-16 14:14:16 +08:00
|
|
|
GFile *file = g_file_enumerator_get_child(enumerator, info);
|
|
|
|
recentFile.infoId = g_file_get_uri(file);
|
|
|
|
g_object_unref(file);
|
2023-01-04 17:28:07 +08:00
|
|
|
|
|
|
|
char *attribute = g_file_info_get_attribute_as_string(info, G_FILE_ATTRIBUTE_STANDARD_TARGET_URI);
|
|
|
|
if (attribute) {
|
|
|
|
recentFile.uri = attribute;
|
|
|
|
g_free(attribute);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *fileName = g_file_info_get_display_name(info);
|
|
|
|
if (fileName) {
|
|
|
|
recentFile.name = fileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// in seconds since the UNIX epoch.
|
|
|
|
recentFile.accessTime = g_file_info_get_attribute_uint64(info, G_FILE_ATTRIBUTE_TIME_ACCESS);
|
|
|
|
|
|
|
|
GIcon *icon = g_file_info_get_icon(info);
|
|
|
|
if (icon) {
|
2023-05-31 15:47:11 +08:00
|
|
|
const gchar *const *iconNames = g_themed_icon_get_names(G_THEMED_ICON(icon));
|
2023-01-04 17:28:07 +08:00
|
|
|
if (iconNames) {
|
|
|
|
auto iconNameIterator = iconNames;
|
2023-05-31 15:47:11 +08:00
|
|
|
while (*iconNameIterator) {
|
|
|
|
if (QIcon::hasThemeIcon(*iconNameIterator)) {
|
2023-01-17 10:53:00 +08:00
|
|
|
recentFile.icon = "image://appicon/" + QString(*iconNameIterator);
|
2023-01-04 17:28:07 +08:00
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
++iconNameIterator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_object_unref(icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (recentFile.icon.isEmpty()) {
|
2023-01-17 10:53:00 +08:00
|
|
|
recentFile.icon = "image://appicon/text-plain";
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
recentFiles.append(recentFile);
|
2023-03-16 14:14:16 +08:00
|
|
|
info = nullptr;
|
2023-01-04 17:28:07 +08:00
|
|
|
listIterator = listIterator->next;
|
|
|
|
}
|
|
|
|
g_list_free(fileList);
|
|
|
|
|
2023-01-17 10:53:00 +08:00
|
|
|
p_recentFileProvider->dataProcess(recentFiles);
|
|
|
|
|
2023-01-04 17:28:07 +08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// RecentFileExtension
|
|
|
|
RecentFileExtension::RecentFileExtension(QObject *parent) : MenuExtensionIFace(parent)
|
|
|
|
{
|
2023-04-09 11:22:39 +08:00
|
|
|
QString translationFile(QString(RECENT_FILE_TRANSLATION_DIR) + "/recent-file-extension_" + QLocale::system().name() + ".qm");
|
|
|
|
if (QFile::exists(translationFile)) {
|
|
|
|
QTranslator *translator = new QTranslator(this);
|
|
|
|
translator->load(translationFile);
|
|
|
|
QCoreApplication::installTranslator(translator);
|
|
|
|
}
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
qRegisterMetaType<UkuiMenu::RecentFilesModel *>("RecentFilesModel*");
|
2023-01-17 10:53:00 +08:00
|
|
|
qRegisterMetaType<QVector<RecentFile> >("QVector<RecentFile>");
|
|
|
|
|
|
|
|
m_recentFilesProviderThread = new QThread(this);
|
|
|
|
m_recentFilesModel = new RecentFilesModel(this);
|
|
|
|
m_recentFileProvider = new RecentFileProvider();
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
if (!m_recentFilesProviderThread || !m_recentFilesModel || !m_recentFileProvider) {
|
|
|
|
qWarning() << "recentfile construction error";
|
2023-01-17 10:53:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_recentFilesProviderThread->start();
|
|
|
|
m_recentFileProvider->moveToThread(m_recentFilesProviderThread);
|
|
|
|
|
|
|
|
connect(this, &RecentFileExtension::loadRecentFiles, m_recentFileProvider, &RecentFileProvider::getRecentData);
|
2023-05-31 15:47:11 +08:00
|
|
|
connect(m_recentFilesModel, &RecentFilesModel::updateRecentData, m_recentFileProvider,
|
|
|
|
&RecentFileProvider::getRecentData);
|
|
|
|
connect(m_recentFileProvider, &RecentFileProvider::dataLoadCompleted, m_recentFilesModel,
|
|
|
|
&RecentFilesModel::updateRecentFiles);
|
2023-01-17 10:53:00 +08:00
|
|
|
connect(this, &RecentFileExtension::openFileASync, m_recentFileProvider, &RecentFileProvider::openFileByGFile);
|
2023-01-04 17:28:07 +08:00
|
|
|
|
2023-01-17 10:53:00 +08:00
|
|
|
m_data.insert("recentFilesModel", QVariant::fromValue(m_recentFilesModel));
|
|
|
|
|
2023-03-16 14:14:16 +08:00
|
|
|
GVFSRecentFileData::fileMonitor(m_recentFileProvider);
|
2023-01-17 10:53:00 +08:00
|
|
|
Q_EMIT loadRecentFiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
RecentFileExtension::~RecentFileExtension()
|
|
|
|
{
|
|
|
|
if (m_recentFilesProviderThread) {
|
|
|
|
m_recentFilesProviderThread->quit();
|
|
|
|
m_recentFilesProviderThread->wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_recentFileProvider) {
|
|
|
|
delete m_recentFileProvider;
|
|
|
|
m_recentFileProvider = nullptr;
|
|
|
|
}
|
2023-03-16 14:14:16 +08:00
|
|
|
|
|
|
|
if (GVFSRecentFileData::s_recentFileRootDir) {
|
|
|
|
g_object_unref(GVFSRecentFileData::s_recentFileRootDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GVFSRecentFileData::s_recentFileMonitor) {
|
|
|
|
g_object_unref(GVFSRecentFileData::s_recentFileMonitor);
|
|
|
|
}
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int RecentFileExtension::index()
|
|
|
|
{
|
2023-01-17 10:53:00 +08:00
|
|
|
return 1;
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QString RecentFileExtension::name()
|
|
|
|
{
|
2023-01-17 10:53:00 +08:00
|
|
|
return tr("Recent Files");
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QUrl RecentFileExtension::url()
|
|
|
|
{
|
2023-04-09 11:22:39 +08:00
|
|
|
return {"qrc:///extensions/RecentFileExtension.qml"};
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap RecentFileExtension::data()
|
|
|
|
{
|
2023-01-17 10:53:00 +08:00
|
|
|
return m_data;
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void RecentFileExtension::receive(QVariantMap data)
|
|
|
|
{
|
2023-01-17 10:53:00 +08:00
|
|
|
QString path = data.value("url").toString();
|
2023-03-16 14:14:16 +08:00
|
|
|
if (data.value("action").toString() == "right") {
|
|
|
|
int index = data.value("index").toInt();
|
|
|
|
creatMenu(path, index);
|
|
|
|
return;
|
|
|
|
}
|
2023-01-17 10:53:00 +08:00
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
openFile(path);
|
2023-01-17 10:53:00 +08:00
|
|
|
}
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
void RecentFileExtension::openFile(const QString &fileUrl)
|
2023-01-17 10:53:00 +08:00
|
|
|
{
|
2023-05-31 15:47:11 +08:00
|
|
|
QDBusMessage message = QDBusMessage::createMethodCall(KYLIN_APP_MANAGER_NAME, KYLIN_APP_MANAGER_PATH, KYLIN_APP_MANAGER_INTERFACE, "LaunchDefaultAppWithUrl");
|
|
|
|
message << fileUrl;
|
|
|
|
|
|
|
|
auto watcher = new QDBusPendingCallWatcher(QDBusConnection::sessionBus().asyncCall(message), this);
|
|
|
|
connect(watcher, &QDBusPendingCallWatcher::finished, this, [fileUrl, this] (QDBusPendingCallWatcher *self) {
|
|
|
|
QDBusPendingReply<bool> reply = *self;
|
|
|
|
if (reply.isError() || !reply.value()) {
|
|
|
|
Q_EMIT openFileASync(fileUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
self->deleteLater();
|
|
|
|
});
|
2023-01-17 10:53:00 +08:00
|
|
|
}
|
|
|
|
|
2023-03-16 14:14:16 +08:00
|
|
|
void RecentFileExtension::creatMenu(const QString &path, const int &index)
|
|
|
|
{
|
|
|
|
QMenu menu;
|
|
|
|
|
|
|
|
QAction open(QIcon::fromTheme("document-open-symbolic"), tr("Open"));
|
2023-03-29 09:29:20 +08:00
|
|
|
QAction remove(QIcon::fromTheme("edit-clear-symbolic"), tr("Remove from list"));
|
2023-03-16 14:14:16 +08:00
|
|
|
QAction clear(QIcon::fromTheme("edit-delete-symbolic"), tr("Clear list"));
|
|
|
|
QAction directory(tr("Open the directory where the file is located"));
|
|
|
|
|
|
|
|
connect(&open, &QAction::triggered, this, [this, path]() {
|
2023-05-31 15:47:11 +08:00
|
|
|
openFile(path);
|
|
|
|
});
|
2023-03-16 14:14:16 +08:00
|
|
|
|
|
|
|
connect(&remove, &QAction::triggered, this, [this, index]() {
|
|
|
|
GVFSRecentFileData::removeRecentFileByInfoId(m_recentFilesModel->getInfoId(index));
|
2023-05-31 15:47:11 +08:00
|
|
|
});
|
2023-03-16 14:14:16 +08:00
|
|
|
|
|
|
|
connect(&clear, &QAction::triggered, this, [this]() {
|
|
|
|
QStringList infoIdList = m_recentFilesModel->getAllInfoId();
|
|
|
|
for (const QString &infoId : infoIdList) {
|
|
|
|
GVFSRecentFileData::removeRecentFileByInfoId(infoId);
|
|
|
|
}
|
2023-05-31 15:47:11 +08:00
|
|
|
});
|
2023-03-16 14:14:16 +08:00
|
|
|
|
|
|
|
connect(&directory, &QAction::triggered, this, [this, path]() {
|
2023-05-31 15:47:11 +08:00
|
|
|
QDBusMessage message = QDBusMessage::createMethodCall(FREEDESKTOP_FILEMANAGER_NAME,
|
|
|
|
FREEDESKTOP_FILEMANAGER_PATH,
|
|
|
|
FREEDESKTOP_FILEMANAGER_INTERFACE, "ShowFolders");
|
2023-06-09 16:15:46 +08:00
|
|
|
message << QStringList(path) << "ukui-menu-recent-file";
|
2023-05-31 15:47:11 +08:00
|
|
|
QDBusConnection::sessionBus().asyncCall(message);
|
|
|
|
});
|
2023-03-16 14:14:16 +08:00
|
|
|
|
|
|
|
menu.addAction(&open);
|
|
|
|
menu.addSeparator();
|
|
|
|
menu.addAction(&remove);
|
|
|
|
menu.addAction(&clear);
|
|
|
|
menu.addSeparator();
|
|
|
|
menu.addAction(&directory);
|
|
|
|
menu.exec(QCursor::pos());
|
|
|
|
}
|
|
|
|
|
2023-01-17 10:53:00 +08:00
|
|
|
RecentFilesModel::RecentFilesModel(QObject *parent) : QAbstractListModel(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int RecentFilesModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return m_recentFileData.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant RecentFilesModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
int row = index.row();
|
|
|
|
if (row < 0 || row >= m_recentFileData.count()) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (role) {
|
|
|
|
case UriRole:
|
|
|
|
return m_recentFileData.at(row).uri;
|
|
|
|
case NameRole:
|
|
|
|
return m_recentFileData.at(row).name;
|
|
|
|
case IconRole:
|
|
|
|
return m_recentFileData.at(row).icon;
|
2023-06-06 09:22:29 +08:00
|
|
|
case PathRole: {
|
|
|
|
QUrl baseUrl(m_recentFileData.at(row).uri);
|
|
|
|
return baseUrl.adjusted(QUrl::RemoveFilename).path();
|
|
|
|
}
|
2023-01-17 10:53:00 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
QHash<int, QByteArray> RecentFilesModel::roleNames() const
|
|
|
|
{
|
|
|
|
QHash<int, QByteArray> names;
|
|
|
|
names.insert(UriRole, "uri");
|
|
|
|
names.insert(NameRole, "name");
|
|
|
|
names.insert(IconRole, "icon");
|
2023-06-06 09:22:29 +08:00
|
|
|
names.insert(PathRole, "path");
|
2023-01-17 10:53:00 +08:00
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
2023-03-16 14:14:16 +08:00
|
|
|
QString RecentFilesModel::getInfoId(const int &index)
|
|
|
|
{
|
|
|
|
return m_recentFileData.at(index).infoId;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList RecentFilesModel::getAllInfoId()
|
|
|
|
{
|
|
|
|
QStringList infoIdList;
|
|
|
|
for (const RecentFile &data : m_recentFileData) {
|
|
|
|
infoIdList.append(data.infoId);
|
|
|
|
}
|
|
|
|
return infoIdList;
|
|
|
|
}
|
|
|
|
|
2023-01-17 10:53:00 +08:00
|
|
|
void RecentFilesModel::updateData()
|
|
|
|
{
|
|
|
|
Q_EMIT updateRecentData();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RecentFilesModel::updateRecentFiles(QVector<RecentFile> recentFiles)
|
|
|
|
{
|
|
|
|
beginResetModel();
|
|
|
|
m_recentFileData.swap(recentFiles);
|
|
|
|
endResetModel();
|
|
|
|
}
|
|
|
|
|
|
|
|
RecentFileProvider::RecentFileProvider(QObject *parent) : QObject(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void RecentFileProvider::dataProcess(QVector<RecentFile> &recentFiles)
|
|
|
|
{
|
|
|
|
std::sort(recentFiles.begin(), recentFiles.end(), [](const RecentFile &a, const RecentFile &b) {
|
|
|
|
return a.accessTime > b.accessTime;
|
|
|
|
});
|
|
|
|
|
|
|
|
Q_EMIT dataLoadCompleted(recentFiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RecentFileProvider::getRecentData()
|
|
|
|
{
|
|
|
|
GVFSRecentFileData::loadRecentFileASync(this);
|
|
|
|
}
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
void RecentFileProvider::openFileByGFile(const QString &fileUrl)
|
2023-01-17 10:53:00 +08:00
|
|
|
{
|
2023-05-31 15:47:11 +08:00
|
|
|
GFile *file = g_file_new_for_uri(fileUrl.toUtf8().constData());
|
2023-01-17 10:53:00 +08:00
|
|
|
if (!file) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
GFileInfo *fileInfo = g_file_query_info(file, "standard::*," G_FILE_ATTRIBUTE_ID_FILE, G_FILE_QUERY_INFO_NONE, nullptr, nullptr);
|
2023-01-17 10:53:00 +08:00
|
|
|
if (!fileInfo) {
|
2023-05-31 15:47:11 +08:00
|
|
|
g_object_unref(file);
|
2023-01-17 10:53:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString mimeType(g_file_info_get_content_type(fileInfo));
|
|
|
|
if (mimeType.isEmpty()) {
|
|
|
|
if (g_file_info_has_attribute(fileInfo, "standard::fast-content-type")) {
|
|
|
|
mimeType = g_file_info_get_attribute_string(fileInfo, "standard::fast-content-type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GError *error = NULL;
|
2023-05-31 15:47:11 +08:00
|
|
|
GAppInfo *info = NULL;
|
2023-01-17 10:53:00 +08:00
|
|
|
|
|
|
|
QString mimeAppsListPath = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.config/mimeapps.list";
|
|
|
|
GKeyFile *keyfile = g_key_file_new();
|
|
|
|
gboolean ret = g_key_file_load_from_file(keyfile, mimeAppsListPath.toUtf8(), G_KEY_FILE_NONE, &error);
|
|
|
|
|
|
|
|
if (!ret) {
|
2023-05-31 15:47:11 +08:00
|
|
|
qWarning() << "load mimeapps list error msg" << error->message;
|
2023-01-17 10:53:00 +08:00
|
|
|
info = g_app_info_get_default_for_type(mimeType.toUtf8().constData(), false);
|
|
|
|
g_error_free(error);
|
2023-05-31 15:47:11 +08:00
|
|
|
|
|
|
|
} else {
|
2023-01-17 10:53:00 +08:00
|
|
|
gchar *desktopApp = g_key_file_get_string(keyfile, "Default Applications", mimeType.toUtf8(), &error);
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
if (NULL == desktopApp) {
|
2023-01-17 10:53:00 +08:00
|
|
|
info = g_app_info_get_default_for_type(mimeType.toUtf8().constData(), false);
|
2023-05-31 15:47:11 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
info = (GAppInfo *) g_desktop_app_info_new(desktopApp);
|
|
|
|
g_free(desktopApp);
|
2023-01-17 10:53:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
g_key_file_free(keyfile);
|
|
|
|
|
|
|
|
bool success = false;
|
|
|
|
if (G_IS_APP_INFO(info)) {
|
|
|
|
GList *files = g_list_alloc();
|
|
|
|
g_list_append(files, file);
|
|
|
|
|
|
|
|
success = g_app_info_launch(info, files, nullptr, nullptr);
|
|
|
|
|
|
|
|
g_list_free(files);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
QDesktopServices::openUrl(fileUrl);
|
2023-01-17 10:53:00 +08:00
|
|
|
}
|
2023-01-04 17:28:07 +08:00
|
|
|
|
2023-05-31 15:47:11 +08:00
|
|
|
g_object_unref(file);
|
2023-01-17 10:53:00 +08:00
|
|
|
g_object_unref(info);
|
2023-01-04 17:28:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // UkuiMenu
|
2023-05-31 15:47:11 +08:00
|
|
|
|
|
|
|
#include "recent-file-extension.moc"
|