summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/declarative/loader/Browser.qml26
-rw-r--r--examples/declarative/loader/main.cpp1
2 files changed, 19 insertions, 8 deletions
diff --git a/examples/declarative/loader/Browser.qml b/examples/declarative/loader/Browser.qml
index 1c849b8..d5887d7 100644
--- a/examples/declarative/loader/Browser.qml
+++ b/examples/declarative/loader/Browser.qml
@@ -17,9 +17,16 @@ Rect {
id: FolderDelegate
Rect {
id: Wrapper
+ function launch() {
+ if (folders.isFolder(index)) {
+ folders.folder = filePath;
+ } else {
+ qmlLauncher.launch(filePath);
+ }
+ }
width: Root.width
height: 32
- color: activePalette.base
+ color: "transparent"
Rect {
id: Highlight; visible: false
anchors.fill: parent
@@ -42,13 +49,7 @@ Rect {
MouseRegion {
id: Mouse
anchors.fill: parent
- onClicked: {
- if (folders.isFolder(index)) {
- folders.folder = filePath;
- } else {
- qmlLauncher.launch(filePath);
- }
- }
+ onClicked: { launch() }
}
states: [
State {
@@ -69,13 +70,22 @@ Rect {
}
ListView {
+ id: View
anchors.top: TitleBar.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
model: folders
delegate: FolderDelegate
+ highlight: Rect { color: "#FFFBAF" }
clip: true
+ focus: true
+ Keys.onPressed: {
+ if (event.key == Qt.Key_Return || event.key == Qt.Key_Select) {
+ View.current.launch();
+ event.accepted = true;
+ }
+ }
}
Rect {
diff --git a/examples/declarative/loader/main.cpp b/examples/declarative/loader/main.cpp
index 070ba75..d018181 100644
--- a/examples/declarative/loader/main.cpp
+++ b/examples/declarative/loader/main.cpp
@@ -161,6 +161,7 @@ int main(int argc, char *argv[])
QObject::connect(Logger::instance(), SIGNAL(textChanged()), launcher, SIGNAL(logUpdated()));
canvas = new QFxView;
+ canvas->setFocusPolicy(Qt::StrongFocus);
mw->setCentralWidget(canvas);
QMenuBar *mb = mw->menuBar();