summaryrefslogtreecommitdiff
path: root/src/urlbar/completionwidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix some eventual crashes while clicking engine faviconsAndrea Diamantini2013-11-221-6/+9
|
* improvements on urlbarAndrea Diamantini2013-11-221-49/+26
| | | | | | | | | STEP 2: - work & fix on search engine favicons - simplify code (and remove dead one) - API clean up - delete ASAP list items and suggestions - let the URL in the suggestions be an hard grey
* improvement on urlbar suggestionsAndrea Diamantini2013-11-191-0/+6
| | | | | | | | | | STEP 1: clean up! - remember deleting ASAP the UrlSuggester - remove preview label icon to let loading being faster - remove unused opensearch inventories - let ESC key on suggestions behave like major browser (restoring original string)
* Krazy fixes, second shot (normalize)Andrea Diamantini2012-12-281-4/+4
|
* Only do CTRL+ENTER thing if valid URL, search otherwiseTirtha Chatterjee2012-12-161-4/+7
|
* - Code style check (codestyle script round)Andrea Diamantini2012-12-121-30/+33
| | | | | | | | | - restored CTRL + ENTER code - applied Vedant's patch about (thanks!!!) CCMAIL: vedant.kota@gmail.com REVIEW: 107662 REVIEWED-BY: Tirtha and me
* clean up urlbar on alt + return new tab loadAndrea Diamantini2012-12-101-0/+3
|
* Fix crash on control click on suggestions listAndrea Diamantini2012-12-101-1/+1
| | | | | | | Courtesy patch by Mathias Kraus. Thanks :) CCMAIL: k.hias@gmx.de
* clean up urlbar url loading. We really are lighter now :)Andrea Diamantini2012-12-101-43/+63
|
* Clean up url suggestions loadingAndrea Diamantini2012-12-101-16/+3
|
* Urlbar, first code ported to the new APIAndrea Diamantini2012-12-101-0/+402
|
* WARNING COMMIT --> FIRST REKONQ 2 IMPORTAndrea Diamantini2012-12-101-402/+0
| | | | Preparing repo to merge rekonq2 code...
* Fix adblock hide behaviorAndrea Diamantini2012-07-061-5/+6
| | | | | | | NOTE: You'll find also some style & copyrights fixes here. Just reenable the git hooks scripts... BUG: 302050
* Ensure users can recover typed text in the urlbarAndrea Diamantini2012-06-261-20/+28
| | | | | | | | | PS: contains also an easy check improved to avoid duplicating suggestions creation ;) Thanks to Franz Fellner for REPORTING and FIXING himself the problem :D BUG: 302391 REVIEWED-BY: adjam
* Kitchen sink clean upAndrea Diamantini2012-05-271-4/+4
| | | | | | - astyle - copyrights - (some) includes
* Clean up headers && fix compilation with (the upcoming) qt 4.8.2Andrea Diamantini2012-04-201-6/+6
|
* Krazy fixesAndrea Diamantini2012-02-161-4/+4
| | | | | - doublequote_chars - normalize
* "http://www." + digited host --> "http://" + digited hostAndrea Diamantini2012-01-291-2/+2
|
* Krazy fixesAndrea Diamantini2012-01-191-4/+4
| | | | | | | - QL1S/QL1C - single-char QString efficiency - explicit ctors - normalized signals & slots
* cut out open search suggestionsAndrea Diamantini2012-01-031-1/+2
|
* clean upAndrea Diamantini2011-07-251-35/+32
| | | | | | - QL1S - one stupid kDebug less - codingstyle
* Calm down kDebug messagesAndrea Diamantini2011-07-191-4/+0
|
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-171-36/+36
|
* Do NOT take the first element of an empty listAndrea Diamantini2011-02-281-1/+10
| | | | BUG: 261003
* Coding styleAndrea Diamantini2011-02-251-13/+13
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-1/+1
|
* No more static members in the Application class,Pierre Rossi2011-02-241-2/+2
| | | | | | | an rApp shortcut for Application::instance, clean up code switching to use the new shortcut Reviewed by: adjam
* Update the completion list when the user switches search engine on the fly.Andrea Diamantini2011-01-091-40/+32
| | | | | Lionel Chauvin's work. Reviewed by me :)
* When using Alt+Enter open website in new tabPanagiotis Papadopoulos2010-12-171-0/+7
| | | | | | GCI Task by Furkan, thanks! :-) RB: 100210 BUG: 254372
* Let suggestions work also without search engines ones.Andrea Diamantini2010-11-071-1/+3
|
* First bunch of fixes for the suggestions.Andrea Diamantini2010-11-071-0/+3
| | | | | We are now respecting users setting on default engines (if someone chooses NONE default search engines, searches are NOT performed)
* properly handle modifiers+return key when the completion list is displayedmegabigbug2010-09-111-5/+32
| | | | TODO: fix when the completion list is not displayed
* Restore autocomplete shortcuts. Or at least, I hope so :)Andrea Diamantini2010-09-041-0/+5
| | | | BUG: 243902
* don't calculate suggestions on fast typing resolution or when userAndrea Diamantini2010-09-021-2/+7
| | | | types a local url (something starting with /)
* big commit: fix fast typinglionelc2010-09-011-6/+6
|
* Fix adding suggestions to not let completion widget "flicker"Andrea Diamantini2010-08-301-25/+29
|
* Cleaning up new suggestions mechanismAndrea Diamantini2010-08-291-28/+7
|
* First fixes, 4 suggestionsAndrea Diamantini2010-08-291-16/+20
|
* Restore urlbar responsivenessAndrea Diamantini2010-08-281-3/+53
| | | | Suggestions are now added when ready
* Merge commit 'refs/merge-requests/169' of ↵Andrea Diamantini2010-08-201-6/+3
|\ | | | | | | git://gitorious.org/rekonq/mainline into opensearch
| * fix suggestion item: use the correct search enginemegabigbug2010-08-191-6/+3
| |
* | OpenSearch reviewAndrea Diamantini2010-08-161-1/+1
|/ | | | | | - file headers fix - clean up code - import engine files
* introduce a new SuggestionListItemlionelc2010-08-121-1/+1
| | | | introduce an opensearch engine
* don't replace the type text by the url of the listitem when this listitem is ↵lionelc2010-08-111-20/+17
| | | | a searchlistitem
* select first itemlionelc2010-08-111-41/+23
|
* Editable urlbar :DAndrea Diamantini2010-07-301-33/+64
|
* Fix naming to clean APIAndrea Diamantini2010-06-241-1/+1
| | | | | SettingOpenTab --> NewTab (according to settings) NewCurrentTab --> NewFocusedTab
* Merge commit 'refs/merge-requests/109' of ↵Andrea Diamantini2010-06-011-0/+5
|\ | | | | | | git://gitorious.org/rekonq/mainline into SearchItemFixes
| * keep the selected engine when the user typesmegabigbug2010-05-221-0/+5
| | | | | | | | reset to default engine when the completionwidget is shown
* | The control modifier part of mr2261 for the urlbarYoann Laissus2010-05-291-3/+3
|/