~lukas-kde/unity-notifications/cmdLineCheck

« back to all changes in this revision

Viewing changes to tools/clientMainWindow.h

  • Committer: CI Train Bot
  • Author(s): Pete Woods
  • Date: 2015-06-23 15:50:11 UTC
  • mfrom: (224.1.8 add-dbus-tests)
  • Revision ID: ci-train-bot@canonical.com-20150623155011-bnt9ubw5elnay015
Add end to end DBus tests and use XML introspection data
Approved by: Charles Kerr

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <QListView>
25
25
#include "ui_clientMainWindow.h"
26
26
#include "notify-backend.h"
27
 
#include "notification.h"
 
27
#include "Notification.h"
28
28
 
29
29
class NotificationClient;
30
30
 
35
35
    ClientMainWindow(NotificationClient &cl, QWidget *parent=nullptr);
36
36
    ~ClientMainWindow();
37
37
 
38
 
public slots:
 
38
public Q_SLOTS:
39
39
    void appendText(QString text);
40
40
 
41
41
private:
42
42
    NotificationClient &client;
43
43
    void sendNotification(Notification::Type type, Notification::Urgency urg, QString text);
44
44
 
45
 
private slots:
 
45
private Q_SLOTS:
46
46
    void sendLowNotification();
47
47
    void sendNormalNotification();
48
48
    void sendCriticalNotification();