diff options
-rw-r--r-- | TODO | 5 | ||||
-rw-r--r-- | src/bookmarks.cpp | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -4,10 +4,12 @@ To 0.0.5 DONE tabbar: fixed dimension DONE tabbar: hide if just one - bookmarks update +DONE loading right bookmark file - improve "save as" - load just ONE site at start - loading right sites as "external browser" + To 0.0.4 - improve DOCUMENTATION - fix docs @@ -21,8 +23,10 @@ To 0.0.4 - KDE proxy support - QWebPluginFactory subclass to load KParts into QtWebKit. + + ------------------------ + 1. check the lines above... 2. Improve docs DONE. Let rekonq be a Singleton app. (And work well..) @@ -32,4 +36,5 @@ DONE. fix load at startup DONE. fix FONTS problems between webkit && KDE settings (at least, here..) DONE. enable flash support !! + + ------------------------ diff --git a/src/bookmarks.cpp b/src/bookmarks.cpp index 6b6d549c..9b48de6f 100644 --- a/src/bookmarks.cpp +++ b/src/bookmarks.cpp @@ -37,6 +37,7 @@ // Qt Includes #include <QFile> + OwnBookMarks::OwnBookMarks(KMainWindow *parent) : QObject(parent) , KBookmarkOwner() @@ -53,6 +54,7 @@ void OwnBookMarks::openBookmark (const KBookmark & b, Qt::MouseButtons mb, Qt::K emit openUrl( b.url() ); } + QString OwnBookMarks::currentUrl() const { QUrl url = m_parent->currentTab()->url(); @@ -75,6 +77,7 @@ BookmarksMenu::BookmarksMenu( KBookmarkManager* manager, KBookmarkOwner* owner, { } + KMenu* BookmarksMenu::viewContextMenu(QAction* action) { return contextMenu( action ); @@ -164,4 +167,3 @@ void BookmarksProvider::contextMenu(const QPoint & point) menu->popup( m_bmToolbar->mapToGlobal( point )); } - |