/************************************************************************* * Copyright (C) 2008, 2010 by Volker Lanz * * Copyright (C) 2016 by Teo Mrnjavac * * * * This program 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. * * * * 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, see .* *************************************************************************/ #if !defined(SIZEDIALOGWIDGET_H) #define SIZEDIALOGWIDGET_H #include "ui_sizedialogwidgetbase.h" #include /** Central widget for the SizeDialogBase @author Volker Lanz */ class SizeDialogWidget : public QWidget, public Ui::SizeDialogWidgetBase { public: SizeDialogWidget(QWidget* parent) : QWidget(parent), Ui::SizeDialogWidgetBase() { setupUi(this); } public: PartResizerWidget& partResizerWidget() { Q_ASSERT(m_PartResizerWidget); return *m_PartResizerWidget; } QLabel& labelFreeBefore() { Q_ASSERT(m_LabelFreeBefore); return *m_LabelFreeBefore; } QDoubleSpinBox& spinFreeBefore() { Q_ASSERT(m_SpinFreeBefore); return *m_SpinFreeBefore; } QLabel& labelFreeAfter() { Q_ASSERT(m_LabelFreeAfter); return *m_LabelFreeAfter; } QDoubleSpinBox& spinFreeAfter() { Q_ASSERT(m_SpinFreeAfter); return *m_SpinFreeAfter; } QDoubleSpinBox& spinCapacity() { Q_ASSERT(m_SpinCapacity); return *m_SpinCapacity; } QLabel& labelMinSize() { Q_ASSERT(m_LabelMinSize); return *m_LabelMinSize; } QLabel& labelMaxSize() { Q_ASSERT(m_LabelMaxSize); return *m_LabelMaxSize; } QRadioButton& radioPrimary() { Q_ASSERT(m_RadioPrimary); return *m_RadioPrimary; } QRadioButton& radioExtended() { Q_ASSERT(m_RadioExtended); return *m_RadioExtended; } QRadioButton& radioLogical() { Q_ASSERT(m_RadioLogical); return *m_RadioLogical; } QComboBox& comboFileSystem() { Q_ASSERT(m_ComboFileSystem); return *m_ComboFileSystem; } QCheckBox& checkBoxEncrypt() { Q_ASSERT(m_CheckBoxEncrypt); return *m_CheckBoxEncrypt; } KNewPasswordWidget& editPassphrase() { Q_ASSERT(m_EditPassphrase); return *m_EditPassphrase; } QLabel& textLVName() { Q_ASSERT(m_LabelTextLVName); return *m_LabelTextLVName; } QLineEdit& lvName() { Q_ASSERT(m_EditLVName); return *m_EditLVName; } QLabel& textLabel() { Q_ASSERT(m_LabelTextLabel); return *m_LabelTextLabel; } QLineEdit& label() { Q_ASSERT(m_EditLabel); return *m_EditLabel; } const QLineEdit& label() const { Q_ASSERT(m_EditLabel); return *m_EditLabel; } QLabel& noSetLabel() { Q_ASSERT(m_LabelTextNoSetLabel); return *m_LabelTextNoSetLabel; } void hideRole() { delete m_LabelRole; m_LabelRole = nullptr; delete m_RadioPrimary; m_RadioPrimary = nullptr; delete m_RadioExtended; m_RadioExtended = nullptr; delete m_RadioLogical; m_RadioLogical = nullptr; } void hideFileSystem() { delete m_LabelFileSystem; m_LabelFileSystem = nullptr; delete m_ComboFileSystem; m_ComboFileSystem = nullptr; delete m_CheckBoxEncrypt; m_CheckBoxEncrypt = nullptr; delete m_EditPassphrase; m_EditPassphrase = nullptr; } void hideLabel() { delete m_LabelTextLabel; m_LabelTextLabel = nullptr; delete m_EditLabel; m_EditLabel = nullptr; delete m_LabelTextNoSetLabel; m_LabelTextNoSetLabel = nullptr; } void hideBeforeAndAfter() { labelFreeBefore().hide(); spinFreeBefore().hide(); labelFreeAfter().hide(); spinFreeAfter().hide(); } }; #endif