summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
Commit message (Collapse)AuthorAgeFilesLines
* 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
* moved TimeThis to uibaseisanae2020-02-181-1/+3
| | | | fixed progress bar
* customizable columns for mod and plugin listsisanae2020-02-181-3/+0
|
* Merge branch 'master' of https://github.com/ModOrganizer2/modorganizer into ↵isanae2020-02-071-0/+1
|\ | | | | | | generic-file-list
| * Allow Shift-double click on modlist to open Nexus or custom URL as fall-back.AL2020-02-041-0/+1
| |
* | fixed LogModel not being thread safeisanae2020-02-051-2/+2
| | | | | | | | | | | | | | optimizations: - create BrowserDialog on demand - scroll to bottom of log in a timer, coalesces fast logging - disabled md5 of dlls
* | fixed warning when comparing empty stringsisanae2020-02-051-2/+0
| | | | | | | | | | | | | | | | | | | | filter in data tab fixed some bad iterators when removing rows fixed empty directories not being marked as such when refreshing always sort directories first even when reversing the sort order fixed children not being sorted fixed errors about file sizes for directories remember state of checkboxes in data tab
* | split data tabisanae2020-02-041-42/+2
|/ | | | removed a bunch of undefined functions in MainWindow
* Add "Restore hidden files" context menu option to modlist.Al2020-01-201-0/+1
| | | | Recursively restores all hidden files in the mod or mods if more than one is selected.
* moved the conflicts column back to its proper position in the enumisanae2019-12-091-1/+0
| | | | removed unnecessary compat code
* move the conflicts column when resetting geometriesisanae2019-12-091-0/+1
|
* use paintEvent() to allow interactive resize because showEvent() is too earlyisanae2019-12-091-0/+2
| | | | bumped to rc2
* Merge pull request #931 from isanae/double-click-unhookedisanae2019-12-091-0/+1
|\ | | | | Double click unhooked
| * data tab: run exes unhooked by defaultisanae2019-12-091-0/+1
| |
* | Rework column insertion to move to the intended position post-factoSilarn2019-12-081-1/+1
|/
* removed unused on_clickBlankButton_clicked()isanae2019-12-071-3/+0
|
* implemented previews on double-click for the data and conflicts tabsisanae2019-12-041-0/+1
|
* added explore button in the settings to open stylesheets folderisanae2019-12-041-0/+1
| | | | | added stylesheets folder to the open folders button moved "Open MO2 Logs folder" up to be with instance folders, removed "MO2" in the name
* double-click now opens files for the data tab, filetree and conflict listsisanae2019-12-021-0/+2
|
* added "open with vfs" to the data tabisanae2019-12-021-0/+1
| | | | uniform order for file context menus
* three modes for separators, save stateisanae2019-12-021-1/+2
| | | | renamed enumerators
* renamed filters to criteriaisanae2019-11-301-2/+2
| | | | | merged categories and content, they can be distinguished using the type added a not flag for criteria, not used yet
* moved all remaining filter stuff to FilterListisanae2019-11-291-4/+3
| | | | renamed some widgets
* split filter listisanae2019-11-271-9/+3
|
* added separators filterisanae2019-11-271-0/+1
| | | | changed notendorsed filter to include anything else than true
* added not filter, not functional yetisanae2019-11-271-0/+1
| | | | fixed no mods being displayed for OR with no conditions
* added open mod info to data tab context menuisanae2019-11-261-0/+1
|
* split loot stuff to loot.h/cpp, no changes in functionalityisanae2019-11-161-4/+0
|
* added lockwidget to replace all the other dialogsisanae2019-11-061-7/+0
| | | | | | rewrote ProcessRunner to have a bunch of setters and then a run() fixed bad exit code when waiting on a process that's already completed removed lock()/unlock() from main window, ProcessRunner is in charge of that now
* split to processrunnerisanae2019-11-061-2/+3
| | | | | added IUserInterface::qtWidget() put back IUserInterface in OrganizerCore now that there's a way to get the widget
* Merge pull request #863 from isanae/executables-fixesisanae2019-10-101-3/+2
|\ | | | | Executables fixes
| * added hide flag to executablesisanae2019-10-081-2/+1
| |
| * initial selection in the edit executables dialog from main windowisanae2019-10-081-1/+1
| |
* | added ExitModOrganizer(), used instead of qApp->exit()isanae2019-10-071-6/+5
|/ | | | | | | reset geometry uses TaskDialog moved restart code for the settings dialog to MainWindow fixed settings sometimes not being saved when restarting don't log "crash dumps present" every time the settings dialog is closed
* changed the layout of the general settings tabisanae2019-09-231-0/+1
| | | | | added option to disable checking for updates removed online check, just try it and see
* fixes for ExpanderWidgetisanae2019-09-111-3/+0
| | | | removed dead code in MainWindow
* merged DockFixer into GeometrySettingsisanae2019-08-161-2/+0
| | | | added combobox index to settings
* StatusBar now inherits from QStatusBar to handle hide/show eventsisanae2019-08-161-13/+2
| | | | | merged settings into saveVisibility() and restoreVisibility() call MainWindow::storeSettings() earlier so widget visibility is still valid
* moved all geometry save, restore and reset to GeometrySettingsisanae2019-08-161-1/+0
| | | | changed reset button in settings to restart immediately
* added GeometrySaverisanae2019-08-161-4/+0
| | | | | removed widget-specific functions in GeometrySettings, now using generic functions in Settings removed some unused member variables in MainWindow
* moved geometry handling to PreviewDialogisanae2019-08-041-1/+0
| | | | fixed dialogs not having a parent
* removed registerWidgetState(), was used just for header list headers, now ↵isanae2019-08-041-8/+1
| | | | saved and restored directly