summaryrefslogtreecommitdiff
path: root/src/newtabpage.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Coding styleAndrea Diamantini2011-02-251-107/+107
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-1/+1
|
* No more static members in the Application class,Pierre Rossi2011-02-241-7/+7
| | | | | | | an rApp shortcut for Application::instance, clean up code switching to use the new shortcut Reviewed by: adjam
* NewTabPage improvementsAndrea Diamantini2010-10-231-95/+119
| | | | | 1) icons in the history & bookmarks pages 2) minor performance improvement, using QL1S macro
* This commit fixes icons handling for "rekonq pages" (eg: about urls).Andrea Diamantini2010-10-211-27/+27
| | | | | | | | | | | 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 :(
* Websnaps: change the image path to use base64.Pierre Rossi2010-09-151-3/+1
| | | | | | | | | This should solve the problems caused by special characters for good. A few other improvements: - do not call updateImage as many times as there are favorites. - removed an unused variable. - trade #defines for static const ints - take advantage of the already loaded page to refresh the snapshot.
* 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-9/+9
|
* Replace with QByteArray for faster searchesRohan Garg2010-08-241-5/+6
| | | | modified: src/newtabpage.cpp
* Removed unused includes in src/bookmarks/bookmarkprovider.hJon Ander Peñalba2010-08-201-0/+2
|
* Changed the name of the files src/bookmarks/bookmarksmanager.* to ↵Jon Ander Peñalba2010-08-201-1/+1
| | | | src/bookmarks/bookmarkprovider.*
* Refactor createNavItem to use it everywhere .link items are usedBenjamin Poulain2010-08-111-30/+38
| | | | | | | | | | | | | | | Change createNavItem() to a more generic createLinkItem() capable of generating icon of any type. Use the new createLinkItem() in every position where .link items are created. Fix the flags used for icons. The flags were specified with a boolean or operator: KIconLoader::SizeSmall || KIconLoader::Small -> one | All the icon flags have been changed to KIconLoader::Toolbar in order to keep the same behavior as before (Toolbar value equals 1).
* Refactor NewTabPage::browsingMenu() to clean the creation of itemBenjamin Poulain2010-08-111-52/+21
| | | | | Almost identical code was copied 5 times. It has been replaced by a private function.
* Fix the file scheme of NewTabPage::browsingMenu()Benjamin Poulain2010-08-111-1/+1
| | | | | | The path added to the scheme is already supposed to be an absolute path, so starting with a '/'. By putting three slashes for the scheme, the final path has four /, which is not a valid url (legacy url).
* Modify NewTabPage::browsingMenu() to use explicit text encoding.Benjamin Poulain2010-08-111-30/+55
| | | | | | | | | | | Use explicit text encoding in NewTabPage::browsingMenu() with QLatin1String(). Using explicit text encoding has a some advantages: -it is safe if the default codec is changed -the application compile even with QT_NO_CAST_FROM_ASCII Reviewed-by: Andreas Kling
* Stay consistent with the termsPanagiotis Papadopoulos2010-08-111-2/+2
| | | | In the Favorites page we add Favorites, not Previews^^
* - Fix bookmarks' text which is truncated in some places (new tab page, some ↵Yoann Laissus2010-08-101-2/+2
| | | | | | | | dialogues, ...) - Fix bookmark icons with the bookmark panel BUG: 247196
* Moving download history management from HistoryManager to Application classAndrea Diamantini2010-07-211-1/+1
| | | | | It's actually the same, but probably a bit more coherent. More over, we are going to change a lot of things in the HistoryManager class...
* Missing i18n calls in the downloads pagePanagiotis Papadopoulos2010-06-271-5/+5
| | | | | Also, make the "Open file" feature, that was commented out, work (the solution might be a bit hackish though^^)
* Const iterator fixesJonathan Thomas2010-05-271-2/+1
|
* Encapsulate single characters in single quotes, since passing a char to ↵Jonathan Thomas2010-05-271-1/+1
| | | | QString is more efficient than passing a one-character string.
* Make download links clickablePanagiotis Papadopoulos2010-05-261-1/+1
| | | | BUG: 238852
* This patch is based on Cedric's idea about fixing history with error pagesAndrea Diamantini2010-05-191-1/+2
| | | | | and use it to fix back/forward buttons also on kparts and so on :)
* Include Fixes, first bunchAndrea Diamantini2010-04-301-2/+1
|
* cleaning headersAndrea Diamantini2010-04-301-1/+0
|
* 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-136/+136
|
* Fix, improve and clean WebSnap API.Andrea Diamantini2010-04-221-36/+42
| | | | | | This led me to a little polish in the classes using the WebSnap facilities and to change the mechanism the NewTabPage retrieves images from the "cache"
* Add some text when a newtabpage is empty for users to know that this isn't a bugmatgic782010-04-191-0/+30
|
* Fix a bug in NewTabPage::snapFinishedmatgic782010-04-161-14/+20
| | | | | | | | When you started to load closedTabs and opened favorites, previews were replaced when background load of previews finished. Changes : - preview titles are saved only when urls match - previews are replaced only when urls match - added some checks to prevent NewTabPage to have strange behaviour in the future
* Better datetime for downloads pagematgic782010-04-091-1/+3
|
* NewTabPage : add buttons in #actions : "Clear Private Data" for history and ↵matgic782010-04-051-0/+32
| | | | bookmarks, "Edit Downloads"
* Previews are now always completely removed when clicking the xmatgic782010-04-011-23/+7
|
* Button on top-right to add a previewmatgic782010-04-011-8/+12
|
* Remove limitation to the number of favorites. You are now able to add and ↵matgic782010-04-011-10/+45
| | | | remove favorites. Some work needed on the "add favorite" button
* Improve Downloads page appearance :matgic782010-03-291-16/+24
| | | | the downloads info are shown on 3 lines with the icon of the file
* Downloads PageAndrea Diamantini2010-03-201-0/+51
| | | | | | This commit implements the downloads history page. While it is in an horrible shape, its slots seem working well It needs just some love..
* NewTabPage: clean APIAndrea Diamantini2010-03-191-9/+10
|
* removed unuseful rekonqpage dirAndrea Diamantini2010-03-191-0/+443
| | | | (we are using just a class for it)
* cleaning home :)Andrea Diamantini2009-11-131-285/+0
| | | | | In Italy we say "Pulizie di Pasqua". Just some changes to reorganize things better
* switching back from rekonq: protocol to about: oneAndrea Diamantini2009-11-101-12/+12
| | | | | | This is the more logical solution and let rekonq working also with the upcoming Qt4.6. (QWebView::setHtml() trouble) Anyway we have a little regression in the urlbar clean && select
* Changing homepage.* --> newtabpage.* and fixing APIAndrea Diamantini2009-11-101-0/+285