File: kpassivepopuptest.h

package info (click to toggle)
knotifications 5.78.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,244 kB
  • sloc: cpp: 5,507; java: 260; xml: 132; sh: 14; makefile: 12
file content (27 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (2)
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
#ifndef KPASSIVEPOPUPTEST_H
#define KPASSIVEPOPUPTEST_H

#include <QObject>
#include <QSystemTrayIcon>

class Test : public QObject
{
    Q_OBJECT

public:
    Test() : QObject() {}
    ~Test() {}

public Q_SLOTS:
    void showIt();
    void showIt2();
    void showIt3();
    void showIt4();
    void showIt5();
    void showIt6();
    void showIt7();
    void showItIcon(QSystemTrayIcon::ActivationReason);
};

#endif // KPASSIVEPOPUPTEST_H