nheko/include/TrayIcon.h

60 lines
1.7 KiB
C
Raw Normal View History

2017-05-21 15:36:06 +02:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <QAction>
#include <QIcon>
#include <QIconEngine>
#include <QPainter>
#include <QRect>
#include <QSystemTrayIcon>
class MsgCountComposedIcon : public QIconEngine
{
public:
2017-09-10 11:59:21 +02:00
MsgCountComposedIcon(const QString &filename);
2017-05-21 15:36:06 +02:00
2017-09-10 11:59:21 +02:00
virtual void paint(QPainter *p, const QRect &rect, QIcon::Mode mode, QIcon::State state);
virtual QIconEngine *clone() const;
virtual QList<QSize> availableSizes(QIcon::Mode mode, QIcon::State state) const;
2017-10-01 17:15:23 +02:00
virtual QPixmap pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state);
2017-05-21 15:36:06 +02:00
2017-09-10 11:59:21 +02:00
int msgCount = 0;
2017-05-21 15:36:06 +02:00
private:
2017-09-10 11:59:21 +02:00
const int BubbleDiameter = 17;
2017-05-21 15:36:06 +02:00
2017-09-10 11:59:21 +02:00
QIcon icon_;
2017-05-21 15:36:06 +02:00
};
class TrayIcon : public QSystemTrayIcon
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-05-21 15:36:06 +02:00
public:
2017-09-10 11:59:21 +02:00
TrayIcon(const QString &filename, QWidget *parent);
2017-05-21 15:36:06 +02:00
public slots:
2017-09-10 11:59:21 +02:00
void setUnreadCount(int count);
2017-05-21 15:36:06 +02:00
private:
2017-09-10 11:59:21 +02:00
QAction *viewAction_;
QAction *quitAction_;
2017-05-21 15:36:06 +02:00
2017-09-10 11:59:21 +02:00
MsgCountComposedIcon *icon_;
2017-05-21 15:36:06 +02:00
};