/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2012 David Rosca * * 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 . * ============================================================ */ #ifndef SPEEDDIAL_H #define SPEEDDIAL_H #include #include #include "qz_namespace.h" class QUrl; class QWebFrame; class QPixmap; class PageThumbnailer; class QT_QUPZILLA_EXPORT SpeedDial : public QObject { Q_OBJECT public: struct Page { QString title; QString url; bool operator==(const Page &other) { return (this->title == other.title && this->url == other.url); } }; explicit SpeedDial(QObject* parent = 0); void loadSettings(); void saveSettings(); Page pageForUrl(const QUrl &url); QUrl urlForShortcut(int key); void addWebFrame(QWebFrame* frame); void addPage(const QUrl &url, const QString &title); void removePage(const Page &page); int pagesInRow(); int sdSize(); int sdCntr(); QString backgroundImage(); QString backgroundImageSize(); QString initialScript(); signals: void pagesChanged(); public slots: void changed(const QString &allPages); void loadThumbnail(const QString &url, bool loadTitle = false); void removeImageForUrl(const QString &url); QString getOpenFileName(); QString urlFromUserInput(const QString &url); void setBackgroundImage(const QString &image); void setBackgroundImageSize(const QString &size); void setPagesInRow(int count); void setSdSize(int count); void setSdCentered(int cntr); private slots: void thumbnailCreated(const QPixmap &pixmap); private: QString escapeTitle(QString string) const; QString escapeUrl(QString url) const; QList cleanFrames(); QString generateAllPages(); QString m_initialScript; QString m_thumbnailsDir; QString m_backgroundImage; QString m_backgroundImageSize; int m_maxPagesInRow; int m_sizeOfSpeedDials; int m_sdcentered; QList > m_webFrames; QList m_webPages; bool m_loaded; bool m_regenerateScript; }; #endif // SPEEDDIAL_H