2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02: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-04-15 20:46:51 +02:00
|
|
|
#ifndef BOOKMARKICON_H
|
|
|
|
#define BOOKMARKICON_H
|
|
|
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
#include "clickablelabel.h"
|
2014-02-05 15:26:51 +01:00
|
|
|
#include "bookmarks.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
#include "qz_namespace.h"
|
2012-01-21 20:27:45 +01:00
|
|
|
|
2012-02-05 16:00:23 +01:00
|
|
|
class SpeedDial;
|
2013-02-10 12:28:53 +01:00
|
|
|
class WebView;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT BookmarkIcon : public ClickableLabel
|
2011-04-15 20:46:51 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-02-08 18:44:26 +01:00
|
|
|
explicit BookmarkIcon(QWidget* parent = 0);
|
2013-02-10 12:28:53 +01:00
|
|
|
|
|
|
|
void setWebView(WebView* view);
|
2012-02-05 16:00:23 +01:00
|
|
|
void checkBookmark(const QUrl &url, bool forceCheck = false);
|
2011-04-15 20:46:51 +02:00
|
|
|
|
|
|
|
private slots:
|
2014-02-05 15:26:51 +01:00
|
|
|
void bookmarkAdded(const Bookmarks::Bookmark &bookmark);
|
|
|
|
void bookmarkDeleted(const Bookmarks::Bookmark &bookmark);
|
2012-02-05 16:00:23 +01:00
|
|
|
void speedDialChanged();
|
2011-04-15 20:46:51 +02:00
|
|
|
|
2013-02-10 12:28:53 +01:00
|
|
|
void iconClicked();
|
|
|
|
|
2011-04-15 20:46:51 +02:00
|
|
|
private:
|
2012-03-05 11:30:18 +01:00
|
|
|
void contextMenuEvent(QContextMenuEvent* ev);
|
2011-12-27 19:10:53 +01:00
|
|
|
void mousePressEvent(QMouseEvent* ev);
|
2011-12-27 18:50:52 +01:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void setBookmarkSaved();
|
|
|
|
void setBookmarkDisabled();
|
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
Bookmarks* m_bookmarks;
|
2012-02-05 16:00:23 +01:00
|
|
|
SpeedDial* m_speedDial;
|
2013-02-10 12:28:53 +01:00
|
|
|
WebView* m_view;
|
2011-04-15 20:46:51 +02:00
|
|
|
|
|
|
|
QUrl m_lastUrl;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BOOKMARKICON_H
|