mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
26 lines
432 B
C
26 lines
432 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: Andrew Stanley-Jones <asj@cban.com>
|
||
|
SPDX-FileCopyrightText: 2004 Esben Mose Hansen <kde@mosehansen.dk>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
#include <KStatusNotifierItem>
|
||
|
|
||
|
class Klipper;
|
||
|
|
||
|
class KlipperTray : public KStatusNotifierItem
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
KlipperTray();
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void slotSetToolTipFromHistory();
|
||
|
|
||
|
private:
|
||
|
Klipper *m_klipper;
|
||
|
};
|