You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.8 KiB
88 lines
2.8 KiB
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
|
* (c)LGPL2+
|
|
*
|
|
* LXDE-Qt - a lightweight, Qt based, desktop toolset
|
|
* http://razor-qt.org
|
|
*
|
|
* Copyright: 2010-2011 Razor team
|
|
* Authors:
|
|
* Petr Vanek <petr@scribus.info>
|
|
*
|
|
* This program or library 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 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA
|
|
*
|
|
* END_COMMON_COPYRIGHT_HEADER */
|
|
|
|
#ifndef QUICKLAUNCHACTION_H
|
|
#define QUICKLAUNCHACTION_H
|
|
|
|
#include <QAction>
|
|
|
|
|
|
class XdgDesktopFile;
|
|
|
|
|
|
/*! \brief Special action representation for LXQtQuickLaunch plugin.
|
|
It supports XDG desktop files or "legacy" launching of specified apps.
|
|
All process management is handled internally.
|
|
\author Petr Vanek <petr@scribus.info>
|
|
*/
|
|
class QuickLaunchAction : public QAction
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/*! Constructor for "legacy" launchers.
|
|
\warning The XDG way is preferred this is only for older or non-standard apps
|
|
\param name a name to display in tooltip
|
|
\param exec a executable with path
|
|
\param icon a valid QIcon
|
|
*/
|
|
QuickLaunchAction(const QString & name,
|
|
const QString & exec,
|
|
const QString & icon,
|
|
QWidget * parent);
|
|
/*! Constructor for XDG desktop handlers.
|
|
*/
|
|
QuickLaunchAction(const XdgDesktopFile * xdg, QWidget * parent);
|
|
/*! Constructor for regular files
|
|
*/
|
|
QuickLaunchAction(const QString & fileName, QWidget * parent);
|
|
|
|
//! Returns true if the action is valid (contains all required properties).
|
|
bool isValid() { return m_valid; }
|
|
|
|
QHash<QString, QString> settingsMap() { return m_settingsMap; }
|
|
|
|
/*! Returns list of additional actions to present for user (in menu).
|
|
* Currently there are only "Addtitional application actions" for the ActionXdg type
|
|
* (the [Desktop Action %s] in .desktop files)
|
|
*/
|
|
QList<QAction *> addtitionalActions() const { return m_addtitionalActions; }
|
|
|
|
public slots:
|
|
void execAction(QString additionalAction = QString{});
|
|
|
|
private:
|
|
enum ActionType { ActionLegacy, ActionXdg, ActionFile };
|
|
ActionType m_type;
|
|
QString m_data;
|
|
bool m_valid;
|
|
QHash<QString, QString> m_settingsMap;
|
|
QList<QAction *> m_addtitionalActions;
|
|
};
|
|
|
|
#endif
|