From 1631e99eed644bb9d313bc49ef6023ac3afe1e52 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 21 Dec 2016 23:49:36 -0500 Subject: citra-qt: Move config dialog code to its own directory --- src/citra_qt/configure_system.h | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/citra_qt/configure_system.h (limited to 'src/citra_qt/configure_system.h') diff --git a/src/citra_qt/configure_system.h b/src/citra_qt/configure_system.h deleted file mode 100644 index db0ead13c..000000000 --- a/src/citra_qt/configure_system.h +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright 2016 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include -#include - -namespace Ui { -class ConfigureSystem; -} - -class ConfigureSystem : public QWidget { - Q_OBJECT - -public: - explicit ConfigureSystem(QWidget* parent = nullptr); - ~ConfigureSystem(); - - void applyConfiguration(); - void setConfiguration(); - -public slots: - void updateBirthdayComboBox(int birthmonth_index); - -private: - void ReadSystemSettings(); - - std::unique_ptr ui; - bool enabled; - - std::u16string username; - int birthmonth, birthday; - int language_index; - int sound_index; -}; -- cgit v1.2.3