UI: Massive revamp, new features and improvements

This commit is contained in:
Connor McLaughlin
2022-07-11 23:03:29 +10:00
parent 3fb61865e5
commit b42b5501f6
425 changed files with 39701 additions and 29487 deletions

View File

@@ -3,14 +3,14 @@
#include <QtCore/QString>
#include <vector>
class QtHostInterface;
class EmuThread;
class GameListSearchDirectoriesModel : public QAbstractTableModel
{
Q_OBJECT
public:
GameListSearchDirectoriesModel(QtHostInterface* host_interface);
GameListSearchDirectoriesModel(EmuThread* host_interface);
~GameListSearchDirectoriesModel();
int columnCount(const QModelIndex& parent) const override;
@@ -36,6 +36,6 @@ private:
bool recursive;
};
QtHostInterface* m_host_interface;
EmuThread* m_host_interface;
std::vector<Entry> m_entries;
};