~ubuntu-branches/ubuntu/quantal/kde-runtime/quantal

« back to all changes in this revision

Viewing changes to nepomuk/services/queryservice/searchrunnable.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-06-03 21:50:00 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20120603215000-vn7oarsq0ynrydj5
Tags: upstream-4.8.80
Import upstream version 4.8.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
   This file is part of the Nepomuk KDE project.
3
 
   Copyright (C) 2007-2010 Sebastian Trueg <trueg@kde.org>
4
 
 
5
 
   This library is free software; you can redistribute it and/or
6
 
   modify it under the terms of the GNU Library General Public
7
 
   License version 2 as published by the Free Software Foundation.
8
 
 
9
 
   This library is distributed in the hope that it will be useful,
10
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
   Library General Public License for more details.
13
 
 
14
 
   You should have received a copy of the GNU Library General Public License
15
 
   along with this library; see the file COPYING.LIB.  If not, write to
16
 
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 
   Boston, MA 02110-1301, USA.
18
 
 */
19
 
 
20
 
#ifndef _NEPOMUK_SEARCH_THREAD_H_
21
 
#define _NEPOMUK_SEARCH_THREAD_H_
22
 
 
23
 
#include <QtCore/QRunnable>
24
 
#include <QtCore/QPointer>
25
 
#include <QtCore/QMutex>
26
 
 
27
 
#include <Nepomuk/Query/Result>
28
 
 
29
 
#include "folder.h"
30
 
 
31
 
 
32
 
namespace Soprano {
33
 
    class QueryResultIterator;
34
 
}
35
 
 
36
 
namespace Nepomuk {
37
 
    namespace Query {
38
 
        class Folder;
39
 
 
40
 
        class SearchRunnable : public QRunnable
41
 
        {
42
 
        public:
43
 
            SearchRunnable( Folder* folder );
44
 
            ~SearchRunnable();
45
 
 
46
 
            /**
47
 
             * Cancel the search and detach it from the folder.
48
 
             */
49
 
            void cancel();
50
 
 
51
 
        Q_SIGNALS:
52
 
            void newResult( const Nepomuk::Query::Result& result );
53
 
 
54
 
        protected:
55
 
            void run();
56
 
 
57
 
        private:
58
 
            Nepomuk::Query::Result extractResult( const Soprano::QueryResultIterator& it ) const;
59
 
 
60
 
            QPointer<Folder> m_folder;
61
 
            mutable QMutex m_folderMutex;
62
 
        };
63
 
    }
64
 
}
65
 
 
66
 
#endif