summaryrefslogtreecommitdiff
path: root/src/webtab.cpp
Commit message (Collapse)AuthorAgeFilesLines
* New rekonq_defines.hAndrea Diamantini2010-04-301-3/+0
| | | | Speed up compilation & linking on Win, Lin & Mac. Step 1
* A coding style roundAndrea Diamantini2010-04-301-38/+38
|
* Merge commit 'refs/merge-requests/2251' of ↵Andrea Diamantini2010-04-241-31/+35
|\ | | | | | | git://gitorious.org/rekonq/mainline into m2251
| * RSS : new popup appaeraing when clicking the icon, 2 combobox to select ↵matgic782010-04-231-39/+9
| | | | | | | | agregator and feed, and buttons to add/cancel
| * Akregator RSS supportmatgic782010-04-231-31/+65
| |
* | Detach tab. last fixes.Andrea Diamantini2010-04-241-1/+21
|/ | | | | - Do not detach one tab windows - let detach work with "about" urls
* i18n fixesPanagiotis Papadopoulos2010-04-211-3/+3
|
* the "real" fix for 234579Andrea Diamantini2010-04-191-5/+6
| | | | CCBUG:234579
* RSS relative url fixing.Andrea Diamantini2010-04-181-1/+14
| | | | | | | This patch solves bug #234579 and is heavily based on the one provided by Thomas Fryda in its bug report. Thanks :) BUG: 234579
* This is a really big commit, implementing the new urlbarAndrea Diamantini2010-04-081-0/+34
| | | | | | | | | | | | | | | | | | | - removed previous SSL animation, we have now a nice yellow lock :) - faster and cleaner animations - reenabled the old stacked widget, to avoid stupid refreshes and fix some regressions - implemented some "right icons": KGet, SSL, RSS. For now, just SSL is full featured - clean up the box :) Some old & unuseful files removed, some icons added - Pano's request: grey text shown everytime in the empty bar Again and again: this is not the first, but the second implementation of the new urlbar UI. About me this is clearly better than the first or the previous. But it needs love :D BUG: 230125 BUG: 231015 CCBUG: 228040 BUG: 227272
* Removing call to non-extant slot..Andrea Diamantini2010-03-031-2/+0
|
* Remember "Never for this site" urlsAndrea Diamantini2010-02-241-1/+7
| | | | | | Also if I think this is NOT a proper solution.. BUG:227651
* Again and again.. :)Andrea Diamantini2010-02-241-12/+0
| | | | Saving one QString for each tab..
* Again, saving one WebView pointer for each tabAndrea Diamantini2010-02-241-17/+17
|
* change setHtml( string ) to setHtml( string, url ) to let webviewsAndrea Diamantini2010-02-191-4/+4
| | | | return an url on webview->url() calls
* Fix copyright for 0.4 beta releaseAndrea Diamantini2010-02-101-2/+2
|
* HUGE CHANGE on Preview Page ChoosingAndrea Diamantini2010-02-091-0/+14
| | | | | | | | | | | The idea here is to free rekonq from unuseful weight while browsing and better maintain code. - Moved PreviewSelectorBar to be one of the WebTab bar - (this way position moved to up rather then down) - creation on use && deletion on close (SAVE MEMORY) - free others page for browsing - fix copyright - CLEAN API (is private/public a misconception?) && comments
* FIx focus on browsing (FIRST STEP) and on findbar hidingAndrea Diamantini2010-02-061-0/+3
|
* MultiThreaded rekonq !!Andrea Diamantini2010-01-261-1/+1
| | | | | | | | Yeah, you're reading well... rekonq is using multithreading for the loadUrl slot. This (in theory) should mean: "NO MORE UI FREEZES ON LOAD URLS" :D
* Here we are, with this commit I removed a lot of direct calls toAndrea Diamantini2010-01-231-8/+0
| | | | | | | | Application::loadUrl slot and changed it to signals emitted there. This to let rekonq managing them and faster return to the main event loop (and hopefully don't freeze). Next step here is change loadUrl slot to a multithreaded one.
* Fixes bug 201559, tabs are now open respecting settings.Jonas M. Gastal2009-12-281-1/+1
|
* fix crashes webtabsmegabigbug2009-12-171-1/+2
|
* fix spacingmegabigbug2009-12-151-0/+1
|
* WalletWidget -> WalletBarAndrea Diamantini2009-12-151-2/+2
|
* I tried a bit, but this is not working pretty well :(Andrea Diamantini2009-12-151-27/+26
| | | | | | | | | | | We are actually creating two widget for request. I'll merge it anyway to let you fix it :) Merge commit 'refs/merge-requests/72' of git://gitorious.org/rekonq/mainline into m72 Conflicts: src/mainview.cpp src/webview.cpp
* factor out WebTab class from WebViewBernhard Beschow2009-12-141-0/+171
* it basically represents a tab in rekonq * everything that happens within one tab should go here (wallet bar, find bar?)