aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow
Commit message (Collapse)AuthorAgeFilesLines
* Turn on more warnings by defaultAqua-sama2020-05-285-63/+63
| | | | | | - fix clazy warnings - fix various other compiler warnings - bugfix: connect profiles' downloadRequested signal
* libwebengineAqua-sama2020-05-084-100/+22
| | | | | | | | | | | Make src/webengine into a static library - Add some tests - Updated manpage - Remove WebProfileManager::id and WebProfileManager::instance - Add consumable semantics checks to WebProfileManager - Add WebProfileManager::walk Add ApplicationMenu class
* Rewrite Session backendAqua-sama2020-04-133-19/+68
| | | | | | | | | | | | | | | | | | Add session.hpp, containing structs that describe session data MainWindow, SubWindow and WebView can be created from Session::structs Opening new window will automatically open a default subwindow and tab if none were specified Add lib/session_formats Add JsonSession, to serialize/deserialize Session structs into JSON - add some tests clang-tidy: - fix various warnings - disable modernize-use-trailing-return-type check
* Remove QMdiArea in MainWindowAqua-sama2020-04-037-230/+144
| | | | | | | | | | | | | | | | | | | | Kconfig: Change About Dialog shortcut default to F1 (was Ctrl+H) Change close current tab shortcut to Ctrl+W (was Ctrl+X) MainWindow: automatically close window when last subwindow is closed MenuBar: remove Tile/Cascade subwindows actions add show/hide/close subwindow actions SubWindow: remove Subwindow menu shortcut (was F1 by default) add close shortcut (default Ctrl+Shift+W) Minor fixes: Fix PKGBUILD sources
* Fix various compiler warningsAqua-sama2020-03-236-32/+32
|
* MenuBar: Add Unlock toolbars toggleAqua-sama2020-01-292-4/+18
| | | | | | | | Add BookmarksToolbar config toggles - bookmarks.toolbar.movable - bookmarks.toolbar.visible clang-format pass
* BookmarksToolbar: add toggle shortcutAqua-sama2020-01-293-4/+17
| | | | | | - MenuBar: add toggles for MainWindow toolbars to Window menu - set NavigationBar and BookmarksToolbar titles so the default MainWindow context menu makes sense
* Add bookmarks toolbarAqua-sama2020-01-281-0/+6
| | | | | Bookmarks Toolbar displays the contents of the top-level "Bookmarks Toolbar" folder.
* Refactor Browser::addPlugin to ::loadPluginsAqua-sama2020-01-271-1/+1
|
* Fix various gcc and clazy compile warningsAqua-sama2020-01-171-1/+1
|
* Move BookmarksWidget out of libbookmarksAqua-sama2020-01-151-1/+1
|
* Add close action to subwindow listAqua-sama2020-01-141-6/+13
| | | | | | Adding a menu to an action is incompatible with triggerring that action. This means a "Toggle to" action is required as well to preserve the functionality.
* Fix address bar completer deleting url when closing with no item selectedAqua-sama2020-01-121-1/+2
|
* Code cleanupAqua-sama2020-01-051-10/+14
| | | | | | - Replace Browser::getProfileManager with WebProfileManager::instance - Make WebProfileManager::profileMenu a free function - Replace Browser::loadProfile with Browser::loadProfiles
* Merge some QoL improvements from staging branchAqua-sama2020-01-031-11/+2
| | | | | | | | - Build executable in top-level buildroot - Use meson sourceset - Pull in poi-crash and poi-update from staging - Remove extraneous scripts in tools/ - Pull in configure scripts in scripts/
* Move lib/webprofile into src/webengineAqua-sama2019-11-043-4/+4
|
* Drop boost dependencyAqua-sama2019-11-0313-50/+535
| | | | | - wrote not-invented-here config file parser and conf class - spent obscene amount of time plugging in said conf class
* Add tools/report-clang-tidy.shAqua-sama2019-01-182-10/+10
| | | | | - Fix various clang-tidy warnings - Fix use-after-free crash when deleting profiles
* Rewrite lib/web to lib/webprofileAqua-sama2019-01-162-6/+6
| | | | | | | | | | - libweb was supposed to be a general QtWebEngine wrapper, but only turned out to do profiles and profile management. The new name should make this more obvious. - Renamed ProfileManager to WebProfileManager, and cut out duplicate code. - Temporary profiles: temporary profiles are not kept after closing the browser.
* Add Edit menuAqua-sama2019-01-031-0/+85
|
* Update license yearAqua-sama2019-01-021-1/+2
|
* Connect Developer Tools and View Source actionsAqua-sama2019-01-022-32/+47
|
* Add subwindow list to Window menuAqua-sama2018-12-173-3/+27
|
* Add restore last tab shortcutAqua-sama2018-12-151-23/+17
|
* Move tab actions to Subwindow menuAqua-sama2018-12-151-0/+145
|
* Add SaveSessionDialogAqua-sama2018-12-141-10/+8
|
* Add translations meson option to build and install translationsAqua-sama2018-12-131-0/+2
|
* MainWindow: rework menu barAqua-sama2018-12-138-335/+322
| | | | | Split off menu bar into its own class out of MainWindow Menu bar now has a 'Find in menus' function
* Fix navigation buttons using wrong iconsAqua-sama2018-12-113-25/+18
|
* pick-session: pass session data to existing instance if anyAqua-sama2018-11-301-1/+28
|
* Rewrite Session saving and loadingAqua-sama2018-11-282-25/+9
|
* Add Session::view and Session::restoreViewAqua-sama2018-11-261-1/+21
|
* Add Session DialogAqua-sama2018-11-251-8/+3
|
* Adding and Removing plugins at runtimeAqua-sama2018-11-231-2/+9
|
* Add About and Run actions to plugin submenuAqua-sama2018-11-233-23/+17
| | | | - Remove plugin list from About dialog
* Fix transparent background being enabled if Plasma is foundAqua-sama2018-11-221-2/+3
|
* Add AboutPlugin dialogAqua-sama2018-11-221-1/+7
|
* Fix various build warningsAqua-sama2018-10-251-0/+2
|
* Remove lib/ as includepathAqua-sama2018-10-232-6/+6
|
* unstable: KWallet integrationAqua-sama2018-10-131-2/+2
|
* mainwindow: keep maximized state when adding subwindowsAqua-sama2018-10-071-1/+11
| | | | | Only maximize added subwindow when there is no current subwindow, or when the current subwindow is maximized.
* Show subwindow system menu at correct positionAqua-sama2018-10-061-1/+4
|
* Add "subwindow.shortcuts.menu" shortcutAqua-sama2018-10-061-5/+14
|
* clazy: fix warningsAqua-sama2018-10-042-14/+8
|
* Update remaining repository paths in license headersAqua-sama2018-10-026-6/+6
|
* ProfileManager: move initial profile loading to ProfileManagerAqua-sama2018-09-291-0/+1
|
* Update repository path in license headersAqua-sama2018-09-292-2/+2
|
* Turn Session class into namespaceAqua-sama2018-09-281-1/+1
|
* breakpad: try to write session on crashAqua-sama2018-09-281-0/+10
|
* clang-format passAqua-sama2018-09-182-13/+16
|