blob: d93e17f49070d971e6a25ac9a027f15bfce4d13e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
//
// C++ Interface: global
//
// Description:
//
//
// Author: Paulo Moura Guedes <moura@kdewebdev.org>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef GLOBAL_H
#define GLOBAL_H
#include <tqobject.h>
class TQCString;
class DCOPClient;
class KURL;
class KProcess;
/**
@author Paulo Moura Guedes
*/
class Global : public QObject
{
Q_OBJECT
public:
static Global* self();
~Global();
static bool isKLinkStatusEmbeddedInQuanta();
static bool isQuantaRunningAsUnique();
static bool isQuantaAvailableViaDCOP();
static TQCString quantaDCOPAppId();
static KURL urlWithQuantaPreviewPrefix(KURL const& url);
//static void setLoopStarted(bool flag);
static void openQuanta(TQStringList const& args);
private:
Global(TQObject *parent = 0, const char *name = 0);
static void execCommand(TQString const& command);
private slots:
void slotGetScriptOutput(KProcess* process, char* buffer, int buflen);
void slotGetScriptError(KProcess* process, char* buffer, int buflen);
void slotProcessExited(KProcess* process);
void slotProcessTimeout();
private:
static Global* m_self_;
DCOPClient* dcop_client_;
bool loop_started_;
TQString script_output_;
KProcess* process_PS_;
};
#endif
|