1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/navigation/websearchbar.h

39 lines
733 B
C
Raw Normal View History

2011-03-02 16:57:41 +01:00
#ifndef WEBSEARCHBAR_H
#define WEBSEARCHBAR_H
#if defined(QT_NO_DEBUG) & !defined(QT_NO_DEBUG_OUTPUT)
#define QT_NO_DEBUG_OUTPUT
#endif
#include <QWidget>
#include <QPushButton>
#include <QToolButton>
#include <QMenu>
#include "lineedit.h"
class QupZilla;
class LineEdit;
class ClickableLabel;
class WebSearchBar : public LineEdit
{
Q_OBJECT;
public:
explicit WebSearchBar(QupZilla* mainClass, QWidget *parent = 0);
private slots:
void searchChanged();
void search();
private:
ClickableLabel* m_buttonSearch;
QToolButton* m_boxSearchType;
void setupSearchTypes();
void focusInEvent(QFocusEvent* e);
void focusOutEvent(QFocusEvent* e);
QupZilla* p_QupZilla;
};
#endif // WEBSEARCHBAR_H