kde-playground/kdepim/grantleeeditor/grantleethemeeditor/editorpage.h
2015-04-14 21:49:29 +00:00

68 lines
1.9 KiB
C++

/*
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef GRANTLEEEDITOREDITORPAGE_H
#define GRANTLEEEDITOREDITORPAGE_H
#include <QWidget>
#include "grantleethemeeditor_export.h"
class KZip;
namespace GrantleeThemeEditor {
class EditorWidget;
class PreviewWidget;
class GRANTLEETHEMEEDITOR_EXPORT EditorPage : public QWidget
{
Q_OBJECT
public:
enum PageType {
MainPage = 0,
SecondPage,
ExtraPage
};
explicit EditorPage(GrantleeThemeEditor::EditorPage::PageType type, QWidget *parent=0);
~EditorPage();
EditorPage::PageType pageType() const;
void setPageFileName(const QString &filename);
QString pageFileName() const;
GrantleeThemeEditor::EditorWidget *editor() const;
void insertFile(const QString &filename);
void loadTheme(const QString &path);
void saveTheme(const QString &path);
void saveAsFilename(const QString &filename);
void createZip(const QString &themeName, KZip *zip);
void installTheme(const QString &themePath);
Q_SIGNALS:
void needUpdateViewer();
void changed();
protected:
PageType mType;
QString mPageFileName;
GrantleeThemeEditor::PreviewWidget *mPreview;
GrantleeThemeEditor::EditorWidget *mEditor;
};
}
#endif // GRANTLEEEDITOREDITOREDITORPAGE_H