summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-04-28 00:10:08 +0200
committerAndrea Diamantini <adjam7@gmail.com>2011-04-28 00:10:08 +0200
commit033fe621dac20e43047d6c394bb378b9a86ec5f5 (patch)
treee58acb9866f4df50c626cf902391e817e86958f9 /src/mainview.cpp
parent- A new option to set/unset the current bookmark bar folder in the context menu (diff)
downloadrekonq-033fe621dac20e43047d6c394bb378b9a86ec5f5.tar.xz
Imported Opera feature to load favorite page with number 1..9 by pressing CTRL + 1..9
Courtesy patch by Thomas Murach. Thanks :) Reviewed by Pierre, Felix... and me! RB: 101043 PS: Thomas, I see one corner problem with your patch: Opera has clearly indicated favorites preview number, while rekonq hasn't. Any idea to fill the gap?
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index b34acc39..19e4aae7 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -679,6 +679,16 @@ void MainView::switchToTab()
}
+void MainView::loadFavorite(const int index)
+{
+ QStringList urls = ReKonfig::previewUrls();
+ if (index < 0 || index > urls.length())
+ return;
+ KUrl url = KUrl(urls.at(index-1));
+ rApp->loadUrl(url);
+}
+
+
QLabel *MainView::animatedLoading(int index, bool addMovie)
{
if (index == -1)