mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
/*
|
|
Copyright (c) 2014 Montel Laurent <montel@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This library 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 Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
|
|
*/
|
|
|
|
#ifndef SIEVEEDITORPAGEWIDGET_H
|
|
#define SIEVEEDITORPAGEWIDGET_H
|
|
#include <QWidget>
|
|
#include <KUrl>
|
|
#include "ksieveui/editor/sieveeditorwidget.h"
|
|
namespace KManageSieve {
|
|
class SieveJob;
|
|
}
|
|
namespace KSieveUi {
|
|
class SieveEditorWidget;
|
|
}
|
|
|
|
class SieveEditorPageWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SieveEditorPageWidget(QWidget *parent=0);
|
|
~SieveEditorPageWidget();
|
|
|
|
void loadScript(const KUrl &url, const QStringList &capabilities);
|
|
KUrl currentUrl() const;
|
|
void setIsNewScript(bool isNewScript);
|
|
void saveScript(bool showInformation = true, bool forceSave = false);
|
|
bool needToSaveScript();
|
|
|
|
bool isModified() const;
|
|
void goToLine();
|
|
KSieveUi::SieveEditorWidget::EditorMode pageMode() const;
|
|
|
|
Q_SIGNALS:
|
|
void refreshList();
|
|
void scriptModified(bool, SieveEditorPageWidget *);
|
|
void modeEditorChanged(KSieveUi::SieveEditorWidget::EditorMode);
|
|
|
|
private slots:
|
|
void slotGetResult(KManageSieve::SieveJob *, bool success, const QString &script, bool isActive);
|
|
void slotCheckSyntaxClicked();
|
|
void slotPutResultDebug(KManageSieve::SieveJob *, bool success, const QString &errorMsg);
|
|
void slotPutResult(KManageSieve::SieveJob *, bool success);
|
|
void slotValueChanged(bool b);
|
|
|
|
private:
|
|
void setModified(bool b);
|
|
KUrl mCurrentURL;
|
|
KSieveUi::SieveEditorWidget *mSieveEditorWidget;
|
|
bool mWasActive;
|
|
bool mIsNewScript;
|
|
};
|
|
|
|
#endif // SIEVEEDITORPAGEWIDGET_H
|