Files
ppsspp/UI/SystemInfoScreen.h
T

33 lines
1014 B
C++

#pragma once
#include <string>
#include <vector>
#include "Common/File/Path.h"
#include "Common/UI/UIScreen.h"
#include "UI/TabbedDialogScreen.h"
class SystemInfoScreen : public TabbedUIDialogScreenWithGameBackground {
public:
SystemInfoScreen(const Path &filename) : TabbedUIDialogScreenWithGameBackground(filename) {}
const char *tag() const override { return "SystemInfo"; }
void CreateTabs() override;
void update() override;
void resized() override { RecreateViews(); }
protected:
void CopySummaryToClipboard(UI::EventParams &e);
bool ShowSearchControls() const override { return false; }
private:
void CreateDeviceInfoTab(UI::LinearLayout *deviceInfo);
void CreateStorageTab(UI::LinearLayout *storage);
void CreateBuildConfigTab(UI::LinearLayout *storage);
void CreateCPUExtensionsTab(UI::LinearLayout *storage);
void CreateDriverBugsTab(UI::LinearLayout *storage);
void CreateOpenGLExtsTab(UI::LinearLayout *gpuExtensions);
void CreateVulkanExtsTab(UI::LinearLayout *gpuExtensions);
};