2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* 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 3 of the License, 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#ifndef BOOKMARKSMANAGER_H
|
|
|
|
#define BOOKMARKSMANAGER_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-12-20 14:45:35 +01:00
|
|
|
#include <QPointer>
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-04-17 13:03:29 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class BookmarksManager;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2014-02-08 18:14:38 +01:00
|
|
|
class QUrl;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
class BrowserWindow;
|
2014-02-05 15:26:51 +01:00
|
|
|
class Bookmarks;
|
2014-02-08 18:14:38 +01:00
|
|
|
class BookmarkItem;
|
|
|
|
|
2017-08-25 17:11:29 +02:00
|
|
|
class FALKON_EXPORT BookmarksManager : public QWidget
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-02-19 22:07:21 +01:00
|
|
|
explicit BookmarksManager(BrowserWindow* window, QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
~BookmarksManager();
|
2011-07-30 17:57:14 +02:00
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
void setMainWindow(BrowserWindow* window);
|
2014-02-09 11:02:51 +01:00
|
|
|
|
|
|
|
public slots:
|
2014-02-08 23:01:01 +01:00
|
|
|
void search(const QString &string);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private slots:
|
2014-02-08 18:14:38 +01:00
|
|
|
void bookmarkActivated(BookmarkItem* item);
|
|
|
|
void bookmarkCtrlActivated(BookmarkItem* item);
|
|
|
|
void bookmarkShiftActivated(BookmarkItem* item);
|
|
|
|
void bookmarksSelected(const QList<BookmarkItem*> &items);
|
2014-02-08 20:01:07 +01:00
|
|
|
void createContextMenu(const QPoint &pos);
|
|
|
|
|
|
|
|
void openBookmark(BookmarkItem* item = 0);
|
|
|
|
void openBookmarkInNewTab(BookmarkItem* item = 0);
|
|
|
|
void openBookmarkInNewWindow(BookmarkItem* item = 0);
|
2014-02-22 15:20:54 +01:00
|
|
|
void openBookmarkInNewPrivateWindow(BookmarkItem* item = 0);
|
2014-02-08 20:01:07 +01:00
|
|
|
|
|
|
|
void addBookmark();
|
|
|
|
void addFolder();
|
|
|
|
void addSeparator();
|
|
|
|
void deleteBookmarks();
|
2014-02-08 18:14:38 +01:00
|
|
|
|
|
|
|
void bookmarkEdited();
|
|
|
|
void descriptionEdited();
|
2014-02-09 17:27:55 +01:00
|
|
|
void enableUpdates();
|
2013-12-30 00:35:01 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2014-02-08 18:14:38 +01:00
|
|
|
void updateEditBox(BookmarkItem* item);
|
2014-02-08 20:01:07 +01:00
|
|
|
bool bookmarkEditable(BookmarkItem* item) const;
|
|
|
|
void addBookmark(BookmarkItem* item);
|
|
|
|
BookmarkItem* parentForNewBookmark() const;
|
2017-08-25 17:11:29 +02:00
|
|
|
BrowserWindow* getWindow();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-02-08 20:01:07 +01:00
|
|
|
void showEvent(QShowEvent* event);
|
|
|
|
void keyPressEvent(QKeyEvent* event);
|
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
Ui::BookmarksManager* ui;
|
2014-02-19 22:07:21 +01:00
|
|
|
QPointer<BrowserWindow> m_window;
|
2014-02-08 18:14:38 +01:00
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
Bookmarks* m_bookmarks;
|
2014-02-08 20:01:07 +01:00
|
|
|
BookmarkItem* m_selectedBookmark;
|
2014-02-08 18:14:38 +01:00
|
|
|
bool m_blockDescriptionChangedSignal;
|
2014-02-08 20:01:07 +01:00
|
|
|
bool m_adjustHeaderSizesOnShow;
|
2014-02-08 18:14:38 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
2014-02-08 23:01:01 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
#endif // BOOKMARKSMANAGER_H
|