Implement instance sorting options.

This commit is contained in:
Petr Mrázek
2013-11-04 00:11:20 +01:00
parent 4466929074
commit d6e4fb2971
5 changed files with 52 additions and 9 deletions

View File

@@ -23,6 +23,15 @@ class JavaVersionList;
#endif
#define MMC (static_cast<MultiMC *>(QCoreApplication::instance()))
// FIXME: possibly move elsewhere
enum InstSortMode
{
// Sort alphabetically by name.
Sort_Name,
// Sort by which instance was launched most recently.
Sort_LastLaunch,
};
class MultiMC : public QApplication
{
Q_OBJECT