2014-11-13 19:30:51 +02:00
|
|
|
/***********************************************************************************************************************
|
|
|
|
* KDE System Tray (Plasmoid)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 ROSA <support@rosalab.ru>
|
|
|
|
* License: GPLv2+
|
|
|
|
* Authors: Dmitry Ashkadov <dmitry.ashkadov@rosalab.ru>
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA .
|
|
|
|
**********************************************************************************************************************/
|
|
|
|
|
|
|
|
|
2015-07-11 18:46:07 +03:00
|
|
|
#ifndef SYSTEMTRAY__WIDGETITEM_H
|
|
|
|
#define SYSTEMTRAY__WIDGETITEM_H
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Includess
|
|
|
|
#include "../core/task.h"
|
|
|
|
|
|
|
|
#include <QtDeclarative/QDeclarativeItem>
|
|
|
|
|
2015-05-20 13:39:58 +00:00
|
|
|
#include <Plasma/Applet>
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
namespace SystemTray
|
|
|
|
{
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// class WidgetItem
|
|
|
|
/** @class WidgetItem
|
|
|
|
* Represents declarative item containing an specified graphics widget.
|
|
|
|
*/
|
|
|
|
class WidgetItem: public QDeclarativeItem
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(QObject* applet READ applet WRITE setApplet) ///< host applet
|
|
|
|
Q_PROPERTY(QObject* task READ task WRITE setTask NOTIFY changedTask) ///< task
|
|
|
|
public:
|
|
|
|
explicit WidgetItem(QDeclarativeItem *parent = 0);
|
|
|
|
virtual ~WidgetItem();
|
|
|
|
|
|
|
|
public:
|
|
|
|
QObject *task() const { return m_task.data(); }
|
|
|
|
void setTask(QObject *task);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return applet as a host for widget
|
|
|
|
*/
|
|
|
|
QObject *applet() const { return m_applet; }
|
|
|
|
void setApplet(QObject *applet);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void changedTask();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void afterWidthChanged();
|
|
|
|
void afterHeightChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void bind();
|
|
|
|
void unbind();
|
|
|
|
|
|
|
|
Plasma::Applet *m_applet;
|
|
|
|
QWeakPointer<Task> m_task;
|
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace SystemTray
|
|
|
|
|
2015-07-11 18:46:07 +03:00
|
|
|
#endif // SYSTEMTRAY__WIDGETITEM_H
|