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 BOOKMARKSTOOLBAR_H
|
|
|
|
#define BOOKMARKSTOOLBAR_H
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QWidget>
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include "qz_namespace.h"
|
2011-04-15 20:45:22 +02:00
|
|
|
#include "bookmarksmodel.h"
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QHBoxLayout;
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
class QupZilla;
|
|
|
|
class BookmarksModel;
|
2012-04-30 16:33:14 +02:00
|
|
|
class History;
|
2011-09-11 19:15:06 +02:00
|
|
|
class ToolButton;
|
2011-12-11 17:51:03 +01:00
|
|
|
class Menu;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT BookmarksToolbar : public QWidget
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-03-17 17:03:04 +01:00
|
|
|
explicit BookmarksToolbar(QupZilla* mainClass, QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void refreshBookmarks();
|
|
|
|
void refreshMostVisited();
|
|
|
|
void showMostVisited();
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
private slots:
|
2011-09-11 19:15:06 +02:00
|
|
|
void loadClickedBookmark();
|
2011-10-18 21:07:58 +02:00
|
|
|
void loadClickedBookmarkInNewTab();
|
2011-12-19 21:30:26 +01:00
|
|
|
void loadFolderBookmarksInTabs();
|
2011-10-18 21:07:58 +02:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
void aboutToShowFolderMenu();
|
|
|
|
void showBookmarkContextMenu(const QPoint &pos);
|
|
|
|
void customContextMenuRequested(const QPoint &pos);
|
|
|
|
|
|
|
|
void moveRight();
|
|
|
|
void moveLeft();
|
2012-01-18 15:05:50 +01:00
|
|
|
void editBookmark();
|
2011-10-28 17:52:42 +02:00
|
|
|
void removeButton();
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void hidePanel();
|
2012-02-17 19:54:58 +01:00
|
|
|
void toggleShowOnlyIcons();
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
void addBookmark(const BookmarksModel::Bookmark &bookmark);
|
|
|
|
void removeBookmark(const BookmarksModel::Bookmark &bookmark);
|
|
|
|
void bookmarkEdited(const BookmarksModel::Bookmark &before, const BookmarksModel::Bookmark &after);
|
2011-10-28 17:52:42 +02:00
|
|
|
void subfolderAdded(const QString &name);
|
|
|
|
void folderDeleted(const QString &name);
|
|
|
|
void folderRenamed(const QString &before, const QString &after);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2012-09-05 23:52:40 +02:00
|
|
|
void changeBookmarkParent(const QString &name, const QByteArray &imageData, int id,
|
|
|
|
const QUrl &url, const QString &oldParent, const QString &newParent);
|
|
|
|
void changeFolderParent(const QString &name, bool isSubfolder);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2011-12-17 16:04:04 +01:00
|
|
|
void dropEvent(QDropEvent* e);
|
|
|
|
void dragEnterEvent(QDragEnterEvent* e);
|
2011-12-17 14:26:34 +01:00
|
|
|
|
2012-02-17 19:54:58 +01:00
|
|
|
void showOnlyIconsChanged();
|
2011-10-28 17:52:42 +02:00
|
|
|
int indexOfLastBookmark();
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
QupZilla* p_QupZilla;
|
|
|
|
BookmarksModel* m_bookmarksModel;
|
2012-04-30 16:33:14 +02:00
|
|
|
History* m_historyModel;
|
2011-12-11 17:51:03 +01:00
|
|
|
Menu* m_menuMostVisited;
|
2011-09-11 19:15:06 +02:00
|
|
|
ToolButton* m_mostVis;
|
|
|
|
QHBoxLayout* m_layout;
|
2012-03-04 22:30:45 +01:00
|
|
|
|
|
|
|
Qt::ToolButtonStyle m_toolButtonStyle;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BOOKMARKSTOOLBAR_H
|