Add subscription section in activation page #4715
This commit is contained in:
parent
18e7004213
commit
a29858c439
|
@ -128,7 +128,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="m_pRadioButtonActivate">
|
<widget class="QRadioButton" name="m_pRadioButtonActivate">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Activate now...</string>
|
<string>Log in</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="checked">
|
<property name="checked">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
@ -210,6 +210,62 @@
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="verticalSpacer_8">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeType">
|
||||||
|
<enum>QSizePolicy::Fixed</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>10</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="radioButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>Subscription</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QFormLayout" name="formLayout_2">
|
||||||
|
<property name="horizontalSpacing">
|
||||||
|
<number>20</number>
|
||||||
|
</property>
|
||||||
|
<property name="verticalSpacing">
|
||||||
|
<number>10</number>
|
||||||
|
</property>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label_6">
|
||||||
|
<property name="text">
|
||||||
|
<string>Serial Key:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QLineEdit" name="m_pLineEditSerialKey">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>400</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<spacer name="verticalSpacer_5">
|
<spacer name="verticalSpacer_5">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
|
|
|
@ -60,6 +60,8 @@ SetupWizard::SetupWizard(MainWindow& mainWindow, bool startMain) :
|
||||||
|
|
||||||
m_pLineEditEmail->setText(appConfig.activateEmail());
|
m_pLineEditEmail->setText(appConfig.activateEmail());
|
||||||
|
|
||||||
|
m_pLineEditSerialKey->setEnabled(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SetupWizard::~SetupWizard()
|
SetupWizard::~SetupWizard()
|
||||||
|
@ -206,6 +208,7 @@ void SetupWizard::on_m_pRadioButtonSkip_toggled(bool checked)
|
||||||
if (checked) {
|
if (checked) {
|
||||||
m_pLineEditEmail->setEnabled(false);
|
m_pLineEditEmail->setEnabled(false);
|
||||||
m_pLineEditPassword->setEnabled(false);
|
m_pLineEditPassword->setEnabled(false);
|
||||||
|
m_pLineEditSerialKey->setEnabled(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,5 +217,15 @@ void SetupWizard::on_m_pRadioButtonActivate_toggled(bool checked)
|
||||||
if (checked) {
|
if (checked) {
|
||||||
m_pLineEditEmail->setEnabled(true);
|
m_pLineEditEmail->setEnabled(true);
|
||||||
m_pLineEditPassword->setEnabled(true);
|
m_pLineEditPassword->setEnabled(true);
|
||||||
|
m_pLineEditSerialKey->setEnabled(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void SetupWizard::on_radioButton_toggled(bool checked)
|
||||||
|
{
|
||||||
|
if (checked) {
|
||||||
|
m_pLineEditEmail->setEnabled(false);
|
||||||
|
m_pLineEditPassword->setEnabled(false);
|
||||||
|
m_pLineEditSerialKey->setEnabled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,7 @@ private:
|
||||||
PluginWizardPage* m_pPluginPage;
|
PluginWizardPage* m_pPluginPage;
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
void on_radioButton_toggled(bool checked);
|
||||||
void on_m_pRadioButtonActivate_toggled(bool checked);
|
void on_m_pRadioButtonActivate_toggled(bool checked);
|
||||||
void on_m_pRadioButtonSkip_toggled(bool checked);
|
void on_m_pRadioButtonSkip_toggled(bool checked);
|
||||||
void on_m_pComboLanguage_currentIndexChanged(int index);
|
void on_m_pComboLanguage_currentIndexChanged(int index);
|
||||||
|
|
Loading…
Reference in New Issue