mirror of
https://github.com/ong19th/Citron.git
synced 2025-12-12 04:36:57 +00:00
chore: update project branding to citron
This commit is contained in:
parent
b35ae725d2
commit
9427e27e24
495 changed files with 304 additions and 3189 deletions
32
src/citron/configuration/configure_touchscreen_advanced.h
Normal file
32
src/citron/configuration/configure_touchscreen_advanced.h
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class ConfigureTouchscreenAdvanced;
|
||||
}
|
||||
|
||||
class ConfigureTouchscreenAdvanced : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureTouchscreenAdvanced(QWidget* parent);
|
||||
~ConfigureTouchscreenAdvanced() override;
|
||||
|
||||
void ApplyConfiguration();
|
||||
|
||||
private:
|
||||
void changeEvent(QEvent* event) override;
|
||||
void RetranslateUI();
|
||||
|
||||
/// Load configuration settings.
|
||||
void LoadConfiguration();
|
||||
/// Restore all buttons to their default values.
|
||||
void RestoreDefaults();
|
||||
|
||||
std::unique_ptr<Ui::ConfigureTouchscreenAdvanced> ui;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue