Commit df4a06d2 authored by Pierre Rossi's avatar Pierre Rossi Committed by Pierre Rossi
Browse files

[Examples] Add Ctrl + L shortcut for testing


It's quite convenient when one wants to test if navigating works.

Change-Id: I89404df3a9a878701180fdd5b5144b46b3f68df5
Reviewed-by: default avatarZeno Albisser <zeno.albisser@digia.com>
Showing with 17 additions and 0 deletions
...@@ -50,6 +50,16 @@ ApplicationWindow { ...@@ -50,6 +50,16 @@ ApplicationWindow {
visible: true visible: true
title: webContentsView.title title: webContentsView.title
// Focus and select text in URL bar
Action {
id: focus
shortcut: "Ctrl+L" // How to have Cmd + L on Mac ?
onTriggered: {
addressBar.forceActiveFocus();
addressBar.selectAll();
}
}
toolBar: ToolBar { toolBar: ToolBar {
id: navigationBar id: navigationBar
RowLayout { RowLayout {
......
...@@ -44,6 +44,8 @@ ...@@ -44,6 +44,8 @@
#include "qwebcontentsview.h" #include "qwebcontentsview.h"
#include "util.h" #include "util.h"
#include <QShortcut>
static const int margin = 1; static const int margin = 1;
WidgetWindow::WidgetWindow() WidgetWindow::WidgetWindow()
...@@ -74,6 +76,11 @@ WidgetWindow::WidgetWindow() ...@@ -74,6 +76,11 @@ WidgetWindow::WidgetWindow()
addressLineEdit = new QLineEdit; addressLineEdit = new QLineEdit;
addressBar->addWidget(addressLineEdit); addressBar->addWidget(addressLineEdit);
QShortcut* focusUrlBarShortcut = new QShortcut(addressLineEdit);
focusUrlBarShortcut->setKey(QKeySequence(Qt::CTRL | Qt::Key_L));
connect(focusUrlBarShortcut, SIGNAL(activated()), addressLineEdit, SLOT(setFocus()));
connect(focusUrlBarShortcut, SIGNAL(activated()), addressLineEdit, SLOT(selectAll()));
layout->addLayout(addressBar); layout->addLayout(addressBar);
layout->addWidget(m_webView.data()); layout->addWidget(m_webView.data());
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment