cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
129 lines
3.0 KiB
C++
129 lines
3.0 KiB
C++
// This file is part of the KDE libraries
|
|
// SPDX-FileCopyrightText: 2020 Nicolas Fella <nicolas.fella@gmx.de>
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#ifndef KRECENTFILESMENU_H
|
|
#define KRECENTFILESMENU_H
|
|
|
|
#include <kwidgetsaddons_export.h>
|
|
|
|
#include <QMenu>
|
|
#include <QUrl>
|
|
|
|
#include <memory> // for std::unique_ptr
|
|
|
|
class KRecentFilesMenuPrivate;
|
|
|
|
/**
|
|
* A menu that offers a set of recent files.
|
|
*
|
|
* @since 5.74
|
|
*/
|
|
class KWIDGETSADDONS_EXPORT KRecentFilesMenu : public QMenu
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit KRecentFilesMenu(const QString &title, QWidget *parent = nullptr);
|
|
explicit KRecentFilesMenu(QWidget *parent = nullptr);
|
|
~KRecentFilesMenu() override;
|
|
|
|
/**
|
|
* The group the URLs are saved to/read from.
|
|
* Unless a group is specified by setGroup "RecentFiles" is used.
|
|
*/
|
|
QString group() const;
|
|
|
|
/**
|
|
* Specify a group for storing the URLs. This allows e.g. storing multiple
|
|
* types of recent files.
|
|
*
|
|
* By default the group "RecentFiles" is used.
|
|
*
|
|
* @param group the name of the group.
|
|
*/
|
|
void setGroup(const QString &group);
|
|
|
|
/**
|
|
* Add URL to recent files list. This will enable this action.
|
|
*
|
|
* @param url The URL of the file
|
|
* @param name The user visible pretty name that appears before the URL
|
|
*/
|
|
void addUrl(const QUrl &url, const QString &name = QString());
|
|
|
|
/**
|
|
* Remove a URL from the recent files list.
|
|
*
|
|
* @param url The URL of the file
|
|
*/
|
|
void removeUrl(const QUrl &url);
|
|
|
|
/**
|
|
* The maximum number of files this menu can hold.
|
|
*
|
|
* When the maximum url count is reached and a new URL is added the
|
|
* oldest will be replaced.
|
|
*
|
|
* By default maximum 10 URLs are shown.
|
|
*/
|
|
int maximumItems() const;
|
|
|
|
/**
|
|
* Set the maximum URL count.
|
|
*
|
|
* See \ref maximumItems
|
|
*/
|
|
void setMaximumItems(size_t maximumItems);
|
|
|
|
/**
|
|
* List of URLs of recent files.
|
|
*
|
|
* See \ref clearRecentFiles
|
|
* See \ref recentFilesChanged
|
|
*
|
|
* @since 5.101
|
|
*/
|
|
QList<QUrl> recentFiles() const;
|
|
|
|
public Q_SLOTS:
|
|
/**
|
|
* Clear recent files list.
|
|
*
|
|
* See \ref recentFiles
|
|
* See \ref recentFilesChanged
|
|
*
|
|
* @since 5.101
|
|
*/
|
|
void clearRecentFiles();
|
|
|
|
Q_SIGNALS:
|
|
/**
|
|
* emitted when the user clicks on a file action.
|
|
* Usually this should result in the specified URL being opened.
|
|
*
|
|
* @param url The url associated with the triggered action.
|
|
*/
|
|
void urlTriggered(const QUrl &url);
|
|
|
|
/**
|
|
* Emitted when the recent files list has been changed.
|
|
*
|
|
* See \ref recentFiles
|
|
* See \ref clearRecentFiles
|
|
*
|
|
* @since 5.101
|
|
*/
|
|
void recentFilesChanged();
|
|
|
|
private:
|
|
KWIDGETSADDONS_NO_EXPORT void readFromFile();
|
|
KWIDGETSADDONS_NO_EXPORT void writeToFile();
|
|
KWIDGETSADDONS_NO_EXPORT void rebuildMenu();
|
|
|
|
friend class KRecentFilesMenuPrivate;
|
|
|
|
std::unique_ptr<KRecentFilesMenuPrivate> const d;
|
|
};
|
|
|
|
#endif
|