File: needupdateparsehtmljob.h

package info (click to toggle)
ktextaddons 1.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,856 kB
  • sloc: cpp: 62,045; ansic: 6,520; xml: 2,630; sh: 11; makefile: 7
file content (58 lines) | stat: -rw-r--r-- 1,058 bytes parent folder | download
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
/*
  SPDX-FileCopyrightText: 2025-2026 Laurent Montel <montel@kde.org>

  SPDX-License-Identifier: GPL-2.0-or-later
*/

#pragma once
#include "textaddonswidgets_export.h"
#include <QObject>
#include <QUrl>
namespace KIO
{
class Job;
}
namespace TextAddonsWidgets
{
/*!
 * \class TextAddonsWidgets::NeedUpdateParseHtmlJob
 * \inmodule TextAddonsWidgets
 * \inheaderfile TextAddonsWidgets/NeedUpdateParseHtmlJob
 */
class TEXTADDONSWIDGETS_EXPORT NeedUpdateParseHtmlJob : public QObject
{
    Q_OBJECT
public:
    /*!
     */
    explicit NeedUpdateParseHtmlJob(QObject *parent = nullptr);
    /*!
     */
    ~NeedUpdateParseHtmlJob() override;

    /*!
     */
    [[nodiscard]] bool canStart() const;

    /*!
     */
    [[nodiscard]] QUrl url() const;
    /*!
     */
    void setUrl(const QUrl &newUrl);

    /*!
     */
    void start();

Q_SIGNALS:
    /*!
     */
    void downLoadDone(const QString &data);

private:
    TEXTADDONSWIDGETS_NO_EXPORT void slotHttpDataFile(KIO::Job *job, const QByteArray &data);
    QUrl mUrl;
    QString mData;
};
}