mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
39 lines
636 B
C
39 lines
636 B
C
![]() |
/*
|
||
|
* Copyright (C) 2005-2006 by Olivier Goffart <ogoffart at kde.org>
|
||
|
*/
|
||
|
|
||
|
#ifndef __KNotifyTestWINDOW_H__
|
||
|
#define __KNotifyTestWINDOW_H__
|
||
|
|
||
|
#include <kxmlguiwindow.h>
|
||
|
#include "ui_knotifytestview.h"
|
||
|
#include <QtCore/QPointer>
|
||
|
|
||
|
class KNotification;
|
||
|
|
||
|
|
||
|
class KNotifyTestWindow : public KXmlGuiWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
KNotifyTestWindow( QWidget* parent = 0);
|
||
|
|
||
|
private:
|
||
|
Ui::KNotifyTestView view;
|
||
|
QPointer<KNotification> m_readNotif;
|
||
|
int m_nbNewMessage;
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void slotSendOnlineEvent();
|
||
|
void slotSendMessageEvent();
|
||
|
void slotMessageRead();
|
||
|
|
||
|
void slotConfigureG();
|
||
|
void slotConfigureC();
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|