~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/webquerycitebase.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2009-06-15 12:41:19 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090615124119-eoojhlvkmw3o9tkm
Tags: 0.2.2-1
* New upstream version (Closes: #487301, #507837, #518959, #520392).
* Bumped Standards-Version to 3.8.1. No changes necessary.
* Added 'DM-Upload-Allowed: yes'.
* Added missing '${misc:Depends}'.
* Support for per-file encoding settings (Closes: #514356)
* Upgrade debhelper compatibility to version 5.
* Update debian/copyright for 2009 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *   Copyright (C) 2004-2005 by Thomas Fischer                             *
 
2
 *   Copyright (C) 2004-2009 by Thomas Fischer                             *
3
3
 *   fischer@unix-ag.uni-kl.de                                             *
4
4
 *                                                                         *
5
5
 *   This program is free software; you can redistribute it and/or modify  *
24
24
 
25
25
namespace KBibTeX
26
26
{
 
27
    /**
 
28
     @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
 
29
    */
 
30
    class WebQueryCitebaseWidget : public WebQueryWidget
 
31
    {
 
32
        Q_OBJECT
 
33
    public:
 
34
        WebQueryCitebaseWidget( QWidget *parent, const char *name = 0 );
 
35
    };
27
36
 
28
37
    /**
29
38
     @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
35
44
        WebQueryCitebase( QWidget* parent );
36
45
        virtual ~WebQueryCitebase();
37
46
 
38
 
        void query( const QString& searchTerm, int numberOfResults );
39
 
        void cancelQuery() { /* nothing */ };
 
47
        void query();
40
48
 
41
49
        QString title();
42
50
        QString disclaimer();
43
51
        QString disclaimerURL();
 
52
 
 
53
        WebQueryWidget *widget();
 
54
 
 
55
    protected:
 
56
        void cancelQuery() { /* nothing */ };
 
57
 
 
58
    private:
 
59
        WebQueryCitebaseWidget *m_widget;
44
60
    };
45
61
 
46
62
}