mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-06-06 01:13:45 -04:00
63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWindow>
|
|
|
|
#include "core/core.h"
|
|
#include "core/file_sys/registered_cache.h"
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "qt_common/render/emu_thread.h"
|
|
|
|
#include "core/file_sys/vfs/vfs_real.h"
|
|
|
|
enum class StartGameType {
|
|
Normal, // Can use custom configuration
|
|
Global, // Only uses global configuration
|
|
};
|
|
|
|
namespace QtCommon {
|
|
|
|
// TODO: Remove QWidget dependency
|
|
extern QWidget* rootObject;
|
|
|
|
extern std::unique_ptr<Core::System> system;
|
|
extern std::shared_ptr<FileSys::RealVfsFilesystem> vfs;
|
|
extern std::unique_ptr<FileSys::ManualContentProvider> provider;
|
|
extern std::unique_ptr<EmuThread> emu_thread;
|
|
|
|
extern const QStringList supported_file_extensions;
|
|
|
|
typedef std::function<bool(std::size_t, std::size_t)> QtProgressCallback;
|
|
|
|
Core::Frontend::WindowSystemType GetWindowSystemType();
|
|
|
|
Core::Frontend::EmuWindow::WindowSystemInfo GetWindowSystemInfo(QWindow* window);
|
|
|
|
void Init(QWidget* root);
|
|
|
|
void SetupContentProviders();
|
|
void SetupHID();
|
|
|
|
const QString tr(const char* str);
|
|
const QString tr(const std::string& str);
|
|
|
|
// TODO: Find a better place for these
|
|
|
|
/// Convert a size in bytes into a readable format (KiB, MiB, etc.)
|
|
[[nodiscard]] QString ReadableByteSize(qulonglong size);
|
|
|
|
/**
|
|
* Creates a circle pixmap from a specified color
|
|
* @param color The color the pixmap shall have
|
|
* @return QPixmap circle pixmap
|
|
*/
|
|
[[nodiscard]] QPixmap CreateCirclePixmapFromColor(const QColor& color);
|
|
|
|
|
|
|
|
std::filesystem::path GetEdenCommand();
|
|
} // namespace QtCommon
|