mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	qt: Add an option to view/regenerate telemetry ID.
This commit is contained in:
		
							parent
							
								
									5d7b364a21
								
							
						
					
					
						commit
						9f0da33c33
					
				
					 4 changed files with 40 additions and 7 deletions
				
			
		|  | @ -4,11 +4,15 @@ | |||
| 
 | ||||
| #include "citra_qt/configuration/configure_web.h" | ||||
| #include "core/settings.h" | ||||
| #include "core/telemetry_session.h" | ||||
| #include "ui_configure_web.h" | ||||
| 
 | ||||
| ConfigureWeb::ConfigureWeb(QWidget* parent) | ||||
|     : QWidget(parent), ui(std::make_unique<Ui::ConfigureWeb>()) { | ||||
|     ui->setupUi(this); | ||||
|     connect(ui->button_regenerate_telemetry_id, &QPushButton::clicked, this, | ||||
|             &ConfigureWeb::refreshTelemetryID); | ||||
| 
 | ||||
|     this->setConfiguration(); | ||||
| } | ||||
| 
 | ||||
|  | @ -30,8 +34,8 @@ void ConfigureWeb::setConfiguration() { | |||
|     ui->toggle_telemetry->setChecked(Settings::values.enable_telemetry); | ||||
|     ui->edit_username->setText(QString::fromStdString(Settings::values.citra_username)); | ||||
|     ui->edit_token->setText(QString::fromStdString(Settings::values.citra_token)); | ||||
| 
 | ||||
|     updateWeb(); | ||||
|     ui->label_telemetry_id->setText("Telemetry ID: 0x" + | ||||
|                                     QString::number(Core::GetTelemetryId(), 16).toUpper()); | ||||
| } | ||||
| 
 | ||||
| void ConfigureWeb::applyConfiguration() { | ||||
|  | @ -41,4 +45,8 @@ void ConfigureWeb::applyConfiguration() { | |||
|     Settings::Apply(); | ||||
| } | ||||
| 
 | ||||
| void ConfigureWeb::updateWeb() {} | ||||
| void ConfigureWeb::refreshTelemetryID() { | ||||
|     const u64 new_telemetry_id{Core::RegenerateTelemetryId()}; | ||||
|     ui->label_telemetry_id->setText("Telemetry ID: 0x" + | ||||
|                                     QString::number(new_telemetry_id, 16).toUpper()); | ||||
| } | ||||
|  |  | |||
|  | @ -21,7 +21,7 @@ public: | |||
|     void applyConfiguration(); | ||||
| 
 | ||||
| public slots: | ||||
|     void updateWeb(); | ||||
|     void refreshTelemetryID(); | ||||
| 
 | ||||
| private: | ||||
|     void setConfiguration(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue