2014-10-04 15:12:15 -04:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-10-04 15:12:15 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-04-14 16:42:54 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2021-04-27 23:43:04 +02:00
|
|
|
struct WindowSystemInfo;
|
|
|
|
|
2014-10-04 15:12:15 -04:00
|
|
|
namespace UICommon
|
|
|
|
{
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
2021-04-27 23:43:04 +02:00
|
|
|
void InitControllers(const WindowSystemInfo& wsi);
|
|
|
|
void ShutdownControllers();
|
|
|
|
|
2024-09-23 17:51:04 +01:00
|
|
|
void InhibitScreenSaver(bool inhibit);
|
2018-01-01 21:03:50 +00:00
|
|
|
|
2017-07-21 12:46:12 +02:00
|
|
|
// Calls std::locale::global, selecting a fallback locale if the
|
|
|
|
// requested locale isn't available
|
|
|
|
void SetLocale(std::string locale_name);
|
|
|
|
|
2014-10-04 15:12:15 -04:00
|
|
|
void CreateDirectories();
|
2021-11-22 03:44:33 +01:00
|
|
|
void SetUserDirectory(std::string custom_path);
|
2014-10-04 15:12:15 -04:00
|
|
|
|
2017-06-24 21:41:53 +02:00
|
|
|
bool TriggerSTMPowerEvent();
|
|
|
|
|
2017-12-31 20:33:36 +01:00
|
|
|
// Return a pretty file size string from byte count.
|
|
|
|
// e.g. 1134278 -> "1.08 MiB"
|
2020-04-10 15:14:03 +02:00
|
|
|
std::string FormatSize(u64 bytes, int decimals = 2);
|
2014-10-04 15:12:15 -04:00
|
|
|
} // namespace UICommon
|