You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
|
|
|
#include "EditorDefs.h"
|
|
|
|
#include "DimensionsDialog.h"
|
|
|
|
// Qt
|
|
#include <QButtonGroup>
|
|
|
|
AZ_PUSH_DISABLE_DLL_EXPORT_MEMBER_WARNING
|
|
#include <ui_DimensionsDialog.h>
|
|
AZ_POP_DISABLE_DLL_EXPORT_MEMBER_WARNING
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
CDimensionsDialog::CDimensionsDialog(QWidget* pParent /*=nullptr*/)
|
|
: QDialog(pParent)
|
|
, m_group(new QButtonGroup(this))
|
|
, ui(new Ui::CDimensionsDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
setWindowTitle(tr("Generate Terrain Texture"));
|
|
|
|
m_group->addButton(ui->Dim512, 512);
|
|
m_group->addButton(ui->Dim1024, 1024);
|
|
m_group->addButton(ui->Dim2048, 2048);
|
|
m_group->addButton(ui->Dim4096, 4096);
|
|
m_group->addButton(ui->Dim8192, 8192);
|
|
m_group->addButton(ui->Dim16384, 16384);
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
CDimensionsDialog::~CDimensionsDialog()
|
|
{
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
void CDimensionsDialog::SetDimensions(unsigned int iWidth)
|
|
{
|
|
////////////////////////////////////////////////////////////////////////
|
|
// Select a dimension option button in the dialog
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
QAbstractButton* button = m_group->button(iWidth);
|
|
assert(button);
|
|
|
|
button->setChecked(true);
|
|
}
|
|
|
|
UINT CDimensionsDialog::GetDimensions()
|
|
{
|
|
////////////////////////////////////////////////////////////////////////
|
|
// Get the currently selected dimension option button in the dialog
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
assert(m_group->checkedId() != -1);
|
|
|
|
return m_group->checkedId();
|
|
}
|
|
|
|
#include <moc_DimensionsDialog.cpp>
|