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/pagepartitioning.h

32 lines
464 B

#pragma once
#include "installerpage.h"
class QRadioButton;
class QPushButton;
class QComboBox;
class PagePartitioning : public InstallerPage
{
Q_OBJECT
public:
explicit PagePartitioning(const QString& title);
bool validate();
public slots:
void show();
signals:
void manualyPartitioning();
private:
QRadioButton* m_ButExistPartition;
QRadioButton* m_ButAllDisk;
QPushButton* m_ButPartitioning;
QComboBox* m_Partitions;
QComboBox* m_Disks;
};