David Rosca
495ebc785e
Don't link to unused Qt modules
11 years ago
David Rosca
15279a3641
WebView: Don't show source on qrc: scheme
11 years ago
David Rosca
b9d5851ef5
Renamed src/webkit -> src/webengine
11 years ago
David Rosca
7d9a07b379
Bring back show source support (using view-source: url)
11 years ago
David Rosca
278b725571
Bring back support for downloading files
...
All files are now automatically downloaded to the specified
directory. Due to QtWebEngine API changes, it is not possible
to ask user where to save the file.
11 years ago
David Rosca
b94135ead5
WebView: Implement icon loading
11 years ago
David Rosca
60b2386a6e
Initial port to QtWebEngine
...
This is first quick port to QtWebEngine, most of advanced features
are not working yet. Please read README.
For now, it will use separate profile directory as well as browser
session, that means you can use both QtWebEngine and QtWebKit versions
at the same time.
11 years ago
David Rosca
04d4555b47
Don't duplicate convertUrlToText function in WebView
11 years ago
David Rosca
7384ed2685
Fix searching for strings with non-ascii characters from locationbar
...
Closes #1587
11 years ago
David Rosca
5d99f53fb8
WebView: Fix zoom shortcuts with +/-/0 on numeric block
11 years ago
S. Razi Alavizadeh
ab368f647f
Assume "about:blank" as an empty URL.
...
- Closes #1539
11 years ago
David Rosca
478b5ddb84
Use open() instead of exec() in all dialogs
...
Avoid blocking exec().
Closes #1515
12 years ago
David Rosca
ada212bc59
LineEdit: Fix text edit shortcuts not working on non-latin keyboard layout
...
This fixes Ctrl+C/V/X/A shortcuts in LocationBar and WebSearchBar
Followup to #1494
12 years ago
David Rosca
f6b679585e
WebView: Fix text edit shortcuts not working on non-latin keyboard layout
...
Closes #1494
12 years ago
David Rosca
26f466ed0d
AdBlock: Don't block user triggered network requests
...
Disable AdBlock when user tries to load the url from locationbar,
clicking on link, opening new tab, ...
Only block web content not explicitly requested by user - images,
scripts, redirects, ...
12 years ago
David Rosca
5404985dba
Do not force keyboard text navigation in editable elements
...
Keyboard text navigation is handled automatically by QtWebKit
in editable elements.
This fixes issue in some custom html code editors.
Closes #1489
12 years ago
Mladen Pejaković
8f691905f0
[SpeedDial] Reload all dials menu action. Closes #1209
12 years ago
David Rosca
9502810404
[UrlLoading] Make sure to correctly load one-word hosts without dot
...
One-word hosts without the dot may be valid url. So let's try to load
it first before using a websearch.
Closes #1317
12 years ago
David Rosca
72ab5de448
[Code] Small code cleanups
...
Mostly to silence a warnings from cppcheck
[ci-skip]
12 years ago
David Rosca
dc1b5931ea
[WebView] Don't clear selection when right clicking on selected link
...
This removes a workaround for a very old QtWebKit (<= 2.0) that actually
caused unwanted behavior with newer QtWebKit versions.
Closes #1377
[ci-skip]
12 years ago
Mladen Pejaković
6eeebd1866
[Webview] Use https for Google Translate. Closes #1331
12 years ago
David Rosca
45635f6da8
[WebView] Fixed loading of bookmarklets
...
Closes #1288
12 years ago
nowrep
6874df57d7
[Coding Style] Edited coding style (use linux style brackets)
...
Linux style brackets are now used also for source files.
One line blocks can now be without brackets.
Example:
if (test)
foo();
Multi-line if statements are now written with conditionals (||, &&, ...)
at the end of line. The last line of if body does not ends with closing
bracket, instead the closing bracket is written on separate line.
One line blocks in multi-line if statements should not be without brackets.
Example:
if (test ||
test2 &&
test3
) {
foo();
}
[ci skip]
12 years ago
nowrep
41ff89c3dd
[WebView] Added option to force context menu to be opened on mouse release
...
This is needed for mouse gestures to be able to use right mouse button.
See #1280
12 years ago
nowrep
5c2c90ae6d
[WebTab] More cleanup in detach/attach code.
...
TabbedWebView can now be used with null BrowserWindow pointer.
12 years ago
nowrep
98907c2055
[WebTab] Reworked tab attaching/detaching.
...
This also fixes crash on detach
12 years ago
nowrep
7f3d8ee786
[Cleanup] Split src/lib/webview into tabwidget, webkit and webtab folders
12 years ago
nowrep
a059c005ff
[SBI_Icons] Added Zoom Widget to StatusBarIcons plugin
...
Closes #1197
12 years ago
nowrep
fcfe2999f7
[WebView] Delete m_page in destructor
...
This should fix rare crash when closing tab.
[ci skip]
12 years ago
nowrep
ab638a5525
[IconProvider] Use fallback oxygen icon theme (in oxygen-fallback.qrc)
...
Instead of manually setting fallback icons, use globally fallback theme.
12 years ago
nowrep
e36697eedf
[SearchEngines] Support for loading POST engines from LocationBar
...
Added new class LoadRequest, that holds network request with its
operation type and POST data.
12 years ago
nowrep
d2528417d1
[CodeCleanup] Removed all disconnectObjects() methods
...
I don't think we need this hack anymore.
12 years ago
nowrep
e827249f50
[MainMenu] Added MainMenu class that holds all menu actions of window
...
All actions are now saved in QHash with name, this will make possible
to implement own keyboard shortcuts for actions.
+ WIP cleanup of BrowserWindow class
12 years ago
nowrep
2e9ce1ba90
[CodeCleanup] Major cleanup in MainApplication class
12 years ago
nowrep
a61ce67d7c
[SpellCheck] Cleanup: Speller class is now singleton
...
All spellcheck is now where it belongs, under spellcheck directory
12 years ago
nowrep
edbb87bd1f
[CodeCleanup] IconProvider now have static methods for getting icons
12 years ago
Mladen Pejaković
131eef5c9d
Open links in private window.
12 years ago
nowrep
96b5ec1c50
[NewTabFlags] Fixed incorrect usage of Qz::NewTabPositionFlags
12 years ago
nowrep
dab7c82ae8
[WebView] Another approach to window.onbeforeunload handling
...
Don't try to load empty url just to check for beforeunload event.
Explicitly evaluate the window.onbeforeunload function instead.
12 years ago
nowrep
4e8c0adbad
[LocationBar] Don't incorrectly show about to be loaded url when it was not accepted
...
It can happen for example when trying to change address on a page that
handles window.onbeforeunload event
12 years ago
nowrep
28091f4957
[Menus] Menus are not closed when opening links with middle mouse button
...
It is the same behaviour as in Konqueror
Closes #1165
12 years ago
nowrep
973014ae89
[EnhancedMenu] Rename signals to ctrlTriggerd and shiftTriggered
12 years ago
nowrep
a805f19f13
[Bookmarks] Add bookmarks dialogs are now working
12 years ago
nowrep
aa6aea1399
[coverity] Followup fixes
...
webview.cpp: Fixed pointer to local outside scope
bookmarksmodel.cpp: Unchecked return value
12 years ago
nowrep
260447e414
[coverity] Fixes for issues found by scan.coverity.com
12 years ago
nowrep
3b097c8da1
[WebView] Bookmark Link action now uses a.title as bookmark title
...
Closes #1131
12 years ago
nowrep
0758ba39ab
[LocationCompleter] Add option to enable/disable inline completion
12 years ago
Mladen Pejaković
27d4b05c2b
[Speed Dial] Theme icons for context menu actions
12 years ago
nowrep
a1f1d76404
[Copyright] Small string changes + 2014 copyright
12 years ago
Mladen Pejaković
3a3e7341a2
Thematic changes
12 years ago