diff options
| author | Al <gabriel.cortesi@outlook.com> | 2018-04-17 22:43:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-17 22:43:24 +0200 |
| commit | 618fd543a6d82e951ac3cf2201acf047d33cb9f6 (patch) | |
| tree | 08cac174a87692239dade12dd388535216991ccd /src/mainwindow.h | |
| parent | 634825e1b8954753315e270ee4744575f14e6ac3 (diff) | |
| parent | f2762035171f60fdd0b16052c07f67a0f79d60a8 (diff) | |
Merge pull request #315 from Al12rs/Develop
Ui and shortcut changes.
Diffstat (limited to 'src/mainwindow.h')
| -rw-r--r-- | src/mainwindow.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index d684dbc0..b06da353 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -217,7 +217,7 @@ private: QList<MOBase::IOrganizer::FileInfo> findFileInfos(const QString &path, const std::function<bool (const MOBase::IOrganizer::FileInfo &)> &filter) const;
bool modifyExecutablesDialog();
- void displayModInformation(int row, int tab = 0);
+ void displayModInformation(int row, int tab = -1);
void testExtractBSA(int modIndex);
void writeDataToFile(QFile &file, const QString &directory, const MOShared::DirectoryEntry &directoryEntry);
@@ -386,6 +386,7 @@ private slots: void showMessage(const QString &message);
void showError(const QString &message);
+
// main window actions
void helpTriggered();
void issueTriggered();
@@ -393,6 +394,10 @@ private slots: void tutorialTriggered();
void extractBSATriggered();
+ //modlist shortcuts
+ void openExplorer_activated();
+ void refreshProfile_activated();
+
// modlist context menu
void installMod_clicked();
void createEmptyMod_clicked();
@@ -469,8 +474,8 @@ private slots: void deselectFilters();
void displayModInformation(const QString &modName, int tab);
- void modOpenNext();
- void modOpenPrev();
+ void modOpenNext(int tab=-1);
+ void modOpenPrev(int tab=-1);
void modRenamed(const QString &oldName, const QString &newName);
void modRemoved(const QString &fileName);
|
