summaryrefslogtreecommitdiff
path: root/src/rekonqpage
Commit message (Collapse)AuthorAgeFilesLines
* Fix unset icons in rekonq bookmarks pageAndrea Diamantini2013-08-031-3/+5
| | | | | | | Icons set in bookmarks (eg: custom ones) are NOT rekonq responsability. So, if you don't have it we can do nothing about, sorry.. BUG: 321586
* Speed up construction of the history pageJan Kundrát2013-06-181-3/+4
| | | | | | | | | | | | | | | | | | | | The old version was taking ages to even appear on my setup ("ages" being defined as many minutes at least). Callgrind was crashing, perhaps due to webkit's JIT, so I simply sampled the backtrace "randomly" by hand to see where the most CPU time was being spent. These two methods came up way too often, so I did the following: 1) Do not use KIconLoader within the inner loop, it's slow. It was slow when I debugged too long startup of KPhotoAlbum, it produced visible file IO, and it is trivial to speed this up. However, it was still taking time. 2) Do not request the ".historyitem" over and over again. A cached "pre-found" copy (we're still cloning it) seems to help. Together, these make it possible to load the history in <4 minutes here. It's still a completely insane amount of time, but at least it appears, ultimately. REVIEW:111053
* Move from about: to rekonq: protocol for our special linksAndrea Diamantini2013-06-062-54/+54
|
* Use webkit general font to render rekonq pagesAndrea Diamantini2013-06-061-2/+4
| | | | BUG: 320318
* Supporting panel (again) :)Andrea Diamantini2013-03-101-4/+5
| | | | | | | | | - Move to a pure QWidget base window (instead of TabWidget one) (this to properly store panels position) - Restoring && rewamping panels code - Restoring actions to activate/deactivate them BUG: 312354
* Add toggle ability to bk folder in bk pageAndrea Diamantini2013-03-091-6/+18
| | | | BUG: 270191
* Closed Tabs page return, first bitsAndrea Diamantini2013-02-171-105/+64
| | | | | Restore about:closedTabs page and the ability to open back closed tabs. What's missing then? To load back on restart the closed tabs saved...
* History page, added ability to remove items fromAndrea Diamantini2013-01-221-12/+30
|
* Fix (stupid) crash while adding favorites via the "+" buttonAndrea Diamantini2012-12-311-1/+1
| | | | | | My fault, sorry... BUG: 312081
* Krazy Fixes, first shotAndrea Diamantini2012-12-281-1/+1
|
* - Code style check (codestyle script round)Andrea Diamantini2012-12-121-23/+23
| | | | | | | | | - restored CTRL + ENTER code - applied Vedant's patch about (thanks!!!) CCMAIL: vedant.kota@gmail.com REVIEW: 107662 REVIEWED-BY: Tirtha and me
* Let "Removed" string translatableAndrea Diamantini2012-12-101-1/+1
|
* rekonq new tab page restored :)Andrea Diamantini2012-12-104-0/+1360
|
* removed unuseful rekonqpage dirAndrea Diamantini2010-03-194-770/+0
| | | | (we are using just a class for it)
* First bunch of fixes for the NewTabPage + WebSnap chain.Andrea Diamantini2010-03-163-17/+18
| | | | | | | | | It seems clear (to me) that they leaks memory, so they urgently need fixes. And a complete redesign. This is just a first (the easiest) part of it: - Removed some unuseful methods, - Added some documentation for the WebSnap class - Cleaned code, in general
* kWarning --> kDebugAndrea Diamantini2010-03-061-6/+9
|
* Cleaning websnaps code..Andrea Diamantini2010-03-051-1/+1
|
* tests support for every Qt derived rekonq classAndrea Diamantini2010-02-262-2/+6
|
* change setHtml( string ) to setHtml( string, url ) to let webviewsAndrea Diamantini2010-02-191-1/+1
| | | | return an url on webview->url() calls
* Working around about: protocol..Andrea Diamantini2010-02-181-11/+1
| | | | | - honor rekonq settings on about:home page - loads about:blank :) pages
* Improve newtabpage css:matgic782010-02-101-3/+3
| | | | | | -previews are centered -favorites fit in 1280*800 -removed unuseful lines
* Fix copyright for 0.4 beta releaseAndrea Diamantini2010-02-104-4/+6
|
* HUGE CHANGE on Preview Page ChoosingAndrea Diamantini2010-02-093-116/+113
| | | | | | | | | | | 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 NewTabPage API && commentsAndrea Diamantini2010-02-092-10/+12
|
* Fix loading previews : when load finished, result wasn't shownmatgic782010-02-062-14/+35
|
* Do not try to load homepage if url is not validmatgic782010-02-061-0/+8
|
* Changed strings following pano's recommandationsmatgic782010-02-061-3/+3
|
* Add tooltips to buttonsmatgic782010-02-061-0/+2
|
* Last bugs : layout fixes and empty urlbar when going back to homepagematgic782010-02-061-1/+3
|
* bugfix : previews were sometimes saved using the good sizematgic782010-02-061-1/+1
|
* bugfixing...matgic782010-02-063-64/+28
|
* A new approach for choosing previews : a bar appears, then you browse to the ↵matgic782010-02-066-241/+231
| | | | page you want to preview, and then you click a button
* tmp commitmatgic782010-02-061-18/+22
|
* fix bug : closed Tabs replaced favorites when loadedmatgic782010-02-062-2/+11
|
* little changesmatgic782010-02-063-6/+17
|
* Fix compilation after rebasingmatgic782010-02-061-1/+2
|
* First expermimental implementation of a new way of choosing a previewmatgic782010-02-064-12/+260
|
* Various changes:matgic782010-02-062-27/+66
| | | | | | | - improve appearance of empty/loading previews - port closedTabs to new system - remove PreviewImage files TODO : dialog to choose preview
* Re-implemented previews in homepage without using plugins. Not finished yet :matgic782010-02-062-34/+140
| | | | | | | | | | | | Little things that change: -nice buttons appearing on hover -transitions on hover TODO: -when a preview is empty or when loading, it is very ugly -for now there's no way to choose the page you want to preview -port "closed Tabs" to this new architecture -totally remove PreviewImage classes -eventually, specific contextmenu for previews
* First form of protocol handlingAndrea Diamantini2009-12-162-3/+3
|
* Rewrite NewTabPage to use QWebElement for page generationmatgic782009-12-092-122/+131
|
* Last structure change, promised!Andrea Diamantini2009-11-271-1/+1
| | | | | | | Anyway, this moving/renaming helped me finding lots of strange circulary dependencies and easily solve them :) We have also a more organized structure, hopefully letting people work on different areas altogether.
* cleaning home :)Andrea Diamantini2009-11-132-0/+357
In Italy we say "Pulizie di Pasqua". Just some changes to reorganize things better