mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
5cf7d0b9a9
Closes #995
103 lines
3.1 KiB
C++
103 lines
3.1 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2014 David Rosca <nowrep@gmail.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 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/>.
|
|
* ============================================================ */
|
|
#ifndef BOOKMARKSTOOLS_H
|
|
#define BOOKMARKSTOOLS_H
|
|
|
|
#include <QMenu>
|
|
#include <QPushButton>
|
|
|
|
#include "qz_namespace.h"
|
|
|
|
class Bookmarks;
|
|
class BookmarkItem;
|
|
|
|
class QUPZILLA_EXPORT BookmarksFoldersMenu : public QMenu
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BookmarksFoldersMenu(QWidget* parent = 0);
|
|
|
|
BookmarkItem* selectedFolder() const;
|
|
|
|
signals:
|
|
void folderSelected(BookmarkItem* folder);
|
|
|
|
private slots:
|
|
void folderChoosed();
|
|
|
|
private:
|
|
void init();
|
|
void createMenu(QMenu* menu, BookmarkItem* parent);
|
|
|
|
BookmarkItem* m_selectedFolder;
|
|
};
|
|
|
|
class QUPZILLA_EXPORT BookmarksFoldersButton : public QPushButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BookmarksFoldersButton(QWidget* parent, BookmarkItem* folder = 0);
|
|
|
|
BookmarkItem* selectedFolder() const;
|
|
|
|
signals:
|
|
void selectedFolderChanged(BookmarkItem* folder);
|
|
|
|
public slots:
|
|
void setSelectedFolder(BookmarkItem* folder);
|
|
|
|
private:
|
|
void init();
|
|
|
|
BookmarksFoldersMenu* m_menu;
|
|
BookmarkItem* m_selectedFolder;
|
|
};
|
|
|
|
class BrowserWindow;
|
|
class TabWidget;
|
|
class Action;
|
|
class Menu;
|
|
|
|
class QUPZILLA_EXPORT BookmarksTools
|
|
{
|
|
public:
|
|
// Add Bookmark Dialogs
|
|
static bool addBookmarkDialog(QWidget* parent, const QUrl &url, const QString &title, BookmarkItem* folder = 0);
|
|
static bool bookmarkAllTabsDialog(QWidget* parent, TabWidget* tabWidget, BookmarkItem* folder = 0);
|
|
|
|
// Open Bookmarks
|
|
static void openBookmark(BrowserWindow* window, BookmarkItem* item);
|
|
static void openBookmarkInNewTab(BrowserWindow* window, BookmarkItem* item);
|
|
static void openBookmarkInNewWindow(BookmarkItem* item);
|
|
static void openBookmarkInNewPrivateWindow(BookmarkItem* item);
|
|
static void openFolderInTabs(BrowserWindow* window, BookmarkItem* folder);
|
|
|
|
// Create Menu
|
|
static void addActionToMenu(QObject* receiver, Menu* menu, BookmarkItem* item);
|
|
static void addFolderToMenu(QObject* receiver, Menu* menu, BookmarkItem* folder);
|
|
static void addUrlToMenu(QObject* receiver, Menu* menu, BookmarkItem* bookmark);
|
|
static void addSeparatorToMenu(Menu* menu, BookmarkItem* separator);
|
|
|
|
// Migration from Sql Bookmarks (returns true if bookmarks migrated)
|
|
static bool migrateBookmarksIfNecessary(Bookmarks* bookmarks);
|
|
};
|
|
|
|
#endif // BOOKMARKSTOOLS_H
|