~ubuntu-branches/ubuntu/natty/kdebase-runtime/natty-proposed

« back to all changes in this revision

Viewing changes to kurifilter-plugins/ikws/kuriikwsfilter.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-24 11:07:10 UTC
  • mto: (0.8.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: james.westby@ubuntu.com-20101124110710-6dbsyw0yh21qvn82
Tags: upstream-4.5.80
ImportĀ upstreamĀ versionĀ 4.5.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef KURIIKWSFILTER_H
23
23
#define KURIIKWSFILTER_H
24
24
 
25
 
#include <kgenericfactory.h>
26
 
 
27
25
#include <kurifilter.h>
28
26
 
29
27
class KAutoWebSearch : public KUriFilterPlugin
32
30
public:
33
31
    explicit KAutoWebSearch(QObject *parent = 0, const QVariantList &args = QVariantList() );
34
32
    ~KAutoWebSearch();
35
 
 
36
33
    virtual bool filterUri( KUriFilterData& ) const;
37
34
 
38
35
public Q_SLOTS:
39
36
    void configure();
 
37
 
 
38
private:
 
39
    void populateProvidersList(QList<KUriFilterSearchProvider*>& searchProviders, const KUriFilterData&, bool allproviders = false) const;
40
40
};
41
41
 
42
42
#endif