Qt: Shrink settings window and make widgets stretch

This commit is contained in:
Starsam80
2017-06-20 20:18:34 -06:00
parent ba356f78d1
commit c6478cac2f
5 changed files with 10 additions and 8 deletions

View File

@ -110,6 +110,7 @@ void AudioPane::CreateWidgets()
m_main_layout->addWidget(backend_box, 1, 0, 1, -1);
m_main_layout->addWidget(stretching_box, 2, 0, 1, -1);
m_main_layout->setContentsMargins(0, 0, 0, 0);
setLayout(m_main_layout);
}

View File

@ -38,6 +38,8 @@ void GeneralPane::CreateLayout()
CreateAnalytics();
#endif
CreateAdvanced();
m_main_layout->setContentsMargins(0, 0, 0, 0);
m_main_layout->addStretch(1);
setLayout(m_main_layout);
}
@ -79,7 +81,6 @@ void GeneralPane::CreateBasic()
basic_group_layout->addLayout(speed_limit_layout);
m_combobox_speedlimit = new QComboBox();
m_combobox_speedlimit->setMaximumWidth(300);
m_combobox_speedlimit->addItem(tr("Unlimited"));
for (int i = 10; i <= 200; i += 10) // from 10% to 200%
@ -106,7 +107,6 @@ void GeneralPane::CreateAnalytics()
m_checkbox_enable_analytics = new QCheckBox(tr("Enable Usage Statistics Reporting"));
m_button_generate_new_identity = new QPushButton(tr("Generate a New Statistics Identity"));
m_button_generate_new_identity->setMaximumWidth(300);
analytics_group_layout->addWidget(m_checkbox_enable_analytics);
analytics_group_layout->addWidget(m_button_generate_new_identity);
}

View File

@ -33,6 +33,7 @@ void InterfacePane::CreateLayout()
CreateUI();
CreateInGame();
m_main_layout->setContentsMargins(0, 0, 0, 0);
m_main_layout->addStretch(1);
setLayout(m_main_layout);
}
@ -48,14 +49,12 @@ void InterfacePane::CreateUI()
groupbox_layout->addLayout(combobox_layout);
m_combobox_language = new QComboBox;
m_combobox_language->setMaximumWidth(300);
// TODO: Support more languages other then English
m_combobox_language->addItem(tr("English"));
combobox_layout->addRow(tr("&Language:"), m_combobox_language);
// Theme Combobox
m_combobox_theme = new QComboBox;
m_combobox_theme->setMaximumWidth(300);
combobox_layout->addRow(tr("&Theme:"), m_combobox_theme);
// List avalable themes

View File

@ -23,6 +23,7 @@ PathPane::PathPane(QWidget* parent) : QWidget(parent)
layout->addWidget(MakeGameFolderBox());
layout->addLayout(MakePathsLayout());
layout->setContentsMargins(0, 0, 0, 0);
setLayout(layout);
}
@ -82,7 +83,6 @@ void PathPane::BrowseWiiNAND()
QGroupBox* PathPane::MakeGameFolderBox()
{
QGroupBox* game_box = new QGroupBox(tr("Game Folders"));
game_box->setMinimumSize(QSize(400, 250));
QVBoxLayout* vlayout = new QVBoxLayout;
m_path_list = new QListWidget;