1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
/*
* SPDX-FileCopyrightText: 2001 Stefan Schimanski <1Stein@gmx.de>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "ktimer.h"
#include <KConfigGroup>
#include <KGuiItem>
#include <KHelpClient>
#include <KLineEdit>
#include <KSharedConfig>
#include <KStandardAction>
#include <KStandardGuiItem>
#include <KStatusNotifierItem>
#include <QAction>
#include <QTimer>
class KTimerJobItem : public QTreeWidgetItem
{
public:
KTimerJobItem(KTimerJob *job, QTreeWidget *parent)
: QTreeWidgetItem()
{
parent->addTopLevelItem(this);
m_job = job;
m_error = false;
update();
}
KTimerJobItem(KTimerJob *job, QTreeWidget *parent, QTreeWidgetItem *after)
: QTreeWidgetItem()
{
int otherItemIndex = parent->indexOfTopLevelItem(after);
parent->insertTopLevelItem(otherItemIndex + 1, this);
m_job = job;
m_error = false;
update();
}
~KTimerJobItem() override
{
delete m_job;
}
KTimerJob *job()
{
return m_job;
}
void setStatus(bool error)
{
m_error = error;
update();
}
void update()
{
setText(0, m_job->formatTime(m_job->value()));
if (m_error)
setIcon(0, QIcon::fromTheme(QStringLiteral("process-stop")));
else
setIcon(0, QPixmap());
setText(1, m_job->formatTime(m_job->delay()));
switch (m_job->state()) {
case KTimerJob::Stopped:
setIcon(2, QIcon::fromTheme(QStringLiteral("media-playback-stop")));
break;
case KTimerJob::Paused:
setIcon(2, QIcon::fromTheme(QStringLiteral("media-playback-pause")));
break;
case KTimerJob::Started:
setIcon(2, QIcon::fromTheme(QStringLiteral("arrow-right")));
break;
}
setText(3, m_job->command());
}
private:
bool m_error;
KTimerJob *m_job;
};
/***************************************************************/
struct KTimerPrefPrivate {
QList<KTimerJob *> jobs;
};
KTimerPref::KTimerPref(QWidget *parent)
: QDialog(parent)
{
d = new KTimerPrefPrivate;
setupUi(this);
// set icons
m_stop->setIcon(QIcon::fromTheme(QStringLiteral("media-playback-stop")));
m_pause->setIcon(QIcon::fromTheme(QStringLiteral("media-playback-pause")));
m_start->setIcon(QIcon::fromTheme(QStringLiteral("arrow-right")));
// create tray icon
auto tray = new KStatusNotifierItem(this);
tray->setIconByName(QStringLiteral("ktimer"));
tray->setCategory(KStatusNotifierItem::ApplicationStatus);
tray->setStatus(KStatusNotifierItem::Active);
// set help button gui item
KGuiItem::assign(m_help, KStandardGuiItem::help());
// Exit
QAction *exitAction = KStandardAction::quit(this, SLOT(exit()), this);
addAction(exitAction);
// connect
connect(m_add, &QPushButton::clicked, this, &KTimerPref::add);
connect(m_remove, &QPushButton::clicked, this, &KTimerPref::remove);
connect(m_help, &QPushButton::clicked, this, &KTimerPref::help);
connect(m_list, &QTreeWidget::currentItemChanged, this, &KTimerPref::currentChanged);
loadJobs(KSharedConfig::openConfig().data());
show();
}
KTimerPref::~KTimerPref()
{
delete d;
}
void KTimerPref::saveAllJobs()
{
saveJobs(KSharedConfig::openConfig().data());
}
void KTimerPref::add()
{
auto job = new KTimerJob;
auto item = new KTimerJobItem(job, m_list);
connect(job, &KTimerJob::delayChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::valueChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::stateChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::commandChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::finished, this, &KTimerPref::jobFinished);
job->setUser(item);
// Qt drops currentChanged signals on first item (bug?)
if (m_list->topLevelItemCount() == 1)
currentChanged(item, nullptr);
m_list->setCurrentItem(item);
m_list->update();
}
void KTimerPref::remove()
{
delete m_list->currentItem();
m_list->update();
}
void KTimerPref::help()
{
KHelpClient::invokeHelp();
}
// note, don't use old, but added it so we can connect to the new one
void KTimerPref::currentChanged(QTreeWidgetItem *i, QTreeWidgetItem * /* old */)
{
auto item = static_cast<KTimerJobItem *>(i);
if (item) {
KTimerJob *job = item->job();
m_state->setEnabled(true);
m_settings->setEnabled(true);
m_remove->setEnabled(true);
m_delayH->disconnect();
m_delayM->disconnect();
m_delay->disconnect();
m_loop->disconnect();
m_one->disconnect();
m_consecutive->disconnect();
m_start->disconnect();
m_pause->disconnect();
m_stop->disconnect();
m_counter->disconnect();
m_slider->disconnect();
m_commandLine->disconnect();
m_commandLine->lineEdit()->disconnect();
// Set hour, minute and second QSpinBoxes before we connect to signals.
int h, m, s;
job->secondsToHMS(job->delay(), &h, &m, &s);
m_delayH->setValue(h);
m_delayM->setValue(m);
m_delay->setValue(s);
m_commandLine->lineEdit()->setText(job->command());
m_loop->setChecked(job->loop());
m_one->setChecked(job->oneInstance());
m_consecutive->setChecked(job->consecutive());
m_counter->display((int)job->value());
m_slider->setMaximum(job->delay());
m_slider->setValue(job->value());
connect(m_commandLine->lineEdit(), &QLineEdit::textChanged, job, &KTimerJob::setCommand);
connect(m_delayH, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &KTimerPref::delayChanged);
connect(m_delayM, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &KTimerPref::delayChanged);
connect(m_delay, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &KTimerPref::delayChanged);
connect(m_loop, &QCheckBox::toggled, job, &KTimerJob::setLoop);
connect(m_one, &QCheckBox::toggled, job, &KTimerJob::setOneInstance);
connect(m_consecutive, &QCheckBox::toggled, job, &KTimerJob::setConsecutive);
connect(m_stop, &QToolButton::clicked, job, &KTimerJob::stop);
connect(m_pause, &QToolButton::clicked, job, &KTimerJob::pause);
connect(m_start, &QToolButton::clicked, job, &KTimerJob::start);
connect(m_slider, SIGNAL(valueChanged(int)), job, SLOT(setValue(int)));
} else {
m_state->setEnabled(false);
m_settings->setEnabled(false);
m_remove->setEnabled(false);
}
}
void KTimerPref::jobChanged(KTimerJob *job)
{
auto item = static_cast<KTimerJobItem *>(job->user());
if (item) {
item->update();
m_list->update();
if (item == m_list->currentItem()) {
// XXX optimize
m_slider->setMaximum(job->delay());
m_slider->setValue(job->value());
m_counter->display((int)job->value());
}
}
}
void KTimerPref::jobFinished(KTimerJob *job, bool error)
{
auto item = static_cast<KTimerJobItem *>(job->user());
item->setStatus(error);
if (m_list->itemBelow(m_list->currentItem()) != nullptr && (static_cast<KTimerJobItem *>(m_list->itemBelow(m_list->currentItem())))->job()->consecutive()) {
m_list->setCurrentItem(m_list->itemBelow(m_list->currentItem()));
(static_cast<KTimerJobItem *>(m_list->currentItem()))->job()->start();
}
m_list->update();
}
/* Hour/Minute/Second was changed. This slot calculates the seconds until we start
the job and inform the current job */
void KTimerPref::delayChanged()
{
auto item = static_cast<KTimerJobItem *>(m_list->currentItem());
if (item) {
KTimerJob *job = item->job();
int time_sec = job->timeToSeconds(m_delayH->value(), m_delayM->value(), m_delay->value());
job->setDelay(time_sec);
}
}
// Really quits the application
void KTimerPref::exit()
{
done(0);
qApp->quit();
}
void KTimerPref::done(int result)
{
saveAllJobs();
QDialog::done(result);
}
void KTimerPref::saveJobs(KConfig *cfg)
{
const int nbList = m_list->topLevelItemCount();
for (int num = 0; num < nbList; ++num) {
auto item = static_cast<KTimerJobItem *>(m_list->topLevelItem(num));
item->job()->save(cfg, QStringLiteral("Job%1").arg(num));
}
KConfigGroup jobscfg = cfg->group(QStringLiteral("Jobs"));
jobscfg.writeEntry("Number", m_list->topLevelItemCount());
jobscfg.sync();
}
void KTimerPref::loadJobs(KConfig *cfg)
{
const int num = cfg->group(QStringLiteral("Jobs")).readEntry("Number", 0);
for (int n = 0; n < num; n++) {
auto job = new KTimerJob;
auto item = new KTimerJobItem(job, m_list);
connect(job, &KTimerJob::delayChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::valueChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::stateChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::commandChanged, this, &KTimerPref::jobChanged);
connect(job, &KTimerJob::finished, this, &KTimerPref::jobFinished);
job->load(cfg, QStringLiteral("Job%1").arg(n));
job->setUser(item);
jobChanged(job);
}
m_list->update();
}
/*********************************************************************/
struct KTimerJobPrivate {
unsigned delay;
QString command;
bool loop;
bool oneInstance;
bool consecutive;
unsigned value;
KTimerJob::States state;
QList<QProcess *> processes;
void *user;
QTimer *timer;
};
KTimerJob::KTimerJob(QObject *parent)
: QObject(parent)
{
d = new KTimerJobPrivate;
d->delay = 100;
d->loop = false;
d->oneInstance = true;
d->consecutive = false;
d->value = 100;
d->state = Stopped;
d->user = nullptr;
d->timer = new QTimer(this);
connect(d->timer, &QTimer::timeout, this, &KTimerJob::timeout);
}
KTimerJob::~KTimerJob()
{
delete d;
}
void KTimerJob::save(KConfig *cfg, const QString &grp)
{
KConfigGroup groupcfg = cfg->group(grp);
groupcfg.writeEntry("Delay", d->delay);
groupcfg.writePathEntry("Command", d->command);
groupcfg.writeEntry("Loop", d->loop);
groupcfg.writeEntry("OneInstance", d->oneInstance);
groupcfg.writeEntry("Consecutive", d->consecutive);
groupcfg.writeEntry("State", (int)d->state);
}
void KTimerJob::load(KConfig *cfg, const QString &grp)
{
KConfigGroup groupcfg = cfg->group(grp);
setDelay(groupcfg.readEntry("Delay", 100));
setCommand(groupcfg.readPathEntry("Command", QString()));
setLoop(groupcfg.readEntry("Loop", false));
setOneInstance(groupcfg.readEntry("OneInstance", d->oneInstance));
setConsecutive(groupcfg.readEntry("Consecutive", d->consecutive));
setState((States)groupcfg.readEntry("State", (int)Stopped));
}
// Format given seconds to hour:minute:seconds and return QString
QString KTimerJob::formatTime(int seconds) const
{
int h, m, s;
secondsToHMS(seconds, &h, &m, &s);
return QStringLiteral("%1:%2:%3").arg(h).arg(m, 2, 10, QLatin1Char('0')).arg(s, 2, 10, QLatin1Char('0'));
}
// calculate seconds from hour, minute and seconds, returns seconds
int KTimerJob::timeToSeconds(int hours, int minutes, int seconds) const
{
return hours * 3600 + minutes * 60 + seconds;
}
// calculates hours, minutes and seconds from given secs.
void KTimerJob::secondsToHMS(int secs, int *hours, int *minutes, int *seconds) const
{
int s = secs;
(*hours) = s / 3600;
s = s % 3600;
(*minutes) = s / 60;
(*seconds) = s % 60;
}
void *KTimerJob::user()
{
return d->user;
}
void KTimerJob::setUser(void *user)
{
d->user = user;
}
unsigned KTimerJob::delay() const
{
return d->delay;
}
void KTimerJob::pause()
{
setState(Paused);
}
void KTimerJob::stop()
{
setState(Stopped);
}
void KTimerJob::start()
{
setState(Started);
}
void KTimerJob::setDelay(int sec)
{
setDelay((unsigned)sec);
}
void KTimerJob::setValue(int value)
{
setValue((unsigned)value);
}
void KTimerJob::setDelay(unsigned int sec)
{
if (d->delay != sec) {
d->delay = sec;
if (d->state == Stopped)
setValue(sec);
Q_EMIT delayChanged(this, sec);
Q_EMIT changed(this);
}
}
QString KTimerJob::command() const
{
return d->command;
}
void KTimerJob::setCommand(const QString &cmd)
{
if (d->command != cmd) {
d->command = cmd;
Q_EMIT commandChanged(this, cmd);
Q_EMIT changed(this);
}
}
bool KTimerJob::loop() const
{
return d->loop;
}
void KTimerJob::setLoop(bool loop)
{
if (d->loop != loop) {
d->loop = loop;
Q_EMIT loopChanged(this, loop);
Q_EMIT changed(this);
}
}
bool KTimerJob::oneInstance() const
{
return d->oneInstance;
}
void KTimerJob::setOneInstance(bool one)
{
if (d->oneInstance != one) {
d->oneInstance = one;
Q_EMIT oneInstanceChanged(this, one);
Q_EMIT changed(this);
}
}
bool KTimerJob::consecutive() const
{
return d->consecutive;
}
void KTimerJob::setConsecutive(bool consecutive)
{
if (d->consecutive != consecutive) {
d->consecutive = consecutive;
Q_EMIT consecutiveChanged(this, consecutive);
Q_EMIT changed(this);
}
}
unsigned KTimerJob::value() const
{
return d->value;
}
void KTimerJob::setValue(unsigned int value)
{
if (d->value != value) {
d->value = value;
Q_EMIT valueChanged(this, value);
Q_EMIT changed(this);
}
}
KTimerJob::States KTimerJob::state() const
{
return d->state;
}
void KTimerJob::setState(KTimerJob::States state)
{
if (d->state != state) {
if (state == Started)
d->timer->start(1000);
else
d->timer->stop();
if (state == Stopped)
setValue(d->delay);
d->state = state;
Q_EMIT stateChanged(this, state);
Q_EMIT changed(this);
}
}
void KTimerJob::timeout()
{
if (d->state == Started && d->value != 0) {
setValue(d->value - 1);
if (d->value == 0) {
fire();
if (d->loop)
setValue(d->delay);
else
stop();
}
}
}
void KTimerJob::processExited(int, QProcess::ExitStatus status)
{
auto proc = static_cast<QProcess *>(sender());
const bool ok = status == 0;
const int i = d->processes.indexOf(proc);
if (i != -1)
delete d->processes.takeAt(i);
if (!ok)
Q_EMIT error(this);
Q_EMIT finished(this, !ok);
}
void KTimerJob::fire()
{
if (!d->oneInstance || d->processes.isEmpty()) {
auto proc = new QProcess;
d->processes.append(proc);
connect(proc, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), this, &KTimerJob::processExited);
if (!d->command.simplified().isEmpty()) {
QStringList splitArguments = QProcess::splitCommand(d->command);
if (!splitArguments.isEmpty()) {
const QString prog = splitArguments.takeFirst();
proc->start(prog, splitArguments);
}
Q_EMIT fired(this);
}
if (proc->state() == QProcess::NotRunning) {
const int i = d->processes.indexOf(proc);
if (i != -1)
delete d->processes.takeAt(i);
Q_EMIT error(this);
Q_EMIT finished(this, true);
}
}
}
#include "moc_ktimer.cpp"
|