summaryrefslogblamecommitdiffstats
path: root/src/yuzu/configuration/configure_general.h
blob: 323ffbd8f97f53225b322c7a1ffcb17c19747de6 (plain) (tree)
1
2
3
4
5
6
7
8



                                            
            
 
                 
                  



                               
 

                     



                       
                                         


            
                                                         
                                 
 
                              

        


                                             
                            
 

                          
                                             
 

                                                    
  
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <QWidget>

namespace ConfigurationShared {
enum class CheckState;
}

class HotkeyRegistry;

namespace Ui {
class ConfigureGeneral;
}

class ConfigureGeneral : public QWidget {
    Q_OBJECT

public:
    explicit ConfigureGeneral(QWidget* parent = nullptr);
    ~ConfigureGeneral() override;

    void ApplyConfiguration();

private:
    void changeEvent(QEvent* event) override;
    void RetranslateUI();

    void SetConfiguration();

    void SetupPerGameUI();

    std::unique_ptr<Ui::ConfigureGeneral> ui;

    ConfigurationShared::CheckState use_frame_limit;
    ConfigurationShared::CheckState use_multi_core;
};