~ubuntu-branches/ubuntu/raring/kbibtex/raring

« back to all changes in this revision

Viewing changes to src/websearch/websearchabstract.h

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-07-18 09:29:48 UTC
  • mfrom: (1.1.6) (2.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20110718092948-ksxjmg7kdfamolmg
Tags: 0.3-1
* First upstream release for KDE4 (Closes: #634255). A number of search
  engines are still missing, in comparison to the 0.2 series.
* Bumped Standards-Version to 3.9.2, no changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
*   Copyright (C) 2004-2010 by Thomas Fischer                             *
 
3
*   fischer@unix-ag.uni-kl.de                                             *
 
4
*                                                                         *
 
5
*   This program is free software; you can redistribute it and/or modify  *
 
6
*   it under the terms of the GNU General Public License as published by  *
 
7
*   the Free Software Foundation; either version 2 of the License, or     *
 
8
*   (at your option) any later version.                                   *
 
9
*                                                                         *
 
10
*   This program is distributed in the hope that it will be useful,       *
 
11
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
*   GNU General Public License for more details.                          *
 
14
*                                                                         *
 
15
*   You should have received a copy of the GNU General Public License     *
 
16
*   along with this program; if not, write to the                         *
 
17
*   Free Software Foundation, Inc.,                                       *
 
18
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
***************************************************************************/
 
20
#ifndef KBIBTEX_WEBSEARCH_ABSTRACT_H
 
21
#define KBIBTEX_WEBSEARCH_ABSTRACT_H
 
22
 
 
23
#include "kbibtexio_export.h"
 
24
 
 
25
#include <QObject>
 
26
#include <QMap>
 
27
#include <QString>
 
28
#include <QWidget>
 
29
#include <QMetaType>
 
30
 
 
31
#include <KIcon>
 
32
 
 
33
#include <entry.h>
 
34
 
 
35
/**
 
36
 * @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
 
37
 */
 
38
class WebSearchQueryFormAbstract : public QWidget
 
39
{
 
40
    Q_OBJECT
 
41
 
 
42
public:
 
43
    WebSearchQueryFormAbstract(QWidget *parent)
 
44
            : QWidget(parent) {
 
45
        // nothing
 
46
    }
 
47
 
 
48
    virtual bool readyToStart() const {
 
49
        return false;
 
50
    }
 
51
 
 
52
signals:
 
53
    void returnPressed();
 
54
};
 
55
 
 
56
Q_DECLARE_METATYPE(WebSearchQueryFormAbstract*)
 
57
 
 
58
/**
 
59
 * @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
 
60
 */
 
61
class KBIBTEXIO_EXPORT WebSearchAbstract : public QObject
 
62
{
 
63
    Q_OBJECT
 
64
 
 
65
public:
 
66
    WebSearchAbstract(QWidget *parent) {
 
67
        m_parent = parent;
 
68
    }
 
69
 
 
70
    static const QString queryKeyFreeText;
 
71
    static const QString queryKeyTitle;
 
72
    static const QString queryKeyAuthor;
 
73
    static const QString queryKeyYear;
 
74
 
 
75
    static const int resultCancelled;
 
76
    static const int resultNoError;
 
77
    static const int resultUnspecifiedError;
 
78
 
 
79
    virtual void startSearch() = 0;
 
80
    virtual void startSearch(const QMap<QString, QString> &query, int numResults) = 0;
 
81
    virtual QString label() const = 0;
 
82
    virtual KIcon icon() const;
 
83
    virtual WebSearchQueryFormAbstract* customWidget(QWidget *parent) = 0;
 
84
    virtual KUrl homepage() const = 0;
 
85
 
 
86
protected:
 
87
    QWidget *m_parent;
 
88
 
 
89
    virtual QString favIconUrl() const = 0;
 
90
 
 
91
    /**
 
92
     * Split a string along spaces, but keep text in quotation marks together
 
93
     */
 
94
    QStringList splitRespectingQuotationMarks(const QString &text);
 
95
 
 
96
signals:
 
97
    void foundEntry(Entry*);
 
98
    void stoppedSearch(int);
 
99
};
 
100
 
 
101
#endif // KBIBTEX_WEBSEARCH_ABSTRACT_H