summaryrefslogtreecommitdiff
path: root/src/searchbar.h
blob: 222b97e48af3af86579ffd67e3a186a218d4d978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* ============================================================
 *
 * This file is a part of the reKonq project
 *
 * Copyright (C) 2008 by Andrea Diamantini <adjam7 at gmail dot com>
 *
 *
 * This program is free software; you can redistribute it
 * and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software Foundation;
 * either version 2, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * ============================================================ */

#ifndef SEARCHBAR_H
#define SEARCHBAR_H

#include <KHistoryComboBox>
#include <KProcess>
#include <KAction>
#include <KDialog>

#include <QPixmap>
#include <QString>
#include <QMenu>

class KHTMLPart;


class SearchBarCombo : public KHistoryComboBox
{
    Q_OBJECT

public:
    SearchBarCombo(QWidget *parent);
    ~SearchBarCombo();
    const QPixmap &icon() const;
    void setIcon(const QPixmap &icon);
    int findHistoryItem(const QString &text);

public slots:
    virtual void show();

signals:
    void iconClicked();

protected:
    virtual void mousePressEvent(QMouseEvent *e);

private slots:
    void historyCleared();

private:
    QPixmap m_icon;
};


class SearchBar : public KDialog
{
    Q_OBJECT

public:
    enum SearchModes { FindInThisPage = 0, UseSearchProvider };

    SearchBar();
    virtual ~SearchBar();

private slots:
    void startSearch(const QString &search);
    void setIcon();
    void showSelectionMenu();

    void useFindInThisPage();
    void useSearchProvider(QAction *);
    void selectSearchEngines();
    void searchEnginesSelected(int, QProcess::ExitStatus);
    void configurationChanged();

    void updateComboVisibility();

    void focusSearchbar();
private:
    void nextSearchEntry();
    void previousSearchEntry();


    SearchBarCombo        *m_searchCombo;
    KAction               *m_searchComboAction;
    QMenu                 *m_popupMenu;
    QPixmap                m_searchIcon;
    SearchModes            m_searchMode;
    QString                m_providerName;
    bool                   m_urlEnterLock;
    QString                m_currentEngine;
    QStringList            m_searchEngines;
    KProcess              *m_process;
};

#endif