1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/plugins/GreaseMonkey/gm_script.h
2012-07-11 18:30:00 +02:00

84 lines
2.0 KiB
C++

/* ============================================================
* GreaseMonkey plugin for QupZilla
* Copyright (C) 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 GM_SCRIPT_H
#define GM_SCRIPT_H
#include "gm_urlmatcher.h"
#include <QObject>
#include <QList>
#include <QUrl>
class QWebFrame;
class GM_Manager;
class GM_UrlMatcher;
class GM_Script
{
public:
GM_Script(GM_Manager* manager, const QString &filePath);
enum StartAt { DocumentStart, DocumentEnd };
bool isValid() const;
QString name() const;
QString nameSpace() const;
QString fullName() const;
QString description() const;
QString version() const;
QUrl downloadUrl() const;
StartAt startAt() const;
bool isEnabled() const;
void setEnabled(bool enable);
QStringList include() const;
QStringList exclude() const;
QString script() const;
QString fileName() const;
bool match(const QString &urlString);
private:
void parseScript(const QString &filePath);
GM_Manager* m_manager;
QString m_name;
QString m_namespace;
QString m_description;
QString m_version;
QList<GM_UrlMatcher> m_include;
QList<GM_UrlMatcher> m_exclude;
QUrl m_downloadUrl;
StartAt m_startAt;
QString m_script;
QString m_fileName;
bool m_enabled;
bool m_valid;
};
#endif // GM_SCRIPT_H