mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
Second-pass a11y work across all 12 component groups. Every interactive element now has activeFocusOnTab, Keys.onReturnPressed/SpacePressed, and context-aware Accessible.name/description bindings. Highlights: - Dialogs: keyboard handlers with enabled-guard on confirm buttons - CDropdownMenu: full keyboard nav (Up/Down/Enter/Escape) - CLoginForm: explicit KeyNavigation.tab chain (username→password→submit) - CNotificationBell: dynamic "3 notifications"/"No notifications" name - CJobProgressBar: Accessible.minimumValue/maximumValue/currentValue - CExecutionStatusDot: "Execution status: Running/Passed/Failed" binding - CKeyboardShortcuts: invisible Repeater exposes all shortcuts to a11y tree - CDataTable rows: "Row N of M" descriptions - Canvas elements: Accessible.Canvas role + keyboard zoom (+/- keys) - DropdownExpandedList: focus-highlight extended to :activeFocus - Dynamic names reflect loading state (e.g. "Signing in, please wait") Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
157 lines
4.6 KiB
QML
157 lines
4.6 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QmlComponents 1.0
|
|
|
|
CDialog {
|
|
id: root
|
|
objectName: "dialog_add_route"
|
|
Accessible.role: Accessible.Dialog
|
|
Accessible.name: title
|
|
activeFocusOnTab: true
|
|
|
|
property string newPath: ""
|
|
property string newTitle: ""
|
|
property int newLevel: 1
|
|
property string newLayout: "default"
|
|
property var layoutOptions: ["default", "sidebar", "dashboard", "blank"]
|
|
property var levelOptions: [1, 2, 3, 4, 5]
|
|
|
|
signal addRoute(string path, string title, int level, string layout)
|
|
|
|
title: "Add New Route"
|
|
|
|
function reset() {
|
|
newPath = ""
|
|
newTitle = ""
|
|
newLevel = 1
|
|
newLayout = "default"
|
|
}
|
|
|
|
ColumnLayout {
|
|
spacing: 12
|
|
width: 320
|
|
|
|
CText { variant: "caption"; text: "Path" }
|
|
CTextField {
|
|
Layout.fillWidth: true
|
|
placeholderText: "/new-page"
|
|
text: root.newPath
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.EditableText
|
|
Accessible.name: "Route path"
|
|
onTextChanged: root.newPath = text
|
|
}
|
|
|
|
CText {
|
|
variant: "caption"; text: "Page Title"
|
|
}
|
|
CTextField {
|
|
Layout.fillWidth: true
|
|
placeholderText: "New Page"
|
|
text: root.newTitle
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.EditableText
|
|
Accessible.name: "Page title"
|
|
onTextChanged: root.newTitle = text
|
|
}
|
|
|
|
CText {
|
|
variant: "caption"
|
|
text: "Required Level"
|
|
}
|
|
CSelect {
|
|
Layout.fillWidth: true
|
|
model: root.levelOptions
|
|
currentIndex: root.newLevel - 1
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.ComboBox
|
|
Accessible.name: "Required access level"
|
|
onCurrentIndexChanged:
|
|
root.newLevel = currentIndex + 1
|
|
}
|
|
|
|
CText {
|
|
variant: "caption"; text: "Layout Type"
|
|
}
|
|
CSelect {
|
|
Layout.fillWidth: true
|
|
model: root.layoutOptions
|
|
currentIndex:
|
|
root.layoutOptions.indexOf(
|
|
root.newLayout)
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.ComboBox
|
|
Accessible.name: "Layout type"
|
|
onCurrentIndexChanged:
|
|
root.newLayout =
|
|
root.layoutOptions[currentIndex]
|
|
}
|
|
|
|
FlexRow {
|
|
Layout.fillWidth: true
|
|
spacing: 12
|
|
|
|
CButton {
|
|
text: "Cancel"
|
|
variant: "ghost"
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: "Cancel"
|
|
Keys.onReturnPressed: {
|
|
root.reset()
|
|
root.visible = false
|
|
}
|
|
Keys.onSpacePressed: {
|
|
root.reset()
|
|
root.visible = false
|
|
}
|
|
onClicked: {
|
|
root.reset()
|
|
root.visible = false
|
|
}
|
|
}
|
|
Item { Layout.fillWidth: true }
|
|
CButton {
|
|
text: "Add Route"
|
|
variant: "primary"
|
|
enabled:
|
|
root.newPath.length > 0 &&
|
|
root.newTitle.length > 0
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: "Add route"
|
|
Keys.onReturnPressed: {
|
|
if (!enabled) return
|
|
root.addRoute(
|
|
root.newPath,
|
|
root.newTitle,
|
|
root.newLevel,
|
|
root.newLayout)
|
|
root.reset()
|
|
root.visible = false
|
|
}
|
|
Keys.onSpacePressed: {
|
|
if (!enabled) return
|
|
root.addRoute(
|
|
root.newPath,
|
|
root.newTitle,
|
|
root.newLevel,
|
|
root.newLayout)
|
|
root.reset()
|
|
root.visible = false
|
|
}
|
|
onClicked: {
|
|
root.addRoute(
|
|
root.newPath,
|
|
root.newTitle,
|
|
root.newLevel,
|
|
root.newLayout)
|
|
root.reset()
|
|
root.visible = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|