Files
eden/src/qt_common/game_list/model.h
T
lizzie 6295d23581 [qt] remove stale compat list setting (#4202)
if we are REALLY going thru for removing the entire game compat list
subsystem, we ought to remove the setting itself

I kept this PR separate because we MAY want to introduce emuready
compatibility, so keeping the setting will keep compatibility with
older setting files from users...

Signed-off-by: lizzie <lizzie@eden-emu.dev>

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4202
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
2026-07-12 20:24:35 +02:00

93 lines
2.3 KiB
C++

// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <memory>
#include <QFileSystemWatcher>
#include <QStandardItemModel>
#include <QStringList>
#include <QVector>
#include "common/common_types.h"
#include "frontend_common/play_time_manager.h"
#include "qt_common/config/uisettings.h"
namespace Core {
class System;
}
class GameListDir;
class GameListWorker;
class QStandardItem;
namespace FileSys {
class ManualContentProvider;
class VfsFilesystem;
} // namespace FileSys
class GameListModel : public QStandardItemModel {
Q_OBJECT
public:
enum Column {
COLUMN_NAME,
COLUMN_FILE_TYPE,
COLUMN_SIZE,
COLUMN_PLAY_TIME,
COLUMN_ADD_ONS,
COLUMN_COUNT,
};
explicit GameListModel(std::shared_ptr<FileSys::VfsFilesystem> vfs_,
FileSys::ManualContentProvider* provider_,
const PlayTime::PlayTimeManager& play_time_manager_,
Core::System& system_, QObject* parent = nullptr);
~GameListModel() override;
void AddDirEntry(GameListDir* entry_items);
void AddEntry(const QList<QStandardItem*>& entry_items, GameListDir* parent);
void DonePopulating(const QStringList& watch_list);
void PopulateAsync(QVector<UISettings::GameDir>& game_dirs);
void WorkerEvent();
bool IsEmpty() const;
void ToggleFavorite(u64 program_id);
void RefreshGameDirectory();
void RefreshExternalContent();
void ResetExternalWatcher();
void RetranslateUI();
QFileSystemWatcher* GetWatcher() const;
void SetFlat(bool flat);
signals:
void ShowList(bool show);
void PopulatingCompleted(const QStringList& watch_list);
void PopulatingStarted();
void SaveConfig();
private:
friend class GameListWorker;
void AddFavorite(u64 program_id);
void RemoveFavorite(u64 program_id);
void Repopulate();
bool m_flat = false;
std::shared_ptr<FileSys::VfsFilesystem> vfs;
FileSys::ManualContentProvider* provider;
const PlayTime::PlayTimeManager& play_time_manager;
Core::System& system;
std::unique_ptr<GameListWorker> current_worker;
QFileSystemWatcher* watcher = nullptr;
QFileSystemWatcher* external_watcher = nullptr;
};