~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to plasma/generic/runners/nepomuksearch/nepomuksearchrunner.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the Nepomuk Project
 
2
   Copyright (c) 2008 Sebastian Trueg <trueg@kde.org>
 
3
 
 
4
   This library is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU Library General Public
 
6
   License version 2 as published by the Free Software Foundation.
 
7
 
 
8
   This library is distributed in the hope that it will be useful,
 
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
   Library General Public License for more details.
 
12
 
 
13
   You should have received a copy of the GNU Library General Public License
 
14
   along with this library; see the file COPYING.LIB.  If not, write to
 
15
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
   Boston, MA 02110-1301, USA.
 
17
*/
 
18
 
 
19
#ifndef _NEPOMUK_SEARCH_RUNNER_H_
 
20
#define _NEPOMUK_SEARCH_RUNNER_H_
 
21
 
 
22
#include <Plasma/AbstractRunner>
 
23
 
 
24
#include <QtCore/QMutex>
 
25
#include <QtCore/QWaitCondition>
 
26
#include <QtCore/QList>
 
27
 
 
28
#include <Nepomuk/Query/Result>
 
29
 
 
30
class KFileItemActions;
 
31
 
 
32
class QAction;
 
33
 
 
34
namespace Nepomuk {
 
35
 
 
36
    class SearchRunner : public Plasma::AbstractRunner
 
37
    {
 
38
        Q_OBJECT
 
39
 
 
40
    public:
 
41
        SearchRunner( QObject* parent, const QVariantList& args );
 
42
        SearchRunner( QObject* parent, const QString& serviceId = QString() );
 
43
        ~SearchRunner();
 
44
 
 
45
        void match( Plasma::RunnerContext& context );
 
46
        void run( const Plasma::RunnerContext& context, const Plasma::QueryMatch& action );
 
47
 
 
48
        QList<QAction*> actionsForMatch(const Plasma::QueryMatch &match);
 
49
 
 
50
    protected Q_SLOTS:
 
51
        void init();
 
52
 
 
53
    private:
 
54
 
 
55
        QMutex m_mutex;
 
56
        QWaitCondition m_waiter;
 
57
 
 
58
        KFileItemActions *m_actions;
 
59
        QList<QAction*> m_konqActions;
 
60
    };
 
61
}
 
62
 
 
63
#endif