calamares/src/libcalamaresui/ViewManager.h

82 lines
2.0 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <http://github.com/calamares> ===
*
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
*
* Calamares 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.
*
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef VIEWMANAGER_H
#define VIEWMANAGER_H
2014-06-26 14:41:34 +02:00
#include "UiDllMacro.h"
#include <QList>
#include <QPushButton>
#include <QStackedWidget>
namespace Calamares
{
class ViewStep;
class InstallationViewStep;
class UIDLLEXPORT ViewManager : public QObject
{
Q_OBJECT
public:
static ViewManager* instance();
explicit ViewManager( QObject* parent = nullptr );
virtual ~ViewManager();
QWidget* centralWidget();
void addViewStep( ViewStep* step );
QList< ViewStep* > prepareSteps() const;
ViewStep* installationStep() const;
ViewStep* currentStep() const;
int currentStepIndex() const;
public slots:
void next();
void back();
signals:
void currentStepChanged();
private:
static ViewManager* s_instance;
QList< ViewStep* > m_steps;
QList< ViewStep* > m_prepareSteps;
InstallationViewStep* m_installationViewStep;
int m_currentStep;
QWidget* m_widget;
QStackedWidget* m_stack;
QPushButton* m_back;
QPushButton* m_next;
QPushButton* m_quit;
void insertViewStep( int before, ViewStep* step );
2014-07-08 17:04:39 +02:00
void startInstallation();
2014-07-10 14:46:08 +02:00
void onInstallationFailed( const QString& message, const QString& details );
};
}
#endif // VIEWMANAGER_H