diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-11-17 00:42:18 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-11-17 00:42:18 +0100 |
commit | 47a69e593d2d816374d263076b87a9ffb987459a (patch) | |
tree | c805a6314dd1377357f669b3d60b77b68175a5b7 /src/toolbarsearch.h | |
parent | searchbar --> findbar (diff) | |
download | rekonq-47a69e593d2d816374d263076b87a9ffb987459a.tar.xz |
Ported search bar. 1st implementation. For Now, just Google Search.
Diffstat (limited to 'src/toolbarsearch.h')
-rw-r--r-- | src/toolbarsearch.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/src/toolbarsearch.h b/src/toolbarsearch.h deleted file mode 100644 index 81f06180..00000000 --- a/src/toolbarsearch.h +++ /dev/null @@ -1,63 +0,0 @@ -/* ============================================================ - * - * This file is a part of the reKonq project - * - * Copyright (C) 2007-2008 Trolltech ASA. All rights reserved - * 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 TOOLBARSEARCH_H -#define TOOLBARSEARCH_H - -#include "searchlineedit.h" - -QT_BEGIN_NAMESPACE -class QUrl; -class QAction; -class QStringListModel; -QT_END_NAMESPACE - -class AutoSaver; - -class ToolbarSearch : public SearchLineEdit -{ - Q_OBJECT - -signals: - void search(const QUrl &url); - -public: - ToolbarSearch(QWidget *parent = 0); - ~ToolbarSearch(); - -public slots: - void clear(); - void searchNow(); - -private slots: - void save(); - void aboutToShowMenu(); - void triggeredMenuAction(QAction *action); - -private: - void load(); - - AutoSaver *m_autosaver; - int m_maxSavedSearches; - QStringListModel *m_stringListModel; -}; - -#endif // TOOLBARSEARCH_H - |