summaryrefslogtreecommitdiff
path: root/src/webtab.h
Commit message (Collapse)AuthorAgeFilesLines
* Include clean-up in the big src directoryJon Ander Peñalba2010-09-031-10/+5
|
* Adding QWeakPointers for the walletbar and the previewselectorbar.Andrea Diamantini2010-08-251-0/+8
| | | | | | | | | | | While this can be overkilling for the previewselectorbar, I'd like doing it for all the bars in our next stable, moving them INSIDE the webtab class, so that each webtab has its findbar, its zoombar and so on. This should fix BUG: 243508 Please, let me know if it's not the case.. Thanks!
* Update urlbar progressAndrea Diamantini2010-05-311-0/+3
|
* inlined some of the most used get functionsAndrea Diamantini2010-05-211-8/+8
| | | | to speed up a bit
* Memory leaks fixesAndrea Diamantini2010-05-041-0/+2
| | | | first bunch
* New rekonq_defines.hAndrea Diamantini2010-04-301-2/+2
| | | | Speed up compilation & linking on Win, Lin & Mac. Step 1
* A coding style roundAndrea Diamantini2010-04-301-4/+4
|
* RSS : new popup appaeraing when clicking the icon, 2 combobox to select ↵matgic782010-04-231-1/+1
| | | | agregator and feed, and buttons to add/cancel
* Akregator RSS supportmatgic782010-04-231-3/+1
|
* This is a really big commit, implementing the new urlbarAndrea Diamantini2010-04-081-1/+6
| | | | | | | | | | | | | | | | | | | - 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
* tests support for every Qt derived rekonq classAndrea Diamantini2010-02-261-1/+4
|
* Again and again.. :)Andrea Diamantini2010-02-241-3/+1
| | | | Saving one QString for each tab..
* Again, saving one WebView pointer for each tabAndrea Diamantini2010-02-241-3/+4
|
* Fix copyright for 0.4 beta releaseAndrea Diamantini2010-02-101-2/+2
|
* HUGE CHANGE on Preview Page ChoosingAndrea Diamantini2010-02-091-2/+3
| | | | | | | | | | | 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
* Here we are, with this commit I removed a lot of direct calls toAndrea Diamantini2010-01-231-3/+1
| | | | | | | | 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.
* I tried a bit, but this is not working pretty well :(Andrea Diamantini2009-12-151-0/+2
| | | | | | | | | | | 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/+68
* it basically represents a tab in rekonq * everything that happens within one tab should go here (wallet bar, find bar?)