summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorYoann Laissus <yoann.laissus@gmail.com>2010-04-03 23:09:25 +0200
committerYoann Laissus <yoann.laissus@gmail.com>2010-04-03 23:09:25 +0200
commitc28496c854a41baf865fc6e34b9d0453034ee84b (patch)
treeef27df9c3a84780c0ce942351ac7a1fd2aa7c00a /src/mainwindow.h
parenthide suggestions on ESC key (diff)
downloadrekonq-c28496c854a41baf865fc6e34b9d0453034ee84b.tar.xz
- Add the control modifier support for back, next and home actions and for the UrlTreeView
- Use SettingsOpenTab to open a link in a new tab with the bookmark toolbar
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 4ccd7bf3..d1509066 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -87,7 +87,7 @@ private:
void setupPanels();
public slots:
- void homePage(Qt::MouseButtons = Qt::LeftButton);
+ void homePage(Qt::MouseButtons = Qt::LeftButton, Qt::KeyboardModifiers = Qt::NoModifier);
/**
* Notifies a message in a popup
@@ -122,8 +122,8 @@ private slots:
void updateWindowTitle(const QString &title = QString());
// history related
- void openPrevious(Qt::MouseButtons = Qt::LeftButton);
- void openNext(Qt::MouseButtons = Qt::LeftButton);
+ void openPrevious(Qt::MouseButtons = Qt::LeftButton, Qt::KeyboardModifiers = Qt::NoModifier);
+ void openNext(Qt::MouseButtons = Qt::LeftButton, Qt::KeyboardModifiers = Qt::NoModifier);
// Find Action slots
void find(const QString &);