F:/KPlato/koffice/libs/kofficecore/threadAction/KoAction.cpp

Aller à la documentation de ce fichier.
00001 /*
00002  * Copyright (C) 2006 Thomas Zander <zander@kde.org>
00003  *
00004  * This library is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU Library General Public
00006  * License as published by the Free Software Foundation; either
00007  * version 2 of the License, or (at your option) any later version.
00008  *
00009  * This library is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  * Library General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU Library General Public License
00015  * along with this library; see the file COPYING.LIB.  If not, write to
00016  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017  * Boston, MA 02110-1301, USA.
00018  */
00019 #include "KoJobsListPolicy.h"
00020 #include "KoAction.h"
00021 #include "KoExecutePolicy.h"
00022 #include "ActionJob_p.h"
00023 
00024 #include <WeaverInterface.h>
00025 
00026 #include <QVariant>
00027 
00028 KoAction::KoAction(QObject *parent)
00029     : QObject(parent),
00030     m_policy(KoExecutePolicy::simpleQueuedPolicy),
00031     m_weaver(0),
00032     m_enabled(true)
00033 {
00034     m_jobsQueue = new KoJobsListPolicy();
00035 }
00036 KoAction::~KoAction() {
00037     delete m_jobsQueue;
00038     m_jobsQueue = 0;
00039 }
00040 
00041 void KoAction::execute() {
00042     execute(0);
00043 }
00044 
00045 void KoAction::execute(QVariant *params) {
00046     if(!m_enabled)
00047         return;
00048     Q_ASSERT(m_weaver);
00049     m_policy->schedule(this, m_jobsQueue, params);
00050 }
00051 
00052 void KoAction::doAction(QVariant *params) {
00053     if(params)
00054         emit triggered(*params);
00055     else {
00056         QVariant variant(0);
00057         emit triggered(&variant);
00058     }
00059 }
00060 
00061 void KoAction::doActionUi(QVariant *params) {
00062     if(params)
00063         emit updateUi(*params);
00064     else {
00065         QVariant variant(0);
00066         emit updateUi(&variant);
00067     }
00068 }
00069 
00070 int KoAction::jobCount() {
00071     return m_jobsQueue->count();
00072 }
00073 
00074 #include "KoAction.moc"

Généré le Wed Nov 22 23:41:04 2006 pour KPlato par  doxygen 1.5.1-p1