David Rosca
db058ff194
Remove use of QNetworkRequest in LoadRequest
2015-10-06 09:46:23 +02:00
David Rosca
fc85caff57
Add QWebPage::view() that returns WebView *
2015-09-24 23:00:27 +02:00
David Rosca
32a0db31b3
AutoFill: Initial port to QtWebEngine
...
There are still issues with completing forms in frames
2015-08-31 18:56:52 +02:00
David Rosca
758fd6c687
Fix all build warnings
2015-08-30 17:42:58 +02:00
David Rosca
8d7cfb0e2a
Remove some Qt 4 specific code
2015-02-26 12:17:47 +01:00
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.
2015-01-27 11:01:52 +01:00
David Rosca
dc29f6bde5
QzTools: Add function to obtain url of QWebFrame
...
QWebFrame::url() may be empty, and in that case QWebFrame::baseUrl()
should be used
The issue with empty frame url caused AutoFill to not complete
such frames.
Closes #1465
2014-09-29 16:14:49 +02:00
David Rosca
3360a531f1
AutoFill: Rewrite AutoFill to complete each frame separately
...
Fixes crash from #1417
2014-09-19 13:16:02 +02:00
David Rosca
a588d209a0
[PasswordManager] Save host also with port
...
Makes it possible to save different passwords for page.com and page.com:23
Closes #1416
2014-07-08 19:28:20 +02:00
S. Razi Alavizadeh
8bee3d937d
Improvement in asking of master-password.
...
- Closes #1356
2014-05-26 00:24:43 +04:30
nowrep
6e18ee7502
[PageFormCompleter] Try to be extra cautious with QWebFrames
...
This is an attempt to fix crash when calling QWebFrame::childFrames
in PageFormCompleter::getAllElementsFromPage
[ci skip]
2014-04-06 15:13:07 +02:00
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]
2014-04-05 14:53:45 +02:00
nowrep
fe0b03fdb7
Include QDebug in qzcommon.h
...
It's annoying to always include it just to remove a moment after...
2014-03-16 13:22:41 +01:00
nowrep
688e021fff
[DatabaseWriter] Replace with new SqlDatabase class
2014-03-15 01:14:06 +01:00
nowrep
2e9ce1ba90
[CodeCleanup] Major cleanup in MainApplication class
2014-03-10 00:47:07 +01:00
nowrep
417da146e5
[QzTools] Make QzTools class and export only the class
...
Also fixed building on Windows
2014-03-07 22:54:50 +01:00
nowrep
edbb87bd1f
[CodeCleanup] IconProvider now have static methods for getting icons
2014-03-07 18:03:42 +01:00
nowrep
5e4f703ef2
[Code] Renamed qz_namespace.h to qzcommon.h
2014-02-26 20:03:20 +01:00
nowrep
3650aac9ff
[Code] Little cleanups after rename QupZilla -> BrowserWindow
2014-02-26 19:55:49 +01:00
nowrep
afae00e4a2
[Cleanup] Rename export macro to just QUPZILLA_EXPORT
2014-02-19 22:12:32 +01:00
nowrep
404fa68a1b
[Cleanup] Renamed QupZilla class to BrowserWindow
2014-02-19 22:07:21 +01:00
nowrep
260447e414
[coverity] Fixes for issues found by scan.coverity.com
2014-02-01 19:21:49 +01:00
Jonathan Hooverman
d917f43cf0
Updated copyright year to 2014
2014-01-11 16:11:42 +01:00
Mladen Pejaković
1cafad9ed4
[Autofill] Thematic changes
2014-01-08 16:59:21 +01:00
nowrep
da15e5868d
[CodingStyle] Don't use references when assigning to local variable
...
Let the compiler do the optimization
2013-12-30 13:43:48 +01:00
nowrep
2276a7f274
PageFormCompleter: Coding style
...
PageFormCompleter::getAllElementsFromPage doesn't need passing
QWebPage *
2013-11-15 19:35:06 +01:00
nowrep
51a262bc8d
[Master Password Dialog] Set minimum width and height for widget
...
Fixes issue with possible resize to 1x1 px size
2013-07-24 12:33:39 +02:00
nowrep
2554ad9870
Coding style: Uninline public functions
2013-06-30 12:41:01 +02:00
Jonathan Hooverman
eee53c8a42
Fixed some typos in passwordbackends
2013-06-28 13:46:46 +02:00
S. Razi Alavizadeh
f01157d71c
EncryptedPasswordBackend: ask password on function call not on each entry
...
-also fixed converting to plain data
2013-06-26 21:17:43 +04:30
nowrep
f6449b0402
EncryptedPasswordBackend: Make sure only one ask password dialog is visible at time.
2013-06-26 13:59:46 +02:00
nowrep
7a0a4ea31e
EncryptedPasswordBackend: Coding style
2013-06-26 13:24:18 +02:00
S. Razi Alavizadeh
3170fccf0e
[MasterPasswordDialog] Fixed, clear masterpassword always changes backend.
...
-Also fixed recursive call to QDialog::exec()
2013-06-21 03:27:58 +04:30
S. Razi Alavizadeh
5ea3572368
[Windows][Tests] Fixed compile issues on Windows.
2013-06-19 02:07:46 +04:30
S. Razi Alavizadeh
05755158f9
[PasswordManager] Added DatabaseEncryptedPasswordBackend.
...
-It uses AesInterface for all encryption/decryption (AES 256 CBC)
2013-06-19 02:07:43 +04:30
S. Razi Alavizadeh
102d90b77b
[PasswordManager] Moved saving selected backend to switchBackend().
...
-Also added PasswordManager::passwordBackendChanged() signal.
-Also some other options moved to AutoFillManager::currentPasswordBackendChanged()
2013-06-19 02:07:41 +04:30
S. Razi Alavizadeh
aaf082a332
[PasswordManager] change return type of updateEntry() to bool.
2013-06-19 02:07:39 +04:30
nowrep
de10968498
[PasswordsManager] Make names of backend translatable.
...
AutoFill needs to have Q_OBJECT macro for QObject::tr function.
2013-06-05 23:14:03 +02:00
nowrep
7001823511
Fixed crash when opening preferences and not loaded passwords manager
2013-06-05 00:06:23 +02:00
nowrep
c15f62e17a
Fixed building with Qt 5.0.x
...
Closes #908
2013-06-01 14:50:45 +02:00
nowrep
7e2b631f34
[PasswordManager] Ported importing/exporting for multiple backends.
...
However, for some reason it doesn't work for KWallet backend.
2013-05-22 15:43:44 +02:00
nowrep
972af5552d
[GnomeKeyring] Make tests pass with gnome-keyring backend.
...
Fixed PasswordManager::urlEncodePassword - ~ is also needed to encode
2013-05-21 16:43:56 +02:00
nowrep
c54031793e
[DatabasePasswordBackend] Make tests from previous commit pass.
2013-05-21 13:37:58 +02:00
nowrep
5c698d5d2a
[PasswordManager] Fixed encoding passwords to url encoded format.
2013-05-20 13:33:13 +02:00
nowrep
54a3509fcb
[PasswordManager] Added updated member to PasswordEntry struct.
2013-05-20 11:05:54 +02:00
nowrep
ffc47909a8
[PasswordManager] Backends can now have its own options dialog.
2013-05-18 19:50:12 +02:00
nowrep
90a4200981
[PasswordManager] Correctly switch password backends.
2013-05-18 13:29:11 +02:00
nowrep
34f8162615
[PasswordBackends] Added possibility to change backends in preferences.
2013-05-17 15:42:06 +02:00
nowrep
95a44ded44
[PasswordManager] Added KWallet backend plugin.
...
When building with KDE integration (KDE build flag), this plugin
will now be built.
Closes #592
2013-05-15 21:31:34 +02:00
nowrep
f8ee9a4b9c
[PasswordManager] Small cleanups + offer plugins to add new backends.
2013-05-15 20:05:45 +02:00