kdelibs/kdeui/notifications/kstatusnotifieritemprivate_p.h
Ivailo Monev 61333c4671 generic: namespaced Qt4/Katie build fixes
most of the changes were done trought Katie's namefsck script which
convertes forward class declarations to include directives, however
other fixes here and there were needed as well as some questionable
changes to Q_DECLARE_TYPEINFO() macro calls because they most likely
have to do the namespacing themselfs (QT_BEGIN/END_NAMESPACE, and
probably will be in Katie) meaning that some of the changes may be
temporary and reverted later.

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2017-08-04 09:24:39 +00:00

139 lines
3.8 KiB
C++

/* This file is part of the KDE libraries
Copyright 2009 by Marco Martin <notmart@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License (LGPL) as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later
version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KSTATUSNOTIFIERITEMPRIVATE_H
#define KSTATUSNOTIFIERITEMPRIVATE_H
#include <QtCore/qpointer.h>
#include <QtGui/qevent.h>
#include <ksystemtrayicon.h>
#include "kstatusnotifieritem.h"
#include "kstatusnotifieritemdbus_p.h"
#include "statusnotifierwatcher_interface.h"
#include "notifications_interface.h"
class KActionCollection;
class KSystemTrayIcon;
class KMenu;
#include <QMovie>
#include <QAction>
// this class is needed because we can't just put an event filter on it:
// the events that are passed to QSystemTrayIcon are done so in a way that
// bypasses the usual event filtering mechanisms *sigh*
class KStatusNotifierLegacyIcon : public KSystemTrayIcon
{
Q_OBJECT
public:
KStatusNotifierLegacyIcon(QWidget *parent)
: KSystemTrayIcon(parent)
{
}
bool event(QEvent *e)
{
if (e->type() == QEvent::Wheel) {
QWheelEvent *wheelEvent = static_cast<QWheelEvent *>(e);
emit wheel(wheelEvent->delta());
}
return false;
}
signals:
void wheel(int);
};
class KStatusNotifierItemPrivate
{
public:
KStatusNotifierItemPrivate(KStatusNotifierItem *item);
void init(const QString &extraId);
void registerToDaemon();
void serviceChange(const QString &name, const QString &oldOwner, const QString &newOwner);
void setLegacySystemTrayEnabled(bool enabled);
void syncLegacySystemTrayIcon();
void contextMenuAboutToShow();
void maybeQuit();
void minimizeRestore();
void minimizeRestore(bool show);
void hideMenu();
void setLegacyMode(bool legacy);
void checkForRegisteredHosts();
void legacyWheelEvent(int delta);
void legacyActivated(QSystemTrayIcon::ActivationReason reason);
KDbusImageStruct imageToStruct(const QImage &image);
KDbusImageVector iconToVector(const QIcon &icon);
bool checkVisibility(QPoint pos, bool perform = true);
static const int s_protocolVersion;
KStatusNotifierItem *q;
KStatusNotifierItem::ItemCategory category;
QString id;
QString title;
KStatusNotifierItem::ItemStatus status;
QString iconName;
KDbusImageVector serializedIcon;
QIcon icon;
QString overlayIconName;
KDbusImageVector serializedOverlayIcon;
QIcon overlayIcon;
QString attentionIconName;
QIcon attentionIcon;
KDbusImageVector serializedAttentionIcon;
QString movieName;
QPointer<QMovie> movie;
QString toolTipIconName;
KDbusImageVector serializedToolTipIcon;
QIcon toolTipIcon;
QString toolTipTitle;
QString toolTipSubTitle;
QString iconThemePath;
QString menuObjectPath;
KMenu *menu;
KActionCollection* actionCollection;
QWidget *associatedWidget;
QAction* titleAction;
org::kde::StatusNotifierWatcher *statusNotifierWatcher;
org::freedesktop::Notifications *notificationsClient;
KSystemTrayIcon *systemTrayIcon;
KStatusNotifierItemDBus *statusNotifierItemDBus;
bool hasQuit : 1;
bool onAllDesktops : 1;
bool standardActionsEnabled : 1;
};
#endif