You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-2.2-install.../src/systeminstaller.h

44 lines
615 B

#pragma once
#include <QMainWindow>
class QPushButton;
class QLabel;
class PageManager;
class PageCfdisk;
class SystemInstaller : public QMainWindow
{
Q_OBJECT
public:
explicit SystemInstaller(QWidget *parent = 0);
~SystemInstaller();
public:
private:
private slots:
void changedNext(bool);
void changedPrev(bool);
void changedLanguage(int);
void doPartitioning(QString disk);
void completePartitioning();
void volumeSelect(QString volume);
private:
// ui
QPushButton* m_butPrev;
QPushButton* m_butNext;
QLabel* m_labelImage;
PageManager* m_PageManager;
PageCfdisk* m_PageCfdisk;
};