mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
84 lines
2.3 KiB
C++
84 lines
2.3 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 CONTACTEDITORPAGE_H
|
|
#define CONTACTEDITORPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace GrantleeThemeEditor {
|
|
class ThemeEditorTabWidget;
|
|
class ThemeSession;
|
|
class DesktopFilePage;
|
|
}
|
|
class EditorPage;
|
|
class KZip;
|
|
|
|
class ContactEditorPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ContactEditorPage(const QString &projectDir, const QString &themeName, QWidget *parent = 0);
|
|
~ContactEditorPage();
|
|
|
|
bool saveTheme(bool withConfirmation = true);
|
|
void loadTheme(const QString &filename);
|
|
|
|
void addExtraPage();
|
|
|
|
void installTheme(const QString &themePath);
|
|
|
|
bool themeWasChanged() const;
|
|
|
|
void reloadConfig();
|
|
|
|
void insertFile();
|
|
|
|
void updatePreview();
|
|
|
|
void saveThemeAs(const QString &directory);
|
|
|
|
Q_SIGNALS:
|
|
void changed(bool);
|
|
void canInsertFile(bool);
|
|
|
|
private Q_SLOTS:
|
|
void slotUpdateViewer();
|
|
void slotCloseTab(int);
|
|
void slotChanged();
|
|
void slotCurrentWidgetChanged(QWidget*);
|
|
|
|
private:
|
|
void setChanged(bool b);
|
|
void storeTheme(const QString &directory = QString());
|
|
QString projectDirectory() const;
|
|
void createZip(const QString &themeName, KZip *zip);
|
|
EditorPage *createExtraPage(const QString &filename);
|
|
EditorPage *createCustomPage(const QString &filename);
|
|
QList<EditorPage*> mExtraPage;
|
|
|
|
GrantleeThemeEditor::ThemeEditorTabWidget *mTabWidget;
|
|
EditorPage *mEditorPage;
|
|
EditorPage *mEditorGroupPage;
|
|
EditorPage *mEditorGroupEmbeddedPage;
|
|
EditorPage *mEditorEmbeddedPage;
|
|
GrantleeThemeEditor::DesktopFilePage *mDesktopPage;
|
|
GrantleeThemeEditor::ThemeSession *mThemeSession;
|
|
bool mChanged;
|
|
};
|
|
|
|
#endif // CONTACTEDITORPAGE_H
|