summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix refresh of data tab.Mikaël Capelle2021-01-291-2/+5
|
* Allow extended selection in log list and implement copy.Mikaël Capelle2021-01-131-1/+0
|
* Remove incorrect command and small clean for mainwindow.h.Mikaël Capelle2021-01-061-8/+7
|
* Remove unused signal.Mikaël Capelle2021-01-021-2/+0
|
* Minor refactoring.Mikaël Capelle2021-01-021-4/+2
|
* Move sort plugins handler to PluginListView.Mikaël Capelle2021-01-021-3/+0
|
* Remove selection-related stuff from plugin/mod lists.Mikaël Capelle2021-01-021-4/+0
|
* Remove unused methods.Mikaël Capelle2021-01-021-7/+0
|
* Move open-explorer key combination to views.Mikaël Capelle2021-01-021-2/+1
|
* Move plugin list context menu to its own class and to PluginListView.Mikaël Capelle2021-01-021-11/+0
|
* Start moving stuff from MainWindow to PluginListView.Mikaël Capelle2021-01-021-5/+0
|
* Remove cancelModListEditor (unused).Mikaël Capelle2021-01-021-2/+0
|
* Move filter list to ModListView.Mikaël Capelle2021-01-021-8/+0
|
* Move more stuff from MainWindow. Minor improvements for prev/next button in ↵Mikaël Capelle2021-01-021-4/+0
| | | | ModInfoDialog.
* Move click event to ModListView. Remove unused slots from MainWindow.Mikaël Capelle2021-01-021-60/+2
|
* Move the regular context menu.Mikaël Capelle2021-01-021-6/+0
|
* Move the separator context menu.Mikaël Capelle2021-01-021-2/+1
|
* Move the backup context menu.Mikaël Capelle2021-01-021-2/+2
|
* Move the overwrite context menu.Mikaël Capelle2021-01-021-12/+0
|
* More stuff moved to mod list context.Mikaël Capelle2021-01-021-7/+0
|
* More context menu stuff moved.Mikaël Capelle2021-01-021-7/+0
|
* Start moving modlist context menu actions to separate structures.Mikaël Capelle2021-01-021-7/+0
|
* Fix category management.Mikaël Capelle2021-01-021-6/+3
|
* Fix and move stuff around.Mikaël Capelle2021-01-021-1/+0
| | | | | | - Move selection-related code from ModList to ModListView. - Fix move-selection for multi-selection. - Fix refresh of mod list on toggle selection.
* Remove context attribute from MainWindow.Mikaël Capelle2021-01-021-37/+30
|
* Refactoring and fixes.Mikaël Capelle2021-01-021-14/+0
| | | | | | - Move codes from MainWindow to ModListView. - Fix enable/disable all visible. - Fix changing style of the mod list.
* Fix automatic refresh of the collapsible separator proxy.Mikaël Capelle2021-01-021-4/+0
|
* Fix keyboard move selection.Mikaël Capelle2021-01-021-1/+6
|
* Move common code to method.Mikaël Capelle2021-01-021-0/+1
|
* Use an intermediate structure to store the separator tree.Mikaël Capelle2021-01-021-0/+2
|
* refresh action, added in toolbar and menuisanae2020-12-281-0/+1
|
* split saves tab, no changesisanae2020-12-281-25/+2
|
* split downloads tabisanae2020-12-261-6/+2
|
* Avoid duplicating code to simulate startup.Mikaël Capelle2020-12-041-8/+0
|
* Add MainWindow::onPluginRegistrationChanged.Mikaël Capelle2020-12-041-0/+2
|
* Add timer to the save list watcher to avoid error during refresh.Mikaël Capelle2020-11-211-0/+1
|
* Update following addition of IPluginGame::listSaves().Mikaël Capelle2020-11-181-0/+1
|
* Proper handling of mod pages.Mikaël Capelle2020-11-131-0/+1
|
* Better 'Browse Mod Page' menu.Mikaël Capelle2020-11-131-4/+0
|
* Fix display of tools in the MainWindow menu.Mikaël Capelle2020-11-111-5/+4
|
* hide tutorial question optionisanae2020-11-031-0/+1
|
* shift+ and ctrl+double-click in mod list will now only open one mod instead ↵isanae2020-07-201-1/+2
| | | | | | of the whole selection since these modifiers are also used for selecting, this is too error prone and users have reported opening a crapload of tabs in their browser or explorer windows
* Clean notification of userInterfaceInitialized between MainWindow and ↵Mikaël Capelle2020-06-161-1/+6
| | | | OrganizerCore.
* Make checks that occur at the same time not return immediately to avoid ↵AL2020-06-071-2/+2
| | | | issues with stuff that might need to rely on check completion.
* Make even the last direct call to checkForProblemsImpl use the async version.AL2020-06-071-2/+2
|
* Avoid executing Problems checks concurrently.AL2020-06-071-0/+2
| | | | | Reduce timer to 500ms. Make other calls also scheduled.
* Fix comment on checkForProblems()AL2020-06-071-1/+1
|
* Make m_NumberOfProblems atomicAL2020-06-071-1/+1
|
* Make checkForProblems update local variable with the problem count,AL2020-06-061-4/+14
| | | | | Make updateProblemsButton just update the ui using that variable (no heavy operation) Add checkForProblemsAsync to perform the heavy checks in another thread.
* hook ctrl+f and escape directly on widgets instead of on the main window to ↵isanae2020-04-171-3/+0
| | | | allow other widgets to use the same shortcuts, like the FilterWidget