38261d0800
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines Signed-off-by: Steve Pham <spham@amazon.com>
59 lines
1.4 KiB
C++
59 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#include "RadioButtonPage.h"
|
|
#include <AzQtComponents/Gallery/ui_RadioButtonPage.h>
|
|
|
|
#include <AzQtComponents/Components/Widgets/RadioButton.h>
|
|
|
|
#include <QMenu>
|
|
#include <QCheckBox>
|
|
#include <QButtonGroup>
|
|
|
|
RadioButtonPage::RadioButtonPage(QWidget* parent)
|
|
: QWidget(parent)
|
|
, ui(new Ui::RadioButtonPage)
|
|
{
|
|
ui->setupUi(this);
|
|
auto buttonGroup = new QButtonGroup(this);
|
|
buttonGroup->addButton(ui->radioButton);
|
|
buttonGroup->addButton(ui->radioButton_2);
|
|
ui->radioButton->setChecked(true);
|
|
|
|
QString exampleText = R"(
|
|
|
|
QRadioButton docs: <a href="http://doc.qt.io/qt-5/qradiobutton.html">http://doc.qt.io/qt-5/qradiobutton.html</a><br/>
|
|
|
|
<pre>
|
|
#include <QRadioButton>
|
|
|
|
QRadioButton* radioButton;
|
|
|
|
// Assuming you've created a QRadioButton already (either in code or via .ui file):
|
|
|
|
// To disable the radio button
|
|
radioButton->setEnabled(false);
|
|
|
|
// To set the radio button to the "on" state
|
|
radioButton->setChecked(true);
|
|
|
|
// disabling a radio button and setting it to "on" can be done in Qt Designer and Creator as well.
|
|
|
|
</pre>
|
|
|
|
)";
|
|
|
|
ui->exampleText->setHtml(exampleText);
|
|
}
|
|
|
|
RadioButtonPage::~RadioButtonPage()
|
|
{
|
|
}
|
|
|
|
#include "Gallery/moc_RadioButtonPage.cpp"
|