2014-10-04 13:12:15 -06:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2014-10-04 13:12:15 -06:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-04-14 08:42:54 -06:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2014-10-04 13:12:15 -06:00
|
|
|
namespace UICommon
|
|
|
|
{
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
2018-01-01 14:03:50 -07:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
2018-04-14 08:48:49 -06:00
|
|
|
void EnableScreenSaver(unsigned long win, bool enable);
|
2018-01-01 14:03:50 -07:00
|
|
|
#else
|
|
|
|
void EnableScreenSaver(bool enable);
|
|
|
|
#endif
|
|
|
|
|
2017-07-21 04:46:12 -06: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 13:12:15 -06:00
|
|
|
void CreateDirectories();
|
2015-02-25 02:23:42 -07:00
|
|
|
void SetUserDirectory(const std::string& custom_path);
|
2014-10-04 13:12:15 -06:00
|
|
|
|
2017-06-24 13:41:53 -06:00
|
|
|
bool TriggerSTMPowerEvent();
|
|
|
|
|
2017-05-09 10:49:10 -06:00
|
|
|
void SaveWiimoteSources();
|
2017-12-31 12:33:36 -07:00
|
|
|
|
|
|
|
// Return a pretty file size string from byte count.
|
|
|
|
// e.g. 1134278 -> "1.08 MiB"
|
2020-04-10 07:14:03 -06:00
|
|
|
std::string FormatSize(u64 bytes, int decimals = 2);
|
2014-10-04 13:12:15 -06:00
|
|
|
} // namespace UICommon
|