forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2016 Dolphin Emulator Project
 | 
						|
// Licensed under GPLv2+
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#include <QDialogButtonBox>
 | 
						|
#include <QVBoxLayout>
 | 
						|
 | 
						|
#include "DolphinQt2/Config/SettingsWindow.h"
 | 
						|
#include "DolphinQt2/MainWindow.h"
 | 
						|
#include "DolphinQt2/QtUtils/ListTabWidget.h"
 | 
						|
#include "DolphinQt2/Resources.h"
 | 
						|
#include "DolphinQt2/Settings.h"
 | 
						|
#include "DolphinQt2/Settings/AdvancedPane.h"
 | 
						|
#include "DolphinQt2/Settings/AudioPane.h"
 | 
						|
#include "DolphinQt2/Settings/GeneralPane.h"
 | 
						|
#include "DolphinQt2/Settings/InterfacePane.h"
 | 
						|
#include "DolphinQt2/Settings/PathPane.h"
 | 
						|
 | 
						|
static int AddTab(ListTabWidget* tab_widget, const QString& label, QWidget* widget,
 | 
						|
                  const char* icon_name)
 | 
						|
{
 | 
						|
  int index = tab_widget->addTab(widget, label);
 | 
						|
  auto set_icon = [=] { tab_widget->setTabIcon(index, Resources::GetScaledThemeIcon(icon_name)); };
 | 
						|
  QObject::connect(&Settings::Instance(), &Settings::ThemeChanged, set_icon);
 | 
						|
  set_icon();
 | 
						|
  return index;
 | 
						|
}
 | 
						|
 | 
						|
SettingsWindow::SettingsWindow(QWidget* parent) : QDialog(parent)
 | 
						|
{
 | 
						|
  // Set Window Properties
 | 
						|
  setWindowTitle(tr("Settings"));
 | 
						|
  setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
 | 
						|
 | 
						|
  // Main Layout
 | 
						|
  QVBoxLayout* layout = new QVBoxLayout;
 | 
						|
 | 
						|
  // Add content to layout before dialog buttons.
 | 
						|
  m_tabs = new ListTabWidget();
 | 
						|
  layout->addWidget(m_tabs);
 | 
						|
 | 
						|
  AddTab(m_tabs, tr("General"), new GeneralPane(), "config");
 | 
						|
  AddTab(m_tabs, tr("Interface"), new InterfacePane(), "browse");
 | 
						|
  m_audio_pane_index = AddTab(m_tabs, tr("Audio"), new AudioPane(), "play");
 | 
						|
  AddTab(m_tabs, tr("Paths"), new PathPane(), "browse");
 | 
						|
  AddTab(m_tabs, tr("Advanced"), new AdvancedPane(), "config");
 | 
						|
 | 
						|
  // Dialog box buttons
 | 
						|
  QDialogButtonBox* ok_box = new QDialogButtonBox(QDialogButtonBox::Ok);
 | 
						|
  connect(ok_box, &QDialogButtonBox::accepted, this, &SettingsWindow::accept);
 | 
						|
  layout->addWidget(ok_box);
 | 
						|
 | 
						|
  setLayout(layout);
 | 
						|
}
 | 
						|
 | 
						|
void SettingsWindow::SelectAudioPane()
 | 
						|
{
 | 
						|
  m_tabs->setCurrentIndex(m_audio_pane_index);
 | 
						|
}
 |