summaryrefslogtreecommitdiff
path: root/src/newtabpage.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-03-19 15:50:33 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-03-19 15:50:33 +0100
commit9905c8c2a2c4f3ec27e2cc55cbfde83ddd35c5ce (patch)
tree94e6d38b3c5e5e0cd0a41bc15e7f7922c9019fa0 /src/newtabpage.h
parentremoved unuseful rekonqpage dir (diff)
downloadrekonq-9905c8c2a2c4f3ec27e2cc55cbfde83ddd35c5ce.tar.xz
NewTabPage: clean API
Diffstat (limited to 'src/newtabpage.h')
-rw-r--r--src/newtabpage.h44
1 files changed, 27 insertions, 17 deletions
diff --git a/src/newtabpage.h b/src/newtabpage.h
index fd04e60a..6d3a7ea9 100644
--- a/src/newtabpage.h
+++ b/src/newtabpage.h
@@ -57,13 +57,15 @@ public:
* This method takes an about: url and loads
* the corresponding part of the new tab page
*/
- void generate(KUrl url = KUrl("about:home"));
+ void generate(const KUrl &url = KUrl("about:home"));
- void snapFinished(int index, KUrl url, QString title);
- void removePreview(int index);
+ void snapFinished(int index, const KUrl &url, const QString &title);
+
-protected:
- // these are the functions to build the new tab page
+private:
+ // these are the "high-level" functions to build the new tab page
+ // basically, you call browsingMenu + one the the *Page methods
+ // to load a page
void browsingMenu(const KUrl &currentUrl);
void favoritesPage();
@@ -71,38 +73,46 @@ protected:
void bookmarksPage();
void closedTabsPage();
+ // --------------------------------------------------------------------------
+ // "low-level" functions
+ // we use these to create the pages over
+
// Previews handling
QWebElement emptyPreview(int index);
- QWebElement loadingPreview(int index, KUrl url);
- QWebElement validPreview(int index, KUrl url, QString title);
+ QWebElement loadingPreview(int index, const KUrl &url);
+ QWebElement validPreview(int index, const KUrl &url, const QString &title);
+
+ void removePreview(int index);
- /** This function takes a QwebElement with the .thumbnail structure,
- * hiding the "remove" and "modify" buttons
+ /**
+ * 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);
-private:
void createBookItem(const KBookmark &bookmark, QWebElement parent);
- /** This function helps to get faster a new markup of one type,
- * it isn't easy to create one with QWebElement.
+ /**
+ * This function helps to get faster a new markup of one type,
+ * it isn't easy to create one with QWebElement.
*
- * It gets it in the #models div of home.html.
- * It works for all elements defined here.
+ * It gets it in the #models div of home.html.
+ * It works for all elements defined here.
*
*/
- inline QWebElement markup(QString selector)
+ inline QWebElement markup(const QString &selector)
{
return m_root.document().findFirst("#models > " + selector).clone();
}
- QString checkTitle(QString title);
+ QString checkTitle(const QString &title);
- QString m_html;
+private:
+ QString m_html;
QWebElement m_root;
};