File: kstatusnotifieritemtest.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 (31 lines) | stat: -rw-r--r-- 604 bytes parent folder | download
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
28
29
30
31
/*
    This file is part of the KDE libraries
    SPDX-FileCopyrightText: 2009 Marco Martin <notmart@gmail.com>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#ifndef KSTATUSNOTIFIERITEMTEST_H
#define KSTATUSNOTIFIERITEMTEST_H

#include <QObject>

class KStatusNotifierItem;

class KStatusNotifierItemTest : public QObject
{
    Q_OBJECT

public:
    KStatusNotifierItemTest(QObject *parent, KStatusNotifierItem *tray);
    //~KStatusNotifierItemTest();

public Q_SLOTS:
    void setNeedsAttention();
    void setActive();
    void setPassive();
private:
    KStatusNotifierItem *m_tray;
};

#endif