File indexing completed on 2025-01-26 05:07:43

0001 /*
0002     SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QDialog>
0010 #include <QWidget>
0011 
0012 #include <KJob>
0013 
0014 #include "ui_statusnotifiertest.h"
0015 
0016 class StatusNotifierTestPrivate;
0017 
0018 class StatusNotifierTest : public QDialog, public Ui_StatusNotifierTest
0019 {
0020     Q_OBJECT
0021 
0022 public:
0023     StatusNotifierTest(QWidget *parent = nullptr);
0024     ~StatusNotifierTest() override;
0025 
0026     void init();
0027     void log(const QString &msg);
0028 
0029 public Q_SLOTS:
0030     int runMain();
0031     void timeout();
0032     void updateUi();
0033     void updateNotifier();
0034 
0035     void activateRequested(bool active, const QPoint &pos);
0036     void scrollRequested(int delta, Qt::Orientation orientation);
0037     void secondaryActivateRequested(const QPoint &pos);
0038 
0039     void enableJob(bool enable = true);
0040     void setJobProgress(KJob *j, unsigned long v);
0041     void result(KJob *job);
0042 
0043 private:
0044     StatusNotifierTestPrivate *d;
0045 };