File indexing completed on 2024-04-21 15:02:36

0001 /*
0002     SPDX-FileCopyrightText: 2005-2006 Olivier Goffart <ogoffart at kde.org>
0003 */
0004 
0005 #ifndef __KNotifyTestWINDOW_H__
0006 #define __KNotifyTestWINDOW_H__
0007 
0008 #include "ui_knotifytestview.h"
0009 #include <QPointer>
0010 #include <kxmlguiwindow.h>
0011 
0012 class KNotification;
0013 
0014 class KNotifyTestWindow : public KXmlGuiWindow
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     KNotifyTestWindow(QWidget *parent = nullptr);
0020 
0021 private:
0022     Ui::KNotifyTestView view;
0023     QPointer<KNotification> m_readNotif;
0024     int m_nbNewMessage;
0025 
0026 public Q_SLOTS:
0027     void slotSendOnlineEvent();
0028     void slotSendMessageEvent();
0029     void slotMessageRead();
0030 
0031     void slotConfigureG();
0032     void slotConfigureC();
0033 };
0034 
0035 #endif