summaryrefslogtreecommitdiff
path: root/core/launcher/server.h
blob: 5b2f99561148e935e0e3e2bc4152f08dc73eb6c8 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/**********************************************************************
** Copyright (C) 2000-2002 Trolltech AS.  All rights reserved.
**
** This file is part of the Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#ifndef DESKTOP_H
#define DESKTOP_H

#include <qwidget.h>
#include <qdatetime.h>

//#include "qcopbridge.h"

class QCopBridge;
class QHostAddress;
class TransferServer;
class PackageHandler;
class ServiceRequest;
class TempScreenSaverMonitor;
class AppLauncher;
class AppLnkSet;
class StorageInfo;
class SyncDialog;
class DocumentList;
class ServerInterface;
class QueuedRequestRunner;
namespace Opie {
namespace Core {
    class ODeviceButton;
    class OProcess;
}
}

class Server : public QWidget {
    Q_OBJECT
public:
    Server();
    ~Server();

    static bool mkdir(const QString &path);

    void show();

    static bool setKeyboardLayout( const QString &kb );

public slots:
    void systemMsg(const QCString &, const QByteArray &);
    void receiveTaskBar(const QCString &msg, const QByteArray &data);
    void terminateServers();
    void pokeTimeMonitors();

private slots:
    //@{
    void startSoundServer();
    void soundServerExited();
    //@}
    void activate(const Opie::Core::ODeviceButton*,bool);
    void syncConnectionClosed( const QHostAddress & );
    void applicationLaunched(int pid, const QString &app);
    void applicationTerminated(int pid, const QString &app);
    void applicationConnected(const QString &app);
    void storageChanged();
    void cancelSync();
    void desktopMessage( const QCString &, const QByteArray & );
    void runDirectAccess();
    void finishedQueuedRequests();

protected:
    void styleChange( QStyle & );
    void timerEvent( QTimerEvent *e );

private:
    void layout();
    void startTransferServer();
    void preloadApps();
    void prepareDirectAccess();
    void postDirectAccess();
    QString cardInfoString();
    QString installLocationsString();

    QCopBridge *qcopBridge;
    TransferServer *transferServer;
    PackageHandler *packageHandler;
    QDate last_today_show;
    int tid_xfer;
    /* ### FIXME two below### */
//    int tid_today;
//    TempScreenSaverMonitor *tsmMonitor;
    StorageInfo *storage;
    SyncDialog *syncDialog;
    AppLauncher *appLauncher;
    DocumentList *docList;
    ServerInterface *serverGui;

    int pendingFlushes;
    bool directAccessRun;
    QueuedRequestRunner *qrr;

    Opie::Core::OProcess *process;
};


#endif // DESKTOP_H