Merge "tests: Remove Linux-specific includes for dlsym"
[trojita.git] / src / Plugins / PluginJob.cpp
blob18074a9ac829d12a32b9a91caa8227ea43575a9a
1 /* Copyright (C) 2013 Pali Rohár <pali.rohar@gmail.com>
3 This file is part of the Trojita Qt IMAP e-mail client,
4 http://trojita.flaska.net/
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of
9 the License or (at your option) version 3 or any later version
10 accepted by the membership of KDE e.V. (or its successor approved
11 by the membership of KDE e.V.), which shall act as a proxy
12 defined in Section 14 of version 3 of the license.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include <QTimer>
25 #include "PluginJob.h"
27 namespace Plugins
30 void PluginJob::start()
32 if (m_running)
33 return;
34 m_running = true;
35 QTimer::singleShot(0, this, SLOT(doStart()));
38 void PluginJob::stop()
40 if (!m_running)
41 return;
42 QTimer::singleShot(0, this, SLOT(doStop()));
45 bool PluginJob::autoDelete()
47 return m_autoDelete;
50 void PluginJob::setAutoDelete(bool b)
52 m_autoDelete = b;
55 bool PluginJob::isRunning()
57 return m_running;
60 void PluginJob::finished()
62 m_running = false;
63 if (m_autoDelete)
64 deleteLater();
67 PluginJob::PluginJob(QObject *parent) : QObject(parent), m_running(false), m_autoDelete(false)
71 PluginJob::~PluginJob()
77 // vim: set et ts=4 sts=4 sw=4