File indexing completed on 2024-05-12 04:57:59

0001 /* ============================================================
0002 * Falkon - Qt web browser
0003 * Copyright (C) 2010-2014  David Rosca <nowrep@gmail.com>
0004 *
0005 * This program is free software: you can redistribute it and/or modify
0006 * it under the terms of the GNU General Public License as published by
0007 * the Free Software Foundation, either version 3 of the License, or
0008 * (at your option) any later version.
0009 *
0010 * This program is distributed in the hope that it will be useful,
0011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0013 * GNU General Public License for more details.
0014 *
0015 * You should have received a copy of the GNU General Public License
0016 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
0017 * ============================================================ */
0018 #ifndef BOOKMARKSWIDGET_H
0019 #define BOOKMARKSWIDGET_H
0020 
0021 #include <QMenu>
0022 
0023 #include "qzcommon.h"
0024 #include "locationbarpopup.h"
0025 
0026 namespace Ui
0027 {
0028 class BookmarksWidget;
0029 }
0030 
0031 class WebView;
0032 class SpeedDial;
0033 class Bookmarks;
0034 class BookmarkItem;
0035 
0036 class FALKON_EXPORT BookmarksWidget : public LocationBarPopup
0037 {
0038     Q_OBJECT
0039 public:
0040     explicit BookmarksWidget(WebView* view, BookmarkItem* bookmark, QWidget* parent = nullptr);
0041     ~BookmarksWidget();
0042 
0043 private Q_SLOTS:
0044     void toggleSpeedDial();
0045     void toggleBookmark();
0046     void bookmarkEdited();
0047 
0048 private:
0049     void init();
0050     void closePopup();
0051 
0052     Ui::BookmarksWidget* ui;
0053     WebView* m_view;
0054     BookmarkItem* m_bookmark;
0055 
0056     Bookmarks* m_bookmarks;
0057     SpeedDial* m_speedDial;
0058     bool m_edited;
0059 };
0060 
0061 #endif // BOOKMARKSWIDGET_H