mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
140 lines
4.7 KiB
C++
140 lines
4.7 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (c) 1997-1999 Matthias Kalle Dalheimer <kalle@kde.org>
|
|
Copyright (c) 1997-2000 Matthias Ettrich <ettrich@troll.no>
|
|
Copyright (c) 1998-2005 Stephan Kulow <coolo@kde.org>
|
|
Copyright (c) 1999-2004 Waldo Bastian <bastian@kde.org>
|
|
Copyright (c) 2001-2005 Lubos Lunak <l.lunak@kde.org>
|
|
Copyright (C) 2008 Aaron Seigo <aseigo@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KTOOLINVOCATION_H
|
|
#define KTOOLINVOCATION_H
|
|
|
|
#include <kdecore_export.h>
|
|
|
|
#include <QStringList>
|
|
#include <QDBusInterface>
|
|
|
|
class KUrl;
|
|
|
|
/**
|
|
* KToolInvocation starts other programs
|
|
*/
|
|
class KDECORE_EXPORT KToolInvocation : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
public:
|
|
KToolInvocation(QObject *parent = nullptr);
|
|
~KToolInvocation();
|
|
|
|
static KToolInvocation *self();
|
|
|
|
public Q_SLOTS:
|
|
/**
|
|
* Invokes the help viewer
|
|
*
|
|
* @param anchor This can be a defined anchor in the help document
|
|
* @param appname Application name, if empty the current application name is used
|
|
*/
|
|
void invokeHelp(const QString &anchor = QString(), const QString &appname = QString());
|
|
|
|
/**
|
|
* Invokes the standard email application.
|
|
*
|
|
* @param address The mail address
|
|
*/
|
|
void invokeMailer(const QString &address);
|
|
|
|
/**
|
|
* Invokes the browser. If in doubt use startServiceForUrl() instead
|
|
*
|
|
* @param url The address to browse
|
|
*/
|
|
void invokeBrowser(const QString &url);
|
|
|
|
/**
|
|
* Invokes the standard terminal application.
|
|
*
|
|
* @param command The command to execute, can be empty.
|
|
* @param workdir The initial working directory, can be empty.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
void invokeTerminal(const QString &command, const QString &workdir = QString());
|
|
|
|
public:
|
|
/**
|
|
* Set environment variable of the launcher
|
|
*
|
|
* @param name The environment variable name
|
|
* @param value The environment variable value
|
|
*/
|
|
void setLaunchEnv(const QString &name, const QString &value);
|
|
|
|
/**
|
|
* Starts a service based on the MIME type of the URL, the MIME type is automatically
|
|
* determined
|
|
*
|
|
* @param url The URL to start service for
|
|
* @param window Window to use for error reporting and job delegation
|
|
* @param temp Whether the URL is temporary file or not
|
|
* @return True on success false otherwise
|
|
*/
|
|
bool startServiceForUrl(const QString &url, QWidget *window = nullptr, bool temp = false);
|
|
|
|
/**
|
|
* Starts a service based on the desktop name or entry path of the service
|
|
*
|
|
* @param name The desktop name of the service
|
|
* @param urls If not empty these URLs will be passed to the service
|
|
* @param window Window to use for error reporting and job delegation
|
|
* @param temp Whether any of the URLs is temporary file or not
|
|
* @return True on success false otherwise
|
|
*/
|
|
bool startServiceByStorageId(const QString &name, const QStringList &urls = QStringList(),
|
|
QWidget *window = nullptr, bool temp = false);
|
|
|
|
/**
|
|
* Starts a program.
|
|
*
|
|
* @param name Name of the program to start
|
|
* @param args Arguments to pass to the program
|
|
* @param window Window to use for error reporting and job delegation
|
|
* @param temp Whether any of the arguments is temporary file or not
|
|
* @return True on success false otherwise
|
|
*/
|
|
bool startProgram(const QString &name, const QStringList &args = QStringList(),
|
|
QWidget *window = nullptr, bool temp = false);
|
|
|
|
private:
|
|
Q_DISABLE_COPY(KToolInvocation);
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
bool startServiceInternal(const char *_function,
|
|
const QString &name, const QStringList &urls,
|
|
QWidget *window, const bool temp,
|
|
const QString &workdir = QString());
|
|
|
|
QDBusInterface *klauncherIface;
|
|
};
|
|
|
|
#endif // KTOOLINVOCATION_H
|
|
|