summaryrefslogtreecommitdiffstats
path: root/klinkstatus/src/global.h
blob: 2ee2f0c01025624ef48feb3aa84cd601493a654a (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 <qobject.h>
class QCString;

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 QCString quantaDCOPAppId();
    static KURL urlWithQuantaPreviewPrefix(KURL const& url);
    
    //static void setLoopStarted(bool flag);
    static void openQuanta(QStringList const& args);
    
private:
    Global(QObject *parent = 0, const char *name = 0);
    static void execCommand(QString 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_;
    QString script_output_;
    KProcess* process_PS_;
};

#endif