You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
3.7 KiB
169 lines
3.7 KiB
/*************************************************************************** |
|
* task.cpp * |
|
* * |
|
* 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 . * |
|
***************************************************************************/ |
|
|
|
#include "task.h" |
|
|
|
#include <QQuickItem> |
|
#include <QQuickWindow> |
|
#include <QtCore/QTimer> |
|
//#include <X11/Xlib.h> |
|
|
|
namespace SystemTray |
|
{ |
|
|
|
|
|
class Task::Private |
|
{ |
|
public: |
|
Private() |
|
: status(Task::UnknownStatus), |
|
category(Task::UnknownCategory), |
|
shown(true), |
|
expanded(false) |
|
{ |
|
} |
|
|
|
Task::Status status; |
|
Task::Category category; |
|
QString name; |
|
bool shown; |
|
bool expanded; |
|
}; |
|
|
|
|
|
Task::Task(QObject *parent) |
|
: QObject(parent), |
|
d(new Private) |
|
{ |
|
} |
|
|
|
Task::~Task() |
|
{ |
|
emit destroyed(this); |
|
delete d; |
|
} |
|
|
|
|
|
void Task::emitChanged() |
|
{ |
|
emit changed(this); |
|
} |
|
|
|
void Task::setCategory(Category category) |
|
{ |
|
if (d->category == category) { |
|
return; |
|
} |
|
|
|
d->category = category; |
|
emit changedCategory(); |
|
emit changed(this); |
|
} |
|
|
|
Task::Category Task::category() const |
|
{ |
|
return d->category; |
|
} |
|
|
|
void Task::setStatus(Status status) |
|
{ |
|
if (d->status == status) { |
|
return; |
|
} |
|
|
|
d->status = status; |
|
emit changedStatus(); |
|
emit changed(this); |
|
} |
|
|
|
Task::Status Task::status() const |
|
{ |
|
return d->status; |
|
} |
|
|
|
QString Task::name() const |
|
{ |
|
return d->name; |
|
} |
|
|
|
bool Task::shown() const |
|
{ |
|
return d->shown; |
|
} |
|
|
|
void Task::setShown(bool show) |
|
{ |
|
if (d->shown != show) { |
|
d->shown = show; |
|
emit shownChanged(); |
|
} |
|
} |
|
|
|
bool Task::expanded() const |
|
{ |
|
//virtual method to be overriden if expanded is supported |
|
return false; |
|
} |
|
|
|
void Task::setExpanded(bool expanded) |
|
{ |
|
Q_UNUSED(expanded); |
|
//virtual method to be overriden if expanded is supported |
|
} |
|
|
|
QQuickItem* Task::taskItem() |
|
{ |
|
return 0; |
|
} |
|
|
|
QQuickItem* Task::taskItemExpanded() |
|
{ |
|
return 0; |
|
} |
|
|
|
|
|
void Task::setName(QString name) |
|
{ |
|
if (d->name != name) { |
|
d->name = name; |
|
emit changedName(); |
|
} |
|
} |
|
|
|
QPointF Task::popupPosition(QQuickItem* visualParent, int x, int y) |
|
{ |
|
if (!visualParent) { |
|
return QPointF(0, 0); |
|
} |
|
|
|
QPointF pos = visualParent->mapToScene(QPointF(x, y)); |
|
|
|
if (visualParent->window() && visualParent->window()->screen()) { |
|
pos = visualParent->window()->mapToGlobal(pos.toPoint()); |
|
} else { |
|
return QPoint(); |
|
} |
|
return pos; |
|
} |
|
|
|
} |
|
|
|
|
|
|