summaryrefslogtreecommitdiff
path: root/src/webtab.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Get sure UrlBar is deleted well (i.e. later) and in the right placeAndrea Diamantini2012-07-031-2/+7
| | | | | | | | | | | | | (i.e. the WebTab dtor). I cannot no more reproduce the problems described in #296346, #300892 and #268328 What about you? CCBUG: 296346 CCBUG: 300892 CCBUG: 268328
* Super safe checks in WebTab::url() detectionAndrea Diamantini2012-06-171-2/+9
| | | | BUG: 299400
* Kitchen sink clean upAndrea Diamantini2012-05-271-5/+5
| | | | | | - astyle - copyrights - (some) includes
* Fix opensearch add shortcut handlingAndrea Diamantini2012-04-231-1/+1
| | | | | | (at least on every site tested, but opensearch.org itself. Broken?) BUG: 296707
* Remove tabbar.h and mainwindow.h Dependencies from webtab.cppDavid E. Narváez2012-04-171-8/+3
| | | | | | Fixes previous attempt to move tab preview to WebTab class. REVIEW: 104517
* Move Tab Preview to WebTabDavid E. Narváez2012-04-141-0/+30
| | | | | | | Let the WebTab class calculate its own preview, so that it can be used elsewhere in the code. REVIEW: 104517
* Reimplement password saving check in the same wayAndrea Diamantini2012-04-121-3/+7
| | | | | | Tirtha did in its review request REVIEW:101317
* Consider new PasswordSavingEnabled privacy checkAndrea Diamantini2012-04-121-0/+3
|
* Check if user has a default search engine set and eventuallyAndrea Diamantini2012-03-251-2/+12
| | | | | | show a messagewidget to inform and let him set it. REVIEW:104290
* New History Manager, NO MORE QWebHistoryInterface based.Andrea Diamantini2012-03-181-7/+17
| | | | | | | | | | | We are just saving datas on our own, I don't like QtWebKit APIs to do it. We now call addHistoryEntry(url, title) on loadFinished. Data structure will remain the same as usual, but I think API is better and data are now saved when we really have them ready. REVIEW:104257
* Add adblock icon to inform users that some contents was hiddenAndrea Diamantini2012-03-131-0/+6
| | | | | | | | This is a patch by Andrea Di Menna, changed a bit to allow element blocked/hided listing (you'll see it in next commit) REVIEW:102761 REVIEWED-BY: adjam
* Get sure urlbar(s) are deleted when related webtab isAndrea Diamantini2012-03-131-9/+27
| | | | | | | | Heinz, Paul. Please test actual master before backporting this to 0.9 series. Many thanks for your help and for this bug report. I'm crossing fingers to hear good news from your tests ;) CCBUG:295301
* Krazy fixesAndrea Diamantini2012-02-161-6/+6
| | | | | - doublequote_chars - normalize
* Krazy fixesAndrea Diamantini2012-01-191-12/+12
| | | | | | | - QL1S/QL1C - single-char QString efficiency - explicit ctors - normalized signals & slots
* Rework on load/stop/reload actionAndrea Diamantini2012-01-151-0/+7
| | | | | | | | | | | Also clean up API, giving proper names to method updateActions --> updateHistoryActions browserTabLoading(bool) --> currentTabStateChanged() ... also workaround problem that m_progress is (yet) 0 or 100 when load started REVIEW:103651
* improve closed tabs managementAndrea Diamantini2012-01-031-1/+1
| | | | | | | | | - remove reopened tabs from the closed tabs list. - limit them to MAX 8 elements (it seems enough to me) - save history also when there is just one tab closed - DON'T save history when you opened a "rekonq" page BUG:271224
* Correctly hide preview selector bar when its preview is deleted inYusuf Tezcan2011-12-291-0/+5
| | | | | | | | the new tab page CCMAIL: yatezcan@gmail.com REVIEW:103470 REVIEWED-BY: adjam
* let history, bookmarks and passwords sync on change (first bits)Andrea Diamantini2011-12-121-0/+5
|
* Unifies macro styleJohannes Troscher2011-11-271-1/+1
| | | | | REVIEW: 103242 REVIEWED-BY: adjam
* Fix zoombar handlingAndrea Diamantini2011-11-141-1/+0
|
* Remove postLaunch callsAndrea Diamantini2011-11-141-0/+1
| | | | | | | | | | | | | | This will help a lot in having a clean/easy startup, also a bit less fast. Let's see if this helps stability... PS: To the bug reporter. I pushed a "NoPostLaunch" in rekonq git repo. Can you please try compiling and testing if this fixes your troubles on startup?? Many thanks for any help. Andrea. CCBUG:284356
* Fix session manager restoreAndrea Diamantini2011-09-271-1/+1
| | | | | I think we need to consider the two cases (normal restore vs restore from crash) in different ways.
* QtWebKit 2.2 related fixesAndrea Diamantini2011-09-201-8/+1
| | | | | We now have to consider progress finished when it reaches 100, NOT when it is reset to 0, as before...
* Fix close & sessionAndrea Diamantini2011-09-131-0/+3
| | | | | | | | | | First, I'm really sorry for this bad commit ('git' talking..). The fact is that the 3 bugs fixed here were found chained playing with close code. Here it is the report: - fix close window (it now really appears on multiple window closing) - fix saveSession (saving one call for each site loaded and storing better information): saveSession is now called on loadFinished - clean up some compilation warnings
* clean upAndrea Diamantini2011-07-251-14/+14
| | | | | | - QL1S - one stupid kDebug less - codingstyle
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-171-16/+16
|
* clean up codeAndrea Diamantini2011-07-111-5/+5
|
* Insert back notification bars in webtab layoutAndrea Diamantini2011-07-111-1/+19
| | | | | As Pierre pointed out, better insert bars inside layout to avoid usability loss.
* Move to KMessageWidgetAndrea Diamantini2011-07-111-15/+9
| | | | | | Port rekonq notification bars to KMessageWidget: walletbar, crash notification bar, set favorite preview bar. Remove old no more used notification bar.
* Coding styleAndrea Diamantini2011-02-251-10/+16
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-2/+2
|
* No more static members in the Application class,Pierre Rossi2011-02-241-4/+4
| | | | | | | an rApp shortcut for Application::instance, clean up code switching to use the new shortcut Reviewed by: adjam
* Calm down kDebug messagesAndrea Diamantini2011-02-161-1/+0
|
* This is a simpler version of the zoom save settings patch.Andrea Diamantini2011-02-011-0/+2
| | | | | | | It allows saving zoom settings for each website (saving settings per host) and loads them on loadFinished. Needs testing.
* Fixes as pointed out by KrazyRohan Garg2011-01-141-1/+1
| | | | | * Fix duplicate includes * Include own header first ( caused by 3dbfc06247db3c62a73f1f3022b648197ae24a00 )
* Krazy Fixes!!Rohan Garg2011-01-121-1/+2
| | | | Add #rekonq_define.h to files that now use QL1C
* Icon at the right of the urlbar that allows to add an opensearch engineAndrea Diamantini2010-12-211-5/+66
| | | | | | | | | | | | | | | introduce search icon description file downloaded after validation, not before icons updated when engine added add opensearch xml description files sync desktop file => fix add webshortcut use db_opensearch.json file to track opensearch engines create an opensearch description only when the engine support suggestions remove opensearch description when an engine is deleted in the webshortcut setting dialog popup: disable ok button when webshortcut is already used Lionel Chauvin is the man having done this big, big, big work!! I'm just merging ;)
* Merge branch 'master' of git://git.kde.org/rekonqBenjamin Poulain2010-11-201-0/+32
|\ | | | | | | | | | | | | | | Conflicts: src/mainview.cpp src/mainview.h src/webtab.cpp src/webtab.h
| * Print && Find actions for the parts :)Andrea Diamantini2010-11-191-0/+32
| | | | | | | | | | - handle print & find with different signals in mainwindow - show right tab title (moving titleChanged signal from view to tab)
* | Update the name of WebTab attributes to follow the conventionsBenjamin Poulain2010-11-201-31/+31
|/ | | | | | | | Most classes of Rekonq uses m_ as a prefix for attribute, this patch update WebTab to follow this convention. Reviewed by: Pierre Rossi Reviewed by: Andrea Diamantini
* Fix eventual crashes on using page urls..Andrea Diamantini2010-10-311-1/+1
| | | | I know, this should NOT happen. But it does. So, to be sure.. :)
* This commit fixes icons handling for "rekonq pages" (eg: about urls).Andrea Diamantini2010-10-211-21/+4
| | | | | | | | | | | It also contains a cleaned version of the WebTab::url() method (the previous one was not working on loading pages. And also immediately after the loadFinished signal) This should also fix some "bad" handling on back/forward buttons. Finally, it contains some unrelated QLatin1String --> QL1S changes. Benjamin, I spoke too early about those. I squashed merged my work and removed previous branch :(
* Fix icons duplication in the urlbar if a bookmark is added during a page loadingYoann Laissus2010-10-201-0/+6
|
* Prompt user before restoring session after a crash.Pierre Rossi2010-10-081-0/+5
| | | | | | Shows the about:closedTabs page in the background. Task: https://bugs.kde.org/show_bug.cgi?id=249228
* Clean up urlbar use. This fix an urlbar bug opening pluginsAndrea Diamantini2010-09-291-3/+5
| | | | | in next tabs and remove some Application::instance() calls from the Web* classes.
* Wallet/previewbar: adjust the already existing bar's target.Pierre Rossi2010-09-141-11/+14
|
* Fixes the multiple preview/walet bars in a single tab.Pierre Rossi2010-09-031-22/+22
| | | | | This also adds a colorful blink effect when an already visible bar is requested again.
* Include all .moc files removed in the previous commitJon Ander Peñalba2010-09-031-0/+1
|
* Include clean-up in the big src directoryJon Ander Peñalba2010-09-031-19/+3
|
* Switching to "KDE" icon cache. While this "brute force" change can be dangerous,Andrea Diamantini2010-08-281-6/+0
| | | | | | | | it seems let everything work as expected (at least here). It also lets us to retrieve icons when sites are not visited (eg: search engines or old bookmarks) It also contains fixes & improvements for icons management in History & Bookmarks classes. More code to maintain, but more things working.Let's see what'll happen...