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 BOOKMARKSWIDGET_H
|
|
|
|
#define BOOKMARKSWIDGET_H
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QMenu>
|
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
2012-09-15 17:39:54 +02:00
|
|
|
#include "locationbarpopup.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class BookmarksWidget;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-05 16:00:23 +01:00
|
|
|
class WebView;
|
|
|
|
class SpeedDial;
|
2014-02-05 15:26:51 +01:00
|
|
|
class Bookmarks;
|
2014-02-09 12:18:52 +01:00
|
|
|
class BookmarkItem;
|
2012-08-22 14:48:27 +02:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT BookmarksWidget : public LocationBarPopup
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-09 12:18:52 +01:00
|
|
|
explicit BookmarksWidget(WebView* view, BookmarkItem* bookmark, QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
~BookmarksWidget();
|
|
|
|
|
|
|
|
private slots:
|
2012-02-05 16:00:23 +01:00
|
|
|
void toggleSpeedDial();
|
2014-02-09 12:18:52 +01:00
|
|
|
void toggleBookmark();
|
|
|
|
void bookmarkEdited();
|
2012-02-05 16:00:23 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2014-02-09 12:18:52 +01:00
|
|
|
void init();
|
|
|
|
void closePopup();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
Ui::BookmarksWidget* ui;
|
2012-02-05 16:00:23 +01:00
|
|
|
WebView* m_view;
|
2014-02-09 12:18:52 +01:00
|
|
|
BookmarkItem* m_bookmark;
|
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
Bookmarks* m_bookmarks;
|
2012-02-05 16:00:23 +01:00
|
|
|
SpeedDial* m_speedDial;
|
2012-09-11 10:47:59 +02:00
|
|
|
bool m_edited;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BOOKMARKSWIDGET_H
|