mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
71 lines
2.7 KiB
Text
71 lines
2.7 KiB
Text
//
|
|
// Copyright 2008 Jim Bublitz <jbublitz@nwinternet.com>
|
|
// Earlier copyrights 1998 - 2007 Jim Bublitz also apply
|
|
|
|
// Generated by twine
|
|
|
|
// This file is part of PyKDE4.
|
|
|
|
// PyKDE4 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.
|
|
|
|
// PyKDE4 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/>.
|
|
|
|
|
|
class KProcess : QProcess
|
|
{
|
|
%TypeHeaderCode
|
|
#include <kprocess.h>
|
|
%End
|
|
|
|
|
|
|
|
public:
|
|
enum OutputChannelMode
|
|
{
|
|
SeparateChannels,
|
|
MergedChannels,
|
|
ForwardedChannels,
|
|
OnlyStdoutChannel,
|
|
OnlyStderrChannel
|
|
};
|
|
|
|
explicit KProcess (QObject* parent /TransferThis/ = 0);
|
|
void setOutputChannelMode (KProcess::OutputChannelMode mode);
|
|
KProcess::OutputChannelMode outputChannelMode () const;
|
|
void setNextOpenMode (QIODevice::OpenMode mode);
|
|
void setEnv (const QString& name, const QString& value, bool overwrite = 1);
|
|
void unsetEnv (const QString& name);
|
|
void clearEnvironment ();
|
|
void setProgram (const QString& exe, const QStringList& args = QStringList());
|
|
void setProgram (const QStringList& argv);
|
|
KProcess& operator << (const QString& arg);
|
|
KProcess& operator << (const QStringList& args);
|
|
void clearProgram ();
|
|
void setShellCommand (const QString& cmd);
|
|
QStringList program () const;
|
|
void start ();
|
|
int execute (int msecs = -1);
|
|
static int execute (const QString& exe, const QStringList& args = QStringList(), int msecs = -1);
|
|
static int execute (const QStringList& argv, int msecs = -1);
|
|
int startDetached ();
|
|
static int startDetached (const QString& exe, const QStringList& args = QStringList());
|
|
static int startDetached (const QStringList& argv);
|
|
int pid () const;
|
|
|
|
protected:
|
|
//ig KProcess (KProcessPrivate* d, QObject* parent /TransferThis/);
|
|
public:
|
|
~KProcess ();
|
|
};
|
|
// KProcess
|
|
|
|
|