summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-05-13 11:33:35 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-05-15 09:53:43 +0200
commit92108283620bf4349f5fc1f5bdeab5c9bc8df3f1 (patch)
tree6065dd1be358ec0b36d5ea48690dbf7ba2bb56d2 /src
parentNew Bookmarks page (diff)
downloadrekonq-92108283620bf4349f5fc1f5bdeab5c9bc8df3f1.tar.xz
Clean up NewTabPage API a bit
Diffstat (limited to 'src')
-rw-r--r--src/newtabpage.cpp43
-rw-r--r--src/newtabpage.h9
2 files changed, 23 insertions, 29 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp
index 1cf003ae..abcd41eb 100644
--- a/src/newtabpage.cpp
+++ b/src/newtabpage.cpp
@@ -528,7 +528,11 @@ void NewTabPage::closedTabsPage()
prev = closedTabPreview(i, item.url, item.title);
prev.setAttribute(QL1S("id"), QL1S("preview") + QVariant(i).toString());
- hideControls(prev);
+
+ // hide controls
+ prev.findFirst(QL1S(".remove")).setStyleProperty(QL1S("visibility"), QL1S("hidden"));
+ prev.findFirst(QL1S(".reload")).setStyleProperty(QL1S("visibility"), QL1S("hidden"));
+
m_root.appendInside(prev);
}
}
@@ -667,7 +671,7 @@ QWebElement NewTabPage::emptyPreview(int index)
prev.findFirst(QL1S("a")).setAttribute(QL1S("href"),
QL1S("about:preview/modify/") + QVariant(index).toString());
- setupPreview(prev, index);
+ setupPreview(prev, index, false);
return prev;
}
@@ -703,8 +707,7 @@ QWebElement NewTabPage::validPreview(int index, const KUrl &url, const QString &
prev.findFirst(QL1S("span a")).setAttribute(QL1S("href"), url.toMimeDataString());
prev.findFirst(QL1S("span a")).setPlainText(checkTitle(title));
- setupPreview(prev, index);
- showControls(prev);
+ setupPreview(prev, index, true);
return prev;
}
@@ -722,8 +725,10 @@ QWebElement NewTabPage::tabPreview(int winIndex, int tabIndex, const KUrl &url,
prev.findFirst(QL1S("span a")).setPlainText(checkTitle(title));
setupTabPreview(prev, winIndex, tabIndex);
+
prev.findFirst(QL1S(".remove")).setStyleProperty(QL1S("visibility"), QL1S("visible"));
prev.findFirst(QL1S(".reload")).setStyleProperty(QL1S("visibility"), QL1S("hidden"));
+
return prev;
}
@@ -744,37 +749,33 @@ QWebElement NewTabPage::closedTabPreview(int index, const KUrl &url, const QStri
prev.findFirst(QL1S("span a")).setAttribute(QL1S("href"), href);
prev.findFirst(QL1S("span a")).setPlainText(checkTitle(title));
- setupPreview(prev, index);
- showControls(prev);
+ setupPreview(prev, index, true);
return prev;
}
-void NewTabPage::hideControls(QWebElement e)
+void NewTabPage::setupPreview(QWebElement e, int index, bool showControls)
{
- e.findFirst(QL1S(".remove")).setStyleProperty(QL1S("visibility"), QL1S("hidden"));
- e.findFirst(QL1S(".reload")).setStyleProperty(QL1S("visibility"), QL1S("hidden"));
-}
-
+ e.findFirst(QL1S(".remove img")).setAttribute(QL1S("src"),
+ QL1S("file:///") + KIconLoader::global()->iconPath("edit-delete", KIconLoader::DefaultState));
-void NewTabPage::showControls(QWebElement e)
-{
- e.findFirst(QL1S(".remove")).setStyleProperty(QL1S("visibility"), QL1S("visible"));
- e.findFirst(QL1S(".reload")).setStyleProperty(QL1S("visibility"), QL1S("visible"));
-}
+ e.findFirst(QL1S(".remove")).setAttribute(QL1S("title"), i18n("Remove favorite"));
+ e.findFirst(QL1S(".reload img")).setAttribute(QL1S("src"),
+ QL1S("file:///") + KIconLoader::global()->iconPath("view-refresh", KIconLoader::DefaultState));
-void NewTabPage::setupPreview(QWebElement e, int index)
-{
- e.findFirst(QL1S(".remove img")).setAttribute(QL1S("src"), QL1S("file:///") + KIconLoader::global()->iconPath("edit-delete", KIconLoader::DefaultState));
- e.findFirst(QL1S(".remove")).setAttribute(QL1S("title"), i18n("Remove favorite"));
- e.findFirst(QL1S(".reload img")).setAttribute(QL1S("src"), QL1S("file:///") + KIconLoader::global()->iconPath("view-refresh", KIconLoader::DefaultState));
e.findFirst(QL1S(".reload")).setAttribute(QL1S("title"), i18n("Set new favorite"));
e.findFirst(QL1S(".reload")).setAttribute(QL1S("href"), QL1S("about:preview/reload/") + QVariant(index).toString());
e.findFirst(QL1S(".remove")).setAttribute(QL1S("href"), QL1S("about:preview/remove/") + QVariant(index).toString());
e.setAttribute(QL1S("id"), QL1S("preview") + QVariant(index).toString());
+
+ if (showControls)
+ {
+ e.findFirst(QL1S(".remove")).setStyleProperty(QL1S("visibility"), QL1S("visible"));
+ e.findFirst(QL1S(".reload")).setStyleProperty(QL1S("visibility"), QL1S("visible"));
+ }
}
diff --git a/src/newtabpage.h b/src/newtabpage.h
index 857e0db6..4a8be0aa 100644
--- a/src/newtabpage.h
+++ b/src/newtabpage.h
@@ -86,14 +86,7 @@ private:
void reloadPreview(int index);
void removePreview(int index);
- /**
- * This function takes a QwebElement with the .thumbnail structure,
- * hiding the "remove" and "modify" buttons
- *
- */
- void hideControls(QWebElement e);
- void showControls(QWebElement e);
- void setupPreview(QWebElement e, int index);
+ void setupPreview(QWebElement e, int index, bool showControls);
void setupTabPreview(QWebElement e, int winIndex, int tabIndex);
void createBookmarkItem(const KBookmark &bookmark, QWebElement parent);