-rw-r--r-- | library/process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/process.h b/library/process.h index def68d7..e4f613d 100644 --- a/library/process.h +++ b/library/process.h | |||
@@ -1,94 +1,94 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #ifndef PROCESS_H | 21 | #ifndef PROCESS_H |
22 | #define PROCESS_H | 22 | #define PROCESS_H |
23 | 23 | ||
24 | //#ifndef QT_H | 24 | //#ifndef QT_H |
25 | #include "qobject.h" | 25 | #include "qobject.h" |
26 | #include "qstringlist.h" | 26 | #include "qstringlist.h" |
27 | #include "qdir.h" | 27 | #include "qdir.h" |
28 | //#endif // QT_H | 28 | //#endif // QT_H |
29 | 29 | ||
30 | //#ifndef QT_NO_PROCESS | 30 | //#ifndef QT_NO_PROCESS |
31 | 31 | ||
32 | class ProcessPrivate; | 32 | class ProcessPrivate; |
33 | 33 | ||
34 | // | 34 | // |
35 | // | 35 | // |
36 | // | 36 | // |
37 | // | 37 | // |
38 | // | 38 | // |
39 | // | 39 | // |
40 | // | 40 | // |
41 | // | 41 | // |
42 | // | 42 | // |
43 | // | 43 | // |
44 | // This is a subset of the Process API found in Qt 3.0 | 44 | // This is a subset of the Process API found in Qt 3.0 |
45 | // | 45 | // |
46 | // | 46 | // |
47 | // | 47 | // |
48 | // | 48 | // |
49 | // | 49 | // |
50 | // | 50 | // |
51 | // | 51 | // |
52 | // | 52 | // |
53 | // | 53 | // |
54 | // | 54 | // |
55 | // | 55 | // |
56 | 56 | ||
57 | class Q_EXPORT Process : public QObject | 57 | class Q_EXPORT Process : public QObject |
58 | { | 58 | { |
59 | Q_OBJECT | 59 | Q_OBJECT |
60 | public: | 60 | public: |
61 | Process( QObject *parent=0, const char *name=0 ); | 61 | Process( QObject *parent=0, const char *name=0 ); |
62 | Process( const QString& arg0, QObject *parent=0, const char *name=0 ); | 62 | Process( const QString& arg0, QObject *parent=0, const char *name=0 ); |
63 | Process( const QStringList& args, QObject *parent=0, const char *name=0 ); | 63 | Process( const QStringList& args, QObject *parent=0, const char *name=0 ); |
64 | ~Process(); | 64 | ~Process(); |
65 | 65 | ||
66 | // set and get the arguments and working directory | 66 | // set and get the arguments and working directory |
67 | QStringList arguments() const; | 67 | QStringList arguments() const; |
68 | virtual void setArguments( const QStringList& args ); | 68 | virtual void setArguments( const QStringList& args ); |
69 | virtual void addArgument( const QString& arg ); | 69 | virtual void addArgument( const QString& arg ); |
70 | // control the execution | 70 | // control the execution |
71 | virtual bool exec( const QString& in, QString& out, QStringList *env=0 ); | 71 | virtual bool exec( const QString& in, QString& out, QStringList *env=0 ); |
72 | virtual bool exec( const QByteArray& in, QByteArray& out, QStringList *env=0 ); | 72 | virtual bool exec( const QByteArray& in, QByteArray& out, QStringList *env=0 ); |
73 | 73 | ||
74 | private: | 74 | private: |
75 | void init(); | 75 | void init(); |
76 | 76 | ||
77 | private: | 77 | private: |
78 | ProcessPrivate *d; | 78 | ProcessPrivate *d; |
79 | QStringList _arguments; | 79 | QStringList _arguments; |
80 | 80 | ||
81 | int exitStat; // exit status | 81 | int exitStat; // exit status |
82 | bool exitNormal; // normal exit? | 82 | bool exitNormal; // normal exit? |
83 | bool ioRedirection; // automatically set be (dis)connectNotify | 83 | bool ioRedirection; // automatically set be (dis)connectNotify |
84 | bool notifyOnExit; // automatically set be (dis)connectNotify | 84 | bool notifyOnExit; // automatically set be (dis)connectNotify |
85 | bool wroteToStdinConnected; // automatically set be (dis)connectNotify | 85 | bool wroteToStdinConnected; // automatically set be (dis)connectNotify |
86 | 86 | ||
87 | friend class ProcessPrivate; | 87 | friend class ProcessPrivate; |
88 | friend class ProcessManager; | 88 | friend class ProcessManager; |
89 | friend class Proc; | 89 | friend class Proc; |
90 | }; | 90 | }; |
91 | 91 | ||
92 | //#endif // QT_NO_PROCESS | 92 | //#endif // QT_NO_PROCESS |
93 | 93 | ||
94 | #endif // QPROCESS_H | 94 | #endif // QPROCESS_H |