1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/lib/plugins/speeddial.h

108 lines
2.8 KiB
C
Raw Normal View History

/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2012 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 SPEEDDIAL_H
#define SPEEDDIAL_H
#include <QObject>
#include <QWeakPointer>
#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);
2012-01-18 20:10:04 +01:00
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<QWebFrame*> cleanFrames();
QString generateAllPages();
QString m_initialScript;
QString m_thumbnailsDir;
QString m_backgroundImage;
QString m_backgroundImageSize;
2012-01-18 20:10:04 +01:00
int m_maxPagesInRow;
int m_sizeOfSpeedDials;
int m_sdcentered;
QList<QWeakPointer<QWebFrame> > m_webFrames;
QList<Page> m_webPages;
bool m_loaded;
bool m_regenerateScript;
};
#endif // SPEEDDIAL_H