summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/game_list.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Frontend: Prevent FileSystemWatcher from blocking UI threadJames Rowe2017-05-101-3/+2
| | | | | | | | Instead of tying the QFileSystemWatcher to the GameList and updating in the UI thread, this change moves it to the worker thread. Since it gets deleted and recreated as part of the worker thread, this prevents it from ever getting used from multiple threads (which is why it was originally done on the UI thread)
* Fixed some more typosNico Bosshard2017-05-031-2/+2
|
* citra-qt: game list search function (#2673)Nico Bosshard2017-04-301-1/+46
| | | | | | | | | | | | | | | | * citra-qt: game list search function * Empty search field during game list refresh * Code improvements * Code formatting * Autofocus search field * JayFoxRox's recommendations * lioncash's review
* Use QFileSystemWatcher to reload the game list when a change is detected. (#2555)James Rowe2017-02-231-0/+4
| | | | | | | | | * Added a refresh game directory option to the file menu * Make the game list watcher recursive and have it start watching from the initial load * Rework game list watcher to be thread safe * Fix code style issues
* citra-qt: Don't attempt to scan files with unsupported extensions (#2402)Kloen Lansfiel2017-02-121-0/+2
|
* game_list: Implement context menu for items in listMerryMage2016-12-151-0/+3
| | | | * Add a context menu with a "Open Save Data Location" action
* game_list: Make slots private functionsLioncash2016-12-111-7/+4
| | | | | The new Qt event syntax allows for regular member functions to be used in connect(), so explicitly indicating slots isn't necessary.
* game_list: Make the constructor explicitLioncash2016-12-111-1/+1
|
* game_list: Make the AddEntry argument a const referenceLioncash2016-12-111-1/+1
| | | | | appendRow takes a QList by const reference, so it doesn't need to be modifiable.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-1/+0
|
* add icon & title to game listwwylele2016-05-041-1/+1
|
* Whole config is handled by Config class.LittleWhite2016-03-211-2/+2
| | | | This also means : we have only one config file, now
* Game list: save and load column sizes, sort order, to QSettingsarchshift2015-10-021-0/+4
|
* Initial implementation of a game listarchshift2015-10-021-0/+48