File: kjavaappletviewer.h

package info (click to toggle)
khtml 5.54.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 18,940 kB
  • sloc: cpp: 206,281; java: 4,060; ansic: 2,829; perl: 2,313; yacc: 1,497; python: 339; sh: 141; xml: 37; makefile: 7
file content (162 lines) | stat: -rw-r--r-- 4,823 bytes parent folder | download | duplicates (2)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
// -*- c++ -*-

/* This file is part of the KDE project
 *
 * Copyright (C) 2003 Koos Vriezen <koos.vriezen@xs4all.nl>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef KJAVAAPPLETVIEWER_H
#define KJAVAAPPLETVIEWER_H

#include <kparts/part.h>
#include <kparts/browserextension.h>
#include <kparts/statusbarextension.h>
#include <kparts/liveconnectextension.h>
#include <kpluginfactory.h>
#include <QDialog>
#include <QUrl>
#include <QObject>
#include <QStringList>
#include <QPointer>

#include "kjavaappletwidget.h"

class QTableWidget;
class QLabel;
class KJavaProcess;
class KJavaAppletViewer;
class KAboutData;
class KComponentData;
class KConfig;
class CoverWidget;

class KJavaAppletViewerBrowserExtension : public KParts::BrowserExtension
{
    Q_OBJECT
public:
    KJavaAppletViewerBrowserExtension(KJavaAppletViewer *parent);
    void urlChanged(const QString &url);
    void setLoadingProgress(int percentage);

    void setBrowserArguments(const KParts::BrowserArguments &args) override;
    void saveState(QDataStream &stream) override;
    void restoreState(QDataStream &stream) override;
public Q_SLOTS:
    void showDocument(const QString &doc, const QString &frame);
};

class KJavaAppletViewerLiveConnectExtension : public KParts::LiveConnectExtension
{
    Q_OBJECT
public:
    KJavaAppletViewerLiveConnectExtension(KJavaAppletViewer *parent);

    bool get(const unsigned long objid, const QString &field, KParts::LiveConnectExtension::Type &type, unsigned long &retobjid, QString &value) override;
    bool put(const unsigned long, const QString &field, const QString &value) override;
    bool call(const unsigned long, const QString &func, const QStringList &args, KParts::LiveConnectExtension::Type &type, unsigned long &retobjid, QString &value) override;
    void unregister(const unsigned long objid) override;

    int jsSessions() const
    {
        return m_jssessions;
    }
public Q_SLOTS:
    void jsEvent(const QStringList &args);
Q_SIGNALS:
    void partEvent(const unsigned long objid, const QString &event, const KParts::LiveConnectExtension::ArgList &args);

private:
    KJavaAppletViewer *m_viewer;
    static int m_jssessions;
};

class KJavaAppletViewer : public KParts::ReadOnlyPart
{
    Q_OBJECT
public:
    KJavaAppletViewer(QWidget *wparent, QObject *parent, const QStringList &args);
    ~KJavaAppletViewer();
    CoverWidget *view() const;

    KJavaAppletViewerBrowserExtension *browserextension() const
    {
        return m_browserextension;
    }
    KParts::LiveConnectExtension *liveConnectExtension() const
    {
        return m_liveconnect;
    }

    bool eventFilter(QObject *o, QEvent *e) override;

    bool appletAlive() const;
public Q_SLOTS:
    bool openUrl(const QUrl &url) override;
    bool closeUrl() override;
    void appletLoaded();
    void infoMessage(const QString &);
protected:
    bool openFile() override;
private Q_SLOTS:
    void delayedCreateTimeOut();
private:
    QPointer <CoverWidget> m_view;
    KConfig *m_config;
    KJavaProcess *process;
    KJavaAppletViewerBrowserExtension *m_browserextension;
    KJavaAppletViewerLiveConnectExtension *m_liveconnect;
    KParts::StatusBarExtension *m_statusbar;
    QPointer <QLabel> m_statusbar_icon;
    QString baseurl;
    bool m_closed;
};

class KJavaAppletViewerFactory : public KPluginFactory
{
    Q_OBJECT
public:
    KJavaAppletViewerFactory();
    virtual ~KJavaAppletViewerFactory();
    virtual QObject *create(const char *, QWidget *wparent, QObject *parent,
                            const QVariantList &args, const QString &) override;
    static const KAboutData &componentData()
    {
        return *s_aboutData;
    }
    static KIconLoader *iconLoader()
    {
        return s_iconLoader;
    }
private:
    static KAboutData  *s_aboutData;
    static KIconLoader *s_iconLoader;
};

class AppletParameterDialog : public QDialog
{
    Q_OBJECT
public:
    AppletParameterDialog(KJavaAppletWidget *parent);
protected Q_SLOTS:
    void slotClose();
private:
    KJavaAppletWidget *m_appletWidget;
    QTableWidget *table;
};

#endif