mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
60 lines
2.1 KiB
C
60 lines
2.1 KiB
C
![]() |
/***************************************************************************
|
||
|
* fdotask.h *
|
||
|
* *
|
||
|
* Copyright (C) 2008 Jason Stubbs <jasonbstubbs@gmail.com> *
|
||
|
* *
|
||
|
* 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 . *
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef FDOTASK_H
|
||
|
#define FDOTASK_H
|
||
|
|
||
|
#include "../../core/task.h"
|
||
|
|
||
|
|
||
|
namespace SystemTray
|
||
|
{
|
||
|
|
||
|
class FdoTask : public Task
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
FdoTask(WId winId, QObject *parent);
|
||
|
~FdoTask();
|
||
|
|
||
|
bool isEmbeddable() const;
|
||
|
QString taskId() const;
|
||
|
QIcon icon() const;
|
||
|
void abandon(Plasma::Applet *host);
|
||
|
virtual bool isWidget() const;
|
||
|
virtual TaskType type() const { return TypeX11Task; }
|
||
|
|
||
|
signals:
|
||
|
void taskDeleted(WId winId);
|
||
|
|
||
|
protected:
|
||
|
virtual QGraphicsWidget* createWidget(Plasma::Applet *applet);
|
||
|
|
||
|
private:
|
||
|
class Private;
|
||
|
Private* const d;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|