mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
86 lines
2.5 KiB
C++
86 lines
2.5 KiB
C++
/*
|
|
Copyright (c) 2009 Volker Krause <vkrause@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 SETUPMANAGER_H
|
|
#define SETUPMANAGER_H
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
namespace KWallet {
|
|
class Wallet;
|
|
}
|
|
|
|
class SetupObject;
|
|
class SetupPage;
|
|
|
|
class SetupManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SetupManager( QWidget *parent );
|
|
~SetupManager();
|
|
void setSetupPage( SetupPage* page );
|
|
|
|
void setName( const QString& );
|
|
void setEmail( const QString& );
|
|
void setPassword( const QString& );
|
|
void setPersonalDataAvailable( bool available );
|
|
|
|
public slots:
|
|
Q_SCRIPTABLE bool personalDataAvailable();
|
|
Q_SCRIPTABLE QString name();
|
|
Q_SCRIPTABLE QString email();
|
|
Q_SCRIPTABLE QString password();
|
|
Q_SCRIPTABLE QString country();
|
|
/** Ensures the wallet is open for subsequent sync wallet access in the resources. */
|
|
Q_SCRIPTABLE void openWallet();
|
|
Q_SCRIPTABLE QObject* createResource( const QString &type );
|
|
Q_SCRIPTABLE QObject* createTransport( const QString &type );
|
|
Q_SCRIPTABLE QObject* createConfigFile( const QString &configName );
|
|
Q_SCRIPTABLE QObject* createLdap();
|
|
Q_SCRIPTABLE QObject* createIdentity();
|
|
Q_SCRIPTABLE void execute();
|
|
|
|
void requestRollback();
|
|
|
|
signals:
|
|
void rollbackComplete();
|
|
|
|
private:
|
|
void setupNext();
|
|
void rollback();
|
|
SetupObject* connectObject( SetupObject* obj );
|
|
|
|
private slots:
|
|
void setupSucceeded( const QString &msg );
|
|
void setupFailed( const QString &msg );
|
|
void setupInfo( const QString &msg );
|
|
|
|
private:
|
|
QString m_name, m_email, m_password;
|
|
QList<SetupObject*> m_objectToSetup;
|
|
QList<SetupObject*> m_setupObjects;
|
|
SetupObject* m_currentSetupObject;
|
|
SetupPage* m_page;
|
|
KWallet::Wallet *m_wallet;
|
|
bool m_personalDataAvailable;
|
|
bool m_rollbackRequested;
|
|
};
|
|
|
|
#endif
|