mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
1072 lines
43 KiB
QML
1072 lines
43 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Effects
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import Quickshell.Wayland
|
|
import Quickshell.Io
|
|
import "../Common"
|
|
import "../Services"
|
|
|
|
PanelWindow {
|
|
id: launcher
|
|
|
|
property bool isVisible: false
|
|
|
|
// Full screen overlay setup for proper focus
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
bottom: true
|
|
}
|
|
|
|
// Proper layer shell configuration
|
|
WlrLayershell.layer: WlrLayershell.Overlay
|
|
WlrLayershell.exclusiveZone: -1
|
|
WlrLayershell.keyboardFocus: isVisible ? WlrKeyboardFocus.Exclusive : WlrKeyboardFocus.None
|
|
WlrLayershell.namespace: "quickshell-launcher"
|
|
|
|
visible: isVisible
|
|
color: "transparent"
|
|
|
|
// App management
|
|
property var categories: AppSearchService.getAllCategories()
|
|
property string selectedCategory: "All"
|
|
property var recentApps: Prefs.getRecentApps()
|
|
property var pinnedApps: ["firefox", "code", "terminal", "file-manager"]
|
|
property bool showCategories: false
|
|
property string viewMode: "list" // "list" or "grid"
|
|
property int selectedIndex: 0
|
|
|
|
// Search debouncing
|
|
Timer {
|
|
id: searchDebounceTimer
|
|
interval: 100
|
|
repeat: false
|
|
onTriggered: updateFilteredModel()
|
|
}
|
|
|
|
// Periodic rescan while open
|
|
Timer {
|
|
id: periodicRescanTimer
|
|
interval: 15000 // 15 seconds
|
|
repeat: true
|
|
running: launcher.isVisible
|
|
onTriggered: {
|
|
console.log("AppLauncher: Periodic rescan triggered")
|
|
if (DesktopEntries.rescan) {
|
|
DesktopEntries.rescan()
|
|
}
|
|
}
|
|
}
|
|
|
|
ListModel { id: filteredModel }
|
|
|
|
// Background dim with click to close
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: Qt.rgba(0, 0, 0, 0.3)
|
|
opacity: launcher.isVisible ? 1.0 : 0.0
|
|
visible: launcher.isVisible
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
enabled: launcher.isVisible
|
|
onClicked: launcher.hide()
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: AppSearchService
|
|
function onReadyChanged() {
|
|
if (AppSearchService.ready) {
|
|
var allCategories = AppSearchService.getAllCategories()
|
|
// Insert "Recents" after "All"
|
|
categories = ["All", "Recents"].concat(allCategories.filter(cat => cat !== "All"))
|
|
updateFilteredModel()
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: DesktopEntries
|
|
function onApplicationsChanged() {
|
|
console.log("AppLauncher: DesktopEntries.applicationsChanged signal received")
|
|
// Update categories when applications change
|
|
if (AppSearchService.ready) {
|
|
console.log("AppLauncher: Updating categories and model due to applicationsChanged")
|
|
var allCategories = AppSearchService.getAllCategories()
|
|
categories = ["All", "Recents"].concat(allCategories.filter(cat => cat !== "All"))
|
|
updateFilteredModel()
|
|
} else {
|
|
console.log("AppLauncher: AppSearchService not ready, skipping update")
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: LauncherService
|
|
function onShowAppLauncher() {
|
|
launcher.show()
|
|
}
|
|
function onHideAppLauncher() {
|
|
launcher.hide()
|
|
}
|
|
function onToggleAppLauncher() {
|
|
launcher.toggle()
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: Prefs
|
|
function onRecentlyUsedAppsChanged() {
|
|
recentApps = Prefs.getRecentApps()
|
|
}
|
|
}
|
|
|
|
function updateFilteredModel() {
|
|
if (!AppSearchService.ready) {
|
|
filteredModel.clear()
|
|
selectedIndex = 0
|
|
return
|
|
}
|
|
|
|
filteredModel.clear()
|
|
selectedIndex = 0
|
|
|
|
var apps = []
|
|
var searchQuery = searchField ? searchField.text : ""
|
|
|
|
// Get apps based on category and search
|
|
if (searchQuery.length > 0) {
|
|
// Search across all apps or category
|
|
var baseApps = selectedCategory === "All" ?
|
|
AppSearchService.applications :
|
|
selectedCategory === "Recents" ?
|
|
recentApps
|
|
.map(recentApp => AppSearchService.getAppByExec(recentApp.exec))
|
|
.filter(app => app !== null && !app.noDisplay) :
|
|
AppSearchService.getAppsInCategory(selectedCategory)
|
|
|
|
if (baseApps && baseApps.length > 0) {
|
|
var searchResults = AppSearchService.searchApplications(searchQuery)
|
|
apps = searchResults.filter(app => baseApps.includes(app))
|
|
}
|
|
} else {
|
|
// Just category filter
|
|
if (selectedCategory === "Recents") {
|
|
// For recents, use the recent apps from Prefs and filter out non-existent ones
|
|
apps = recentApps
|
|
.map(recentApp => AppSearchService.getAppByExec(recentApp.exec))
|
|
.filter(app => app !== null && !app.noDisplay)
|
|
} else {
|
|
apps = AppSearchService.getAppsInCategory(selectedCategory) || []
|
|
}
|
|
}
|
|
|
|
// Add to model with null checks
|
|
if (apps && apps.length > 0) {
|
|
apps.forEach(app => {
|
|
if (app) {
|
|
filteredModel.append({
|
|
name: app.name || "",
|
|
exec: app.execString || "",
|
|
icon: app.icon || "application-x-executable",
|
|
comment: app.comment || "",
|
|
categories: app.categories || [],
|
|
desktopEntry: app
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
function selectNext() {
|
|
if (filteredModel.count > 0) {
|
|
if (viewMode === "grid") {
|
|
// Grid navigation: move by columns
|
|
var columnsCount = appGrid.columnsCount || 8
|
|
selectedIndex = Math.min(selectedIndex + columnsCount, filteredModel.count - 1)
|
|
} else {
|
|
// List navigation: next item
|
|
selectedIndex = (selectedIndex + 1) % filteredModel.count
|
|
}
|
|
}
|
|
}
|
|
|
|
function selectPrevious() {
|
|
if (filteredModel.count > 0) {
|
|
if (viewMode === "grid") {
|
|
// Grid navigation: move by columns
|
|
var columnsCount = appGrid.columnsCount || 8
|
|
selectedIndex = Math.max(selectedIndex - columnsCount, 0)
|
|
} else {
|
|
// List navigation: previous item
|
|
selectedIndex = selectedIndex > 0 ? selectedIndex - 1 : filteredModel.count - 1
|
|
}
|
|
}
|
|
}
|
|
|
|
function selectNextInRow() {
|
|
if (filteredModel.count > 0 && viewMode === "grid") {
|
|
selectedIndex = Math.min(selectedIndex + 1, filteredModel.count - 1)
|
|
}
|
|
}
|
|
|
|
function selectPreviousInRow() {
|
|
if (filteredModel.count > 0 && viewMode === "grid") {
|
|
selectedIndex = Math.max(selectedIndex - 1, 0)
|
|
}
|
|
}
|
|
|
|
function launchSelected() {
|
|
if (filteredModel.count > 0 && selectedIndex >= 0 && selectedIndex < filteredModel.count) {
|
|
var selectedApp = filteredModel.get(selectedIndex)
|
|
if (selectedApp.desktopEntry) {
|
|
Prefs.addRecentApp(selectedApp.desktopEntry)
|
|
AppSearchService.launchApp(selectedApp.desktopEntry)
|
|
} else {
|
|
launcher.launchApp(selectedApp.exec)
|
|
}
|
|
launcher.hide()
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: iconComponent
|
|
Item {
|
|
property var appData: parent.modelData || {}
|
|
|
|
IconImage {
|
|
id: iconImg
|
|
anchors.fill: parent
|
|
source: (appData && appData.icon) ? Quickshell.iconPath(appData.icon, "") : ""
|
|
smooth: true
|
|
asynchronous: true
|
|
visible: status === Image.Ready
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
visible: !iconImg.visible
|
|
color: Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.10)
|
|
radius: Theme.cornerRadiusLarge
|
|
border.width: 1
|
|
border.color: Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.20)
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: (appData && appData.name && appData.name.length > 0) ? appData.name.charAt(0).toUpperCase() : "A"
|
|
font.pixelSize: 28
|
|
color: Theme.primary
|
|
font.weight: Font.Bold
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Main launcher panel with enhanced design
|
|
Rectangle {
|
|
id: launcherPanel
|
|
|
|
width: 520
|
|
height: 600
|
|
|
|
anchors {
|
|
top: parent.top
|
|
left: parent.left
|
|
topMargin: Theme.barHeight + Theme.spacingXS
|
|
leftMargin: Theme.spacingL
|
|
}
|
|
|
|
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, 0.98)
|
|
radius: Theme.cornerRadiusXLarge
|
|
|
|
// Material 3 elevation with multiple layers
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
anchors.margins: -3
|
|
color: "transparent"
|
|
radius: parent.radius + 3
|
|
border.color: Qt.rgba(0, 0, 0, 0.05)
|
|
border.width: 1
|
|
z: -3
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
anchors.margins: -2
|
|
color: "transparent"
|
|
radius: parent.radius + 2
|
|
border.color: Qt.rgba(0, 0, 0, 0.08)
|
|
border.width: 1
|
|
z: -2
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: "transparent"
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
|
border.width: 1
|
|
radius: parent.radius
|
|
z: -1
|
|
}
|
|
|
|
// Animated entrance with spring effect
|
|
transform: [
|
|
Scale {
|
|
id: scaleTransform
|
|
origin.x: 0
|
|
origin.y: 0
|
|
xScale: launcher.isVisible ? 1.0 : 0.92
|
|
yScale: launcher.isVisible ? 1.0 : 0.92
|
|
|
|
Behavior on xScale {
|
|
NumberAnimation {
|
|
duration: Theme.mediumDuration
|
|
easing.type: Easing.OutBack
|
|
easing.overshoot: 1.2
|
|
}
|
|
}
|
|
|
|
Behavior on yScale {
|
|
NumberAnimation {
|
|
duration: Theme.mediumDuration
|
|
easing.type: Easing.OutBack
|
|
easing.overshoot: 1.2
|
|
}
|
|
}
|
|
},
|
|
Translate {
|
|
id: translateTransform
|
|
x: launcher.isVisible ? 0 : -30
|
|
y: launcher.isVisible ? 0 : -15
|
|
|
|
Behavior on x {
|
|
NumberAnimation {
|
|
duration: Theme.mediumDuration
|
|
easing.type: Theme.emphasizedEasing
|
|
}
|
|
}
|
|
|
|
Behavior on y {
|
|
NumberAnimation {
|
|
duration: Theme.mediumDuration
|
|
easing.type: Theme.emphasizedEasing
|
|
}
|
|
}
|
|
}
|
|
]
|
|
|
|
opacity: launcher.isVisible ? 1.0 : 0.0
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: Theme.mediumDuration
|
|
easing.type: Theme.emphasizedEasing
|
|
}
|
|
}
|
|
|
|
// Content with focus management
|
|
Item {
|
|
anchors.fill: parent
|
|
focus: true
|
|
|
|
// Handle keyboard shortcuts
|
|
Keys.onPressed: function(event) {
|
|
if (event.key === Qt.Key_Escape) {
|
|
launcher.hide()
|
|
event.accepted = true
|
|
} else if (event.key === Qt.Key_Down) {
|
|
selectNext()
|
|
event.accepted = true
|
|
} else if (event.key === Qt.Key_Up) {
|
|
selectPrevious()
|
|
event.accepted = true
|
|
} else if (event.key === Qt.Key_Right && viewMode === "grid") {
|
|
selectNextInRow()
|
|
event.accepted = true
|
|
} else if (event.key === Qt.Key_Left && viewMode === "grid") {
|
|
selectPreviousInRow()
|
|
event.accepted = true
|
|
} else if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
|
|
launchSelected()
|
|
event.accepted = true
|
|
}
|
|
}
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingXL
|
|
spacing: Theme.spacingL
|
|
|
|
// Header section
|
|
Row {
|
|
width: parent.width
|
|
height: 40
|
|
|
|
// App launcher title
|
|
Text {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: "Applications"
|
|
font.pixelSize: Theme.fontSizeLarge + 4
|
|
font.weight: Font.Bold
|
|
color: Theme.surfaceText
|
|
}
|
|
|
|
Item { width: parent.width - 200; height: 1 }
|
|
|
|
// Quick stats
|
|
Text {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: filteredModel.count + " apps"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceVariantText
|
|
}
|
|
}
|
|
|
|
// Enhanced search field
|
|
Rectangle {
|
|
id: searchContainer
|
|
width: parent.width
|
|
height: 52
|
|
radius: Theme.cornerRadiusLarge
|
|
color: Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.6)
|
|
border.width: searchField.activeFocus ? 2 : 1
|
|
border.color: searchField.activeFocus ? Theme.primary :
|
|
Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.3)
|
|
|
|
Behavior on border.color {
|
|
ColorAnimation {
|
|
duration: Theme.shortDuration
|
|
easing.type: Theme.standardEasing
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: Theme.spacingL
|
|
anchors.rightMargin: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Text {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: "search"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: Theme.iconSize
|
|
color: searchField.activeFocus ? Theme.primary : Theme.surfaceVariantText
|
|
font.weight: Theme.iconFontWeight
|
|
}
|
|
|
|
TextInput {
|
|
id: searchField
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
width: parent.width - parent.spacing - Theme.iconSize - 32
|
|
height: parent.height - Theme.spacingS
|
|
|
|
color: Theme.surfaceText
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
verticalAlignment: TextInput.AlignVCenter
|
|
|
|
focus: launcher.isVisible
|
|
selectByMouse: true
|
|
activeFocusOnTab: true
|
|
|
|
// Placeholder text
|
|
Text {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: "Search applications..."
|
|
color: Theme.surfaceVariantText
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
visible: searchField.text.length === 0 && !searchField.activeFocus
|
|
}
|
|
|
|
// Clear button
|
|
Rectangle {
|
|
width: 24
|
|
height: 24
|
|
radius: 12
|
|
color: clearSearchArea.containsMouse ? Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12) : "transparent"
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
visible: searchField.text.length > 0
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "close"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: 16
|
|
color: clearSearchArea.containsMouse ? Theme.outline : Theme.surfaceVariantText
|
|
}
|
|
|
|
MouseArea {
|
|
id: clearSearchArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: searchField.text = ""
|
|
}
|
|
}
|
|
|
|
onTextChanged: {
|
|
searchDebounceTimer.restart()
|
|
}
|
|
|
|
Keys.onPressed: function (event) {
|
|
if ((event.key === Qt.Key_Return || event.key === Qt.Key_Enter) && filteredModel.count) {
|
|
var firstApp = filteredModel.get(0)
|
|
if (firstApp.desktopEntry) {
|
|
Prefs.addRecentApp(firstApp.desktopEntry)
|
|
AppSearchService.launchApp(firstApp.desktopEntry)
|
|
} else {
|
|
launcher.launchApp(firstApp.exec)
|
|
}
|
|
launcher.hide()
|
|
event.accepted = true
|
|
} else if (event.key === Qt.Key_Escape) {
|
|
launcher.hide()
|
|
event.accepted = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Category filter and view mode controls
|
|
Row {
|
|
width: parent.width
|
|
height: 40
|
|
spacing: Theme.spacingM
|
|
visible: searchField.text.length === 0
|
|
|
|
// Category filter
|
|
Rectangle {
|
|
width: 200
|
|
height: 36
|
|
radius: Theme.cornerRadius
|
|
color: Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.3)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 1
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingS
|
|
|
|
Text {
|
|
text: "category"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: 18
|
|
color: Theme.surfaceVariantText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Text {
|
|
text: selectedCategory
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
font.weight: Font.Medium
|
|
}
|
|
}
|
|
|
|
Text {
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: showCategories ? "expand_less" : "expand_more"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: 18
|
|
color: Theme.surfaceVariantText
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: showCategories = !showCategories
|
|
}
|
|
}
|
|
|
|
Item { width: parent.width - 300; height: 1 }
|
|
|
|
// View mode toggle
|
|
Row {
|
|
spacing: 4
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
// List view button
|
|
Rectangle {
|
|
width: 36
|
|
height: 36
|
|
radius: Theme.cornerRadius
|
|
color: viewMode === "list" ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.12) :
|
|
listViewArea.containsMouse ? Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.08) : "transparent"
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "view_list"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: 20
|
|
color: viewMode === "list" ? Theme.primary : Theme.surfaceText
|
|
}
|
|
|
|
MouseArea {
|
|
id: listViewArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: viewMode = "list"
|
|
}
|
|
}
|
|
|
|
// Grid view button
|
|
Rectangle {
|
|
width: 36
|
|
height: 36
|
|
radius: Theme.cornerRadius
|
|
color: viewMode === "grid" ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.12) :
|
|
gridViewArea.containsMouse ? Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.08) : "transparent"
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "grid_view"
|
|
font.family: Theme.iconFont
|
|
font.pixelSize: 20
|
|
color: viewMode === "grid" ? Theme.primary : Theme.surfaceText
|
|
}
|
|
|
|
MouseArea {
|
|
id: gridViewArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: viewMode = "grid"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// App grid/list container
|
|
Rectangle {
|
|
width: parent.width
|
|
height: {
|
|
// Calculate more precise remaining height
|
|
let usedHeight = 40 + Theme.spacingL // Header
|
|
usedHeight += 52 + Theme.spacingL // Search container
|
|
usedHeight += (searchField.text.length === 0 ? 40 + Theme.spacingL : 0) // Category/controls when visible
|
|
return parent.height - usedHeight
|
|
}
|
|
color: "transparent"
|
|
|
|
// List view scroll container
|
|
ScrollView {
|
|
anchors.fill: parent
|
|
clip: true
|
|
visible: viewMode === "list"
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
ListView {
|
|
id: appList
|
|
width: parent.width
|
|
anchors.margins: Theme.spacingS
|
|
spacing: Theme.spacingS
|
|
|
|
model: filteredModel
|
|
delegate: listDelegate
|
|
currentIndex: selectedIndex
|
|
|
|
// Make mouse wheel scrolling more responsive
|
|
property real wheelStepSize: 60
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton
|
|
propagateComposedEvents: true
|
|
z: -1
|
|
|
|
onWheel: (wheel) => {
|
|
var delta = wheel.angleDelta.y
|
|
var steps = delta / 120 // Standard wheel step
|
|
appList.contentY -= steps * appList.wheelStepSize
|
|
|
|
// Ensure we stay within bounds
|
|
if (appList.contentY < 0) {
|
|
appList.contentY = 0
|
|
} else if (appList.contentY > appList.contentHeight - appList.height) {
|
|
appList.contentY = Math.max(0, appList.contentHeight - appList.height)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Grid view scroll container
|
|
ScrollView {
|
|
anchors.fill: parent
|
|
clip: true
|
|
visible: viewMode === "grid"
|
|
ScrollBar.vertical.policy: ScrollBar.AsNeeded
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
GridView {
|
|
id: appGrid
|
|
width: parent.width
|
|
anchors.margins: Theme.spacingS
|
|
|
|
// Responsive cell sizes based on screen width
|
|
property int baseCellWidth: Math.max(100, Math.min(140, width / 8))
|
|
property int baseCellHeight: baseCellWidth + 20
|
|
|
|
cellWidth: baseCellWidth
|
|
cellHeight: baseCellHeight
|
|
|
|
// Center the grid content
|
|
property int columnsCount: Math.floor(width / cellWidth)
|
|
property int remainingSpace: width - (columnsCount * cellWidth)
|
|
leftMargin: Math.max(Theme.spacingS, remainingSpace / 2)
|
|
rightMargin: leftMargin
|
|
|
|
model: filteredModel
|
|
delegate: gridDelegate
|
|
|
|
// Make mouse wheel scrolling more responsive
|
|
property real wheelStepSize: 60
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton
|
|
propagateComposedEvents: true
|
|
z: -1
|
|
|
|
onWheel: (wheel) => {
|
|
var delta = wheel.angleDelta.y
|
|
var steps = delta / 120 // Standard wheel step
|
|
appGrid.contentY -= steps * appGrid.wheelStepSize
|
|
|
|
// Ensure we stay within bounds
|
|
if (appGrid.contentY < 0) {
|
|
appGrid.contentY = 0
|
|
} else if (appGrid.contentY > appGrid.contentHeight - appGrid.height) {
|
|
appGrid.contentY = Math.max(0, appGrid.contentHeight - appGrid.height)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Category dropdown overlay - now positioned absolutely
|
|
Rectangle {
|
|
id: categoryDropdown
|
|
width: 200
|
|
height: Math.min(250, categories.length * 40 + Theme.spacingM * 2)
|
|
radius: Theme.cornerRadiusLarge
|
|
color: Theme.surfaceContainer
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 1
|
|
visible: showCategories
|
|
z: 1000
|
|
|
|
// Position it below the category button
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 140 + (searchField.text.length === 0 ? 0 : -40)
|
|
anchors.left: parent.left
|
|
|
|
// Drop shadow
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
anchors.margins: -4
|
|
color: "transparent"
|
|
radius: parent.radius + 4
|
|
z: -1
|
|
|
|
layer.enabled: true
|
|
layer.effect: MultiEffect {
|
|
shadowEnabled: true
|
|
shadowHorizontalOffset: 0
|
|
shadowVerticalOffset: 0
|
|
shadowBlur: 0.25 // radius/32
|
|
shadowColor: Qt.rgba(0, 0, 0, 0.2)
|
|
shadowOpacity: 0.2
|
|
}
|
|
}
|
|
|
|
ScrollView {
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingS
|
|
clip: true
|
|
ScrollBar.vertical.policy: ScrollBar.AsNeeded
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
ListView {
|
|
model: categories
|
|
spacing: 4
|
|
|
|
// Make mouse wheel scrolling more responsive
|
|
property real wheelStepSize: 60
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton
|
|
propagateComposedEvents: true
|
|
z: -1
|
|
|
|
onWheel: (wheel) => {
|
|
var delta = wheel.angleDelta.y
|
|
var steps = delta / 120 // Standard wheel step
|
|
parent.contentY -= steps * parent.wheelStepSize
|
|
|
|
// Ensure we stay within bounds
|
|
if (parent.contentY < 0) {
|
|
parent.contentY = 0
|
|
} else if (parent.contentY > parent.contentHeight - parent.height) {
|
|
parent.contentY = Math.max(0, parent.contentHeight - parent.height)
|
|
}
|
|
}
|
|
}
|
|
|
|
delegate: Rectangle {
|
|
width: ListView.view.width
|
|
height: 36
|
|
radius: Theme.cornerRadiusSmall
|
|
color: catArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : "transparent"
|
|
|
|
Text {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: modelData
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: selectedCategory === modelData ? Theme.primary : Theme.surfaceText
|
|
font.weight: selectedCategory === modelData ? Font.Medium : Font.Normal
|
|
}
|
|
|
|
MouseArea {
|
|
id: catArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
selectedCategory = modelData
|
|
showCategories = false
|
|
updateFilteredModel()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// List delegate with new loader
|
|
Component {
|
|
id: listDelegate
|
|
Rectangle {
|
|
width: appList.width
|
|
height: 72
|
|
radius: Theme.cornerRadiusLarge
|
|
color: ListView.isCurrentItem ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.16) :
|
|
appMouseArea.hovered ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) :
|
|
Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.03)
|
|
border.color: ListView.isCurrentItem ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.3) :
|
|
Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
|
border.width: ListView.isCurrentItem ? 2 : 1
|
|
|
|
Row {
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingM
|
|
spacing: Theme.spacingL
|
|
|
|
Item {
|
|
width: 56
|
|
height: 56
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
Loader {
|
|
id: listIconLoader
|
|
anchors.fill: parent
|
|
property var modelData: model
|
|
sourceComponent: iconComponent
|
|
}
|
|
}
|
|
|
|
Column {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
width: parent.width - 56 - Theme.spacingL
|
|
spacing: Theme.spacingXS
|
|
|
|
Text {
|
|
width: parent.width
|
|
text: model.name
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
elide: Text.ElideRight
|
|
}
|
|
|
|
Text {
|
|
width: parent.width
|
|
text: model.comment || "Application"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceVariantText
|
|
elide: Text.ElideRight
|
|
visible: model.comment && model.comment.length > 0
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: appMouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
z: 10
|
|
property bool hovered: containsMouse
|
|
onEntered: selectedIndex = index
|
|
onClicked: {
|
|
if (model.desktopEntry) {
|
|
Prefs.addRecentApp(model.desktopEntry)
|
|
AppSearchService.launchApp(model.desktopEntry)
|
|
} else {
|
|
launcher.launchApp(model.exec)
|
|
}
|
|
launcher.hide()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Grid delegate with new loader (uses dynamic icon size)
|
|
Component {
|
|
id: gridDelegate
|
|
Rectangle {
|
|
width: appGrid.cellWidth - 8
|
|
height: appGrid.cellHeight - 8
|
|
radius: Theme.cornerRadiusLarge
|
|
color: selectedIndex === index ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.16) :
|
|
gridAppArea.hovered ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) :
|
|
Qt.rgba(Theme.surfaceVariant.r, Theme.surfaceVariant.g, Theme.surfaceVariant.b, 0.03)
|
|
border.color: selectedIndex === index ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.3) :
|
|
Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
|
border.width: selectedIndex === index ? 2 : 1
|
|
|
|
Column {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingS
|
|
|
|
Item {
|
|
property int iconSize: Math.min(56, Math.max(32, appGrid.cellWidth * 0.6))
|
|
width: iconSize
|
|
height: iconSize
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
Loader {
|
|
id: gridIconLoader
|
|
anchors.fill: parent
|
|
property var modelData: model
|
|
sourceComponent: iconComponent
|
|
}
|
|
}
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
width: 88
|
|
text: model.name
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
elide: Text.ElideRight
|
|
horizontalAlignment: Text.AlignHCenter
|
|
maximumLineCount: 2
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: gridAppArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
z: 10
|
|
property bool hovered: containsMouse
|
|
onEntered: selectedIndex = index
|
|
onClicked: {
|
|
if (model.desktopEntry) {
|
|
Prefs.addRecentApp(model.desktopEntry)
|
|
AppSearchService.launchApp(model.desktopEntry)
|
|
} else {
|
|
launcher.launchApp(model.exec)
|
|
}
|
|
launcher.hide()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function launchApp(exec) {
|
|
// Try to find the desktop entry
|
|
var app = AppSearchService.getAppByExec(exec)
|
|
if (app) {
|
|
AppSearchService.launchApp(app)
|
|
} else {
|
|
// Fallback to direct execution
|
|
var cleanExec = exec.replace(/%[fFuU]/g, "").trim()
|
|
console.log("Launching app directly:", cleanExec)
|
|
Quickshell.execDetached(["sh", "-c", cleanExec])
|
|
}
|
|
}
|
|
|
|
function show() {
|
|
// Trigger manual rescan when opening
|
|
console.log("AppLauncher: Triggering manual rescan on show")
|
|
if (DesktopEntries.rescan) {
|
|
DesktopEntries.rescan()
|
|
}
|
|
|
|
launcher.isVisible = true
|
|
recentApps = Prefs.getRecentApps() // Refresh recent apps
|
|
searchDebounceTimer.stop() // Stop any pending search
|
|
updateFilteredModel()
|
|
Qt.callLater(function() {
|
|
searchField.forceActiveFocus()
|
|
})
|
|
}
|
|
|
|
function hide() {
|
|
launcher.isVisible = false
|
|
searchDebounceTimer.stop() // Stop any pending search
|
|
searchField.text = ""
|
|
showCategories = false
|
|
}
|
|
|
|
function toggle() {
|
|
if (launcher.isVisible) {
|
|
hide()
|
|
} else {
|
|
show()
|
|
}
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
if (AppSearchService.ready) {
|
|
var allCategories = AppSearchService.getAllCategories()
|
|
// Insert "Recents" after "All"
|
|
categories = ["All", "Recents"].concat(allCategories.filter(cat => cat !== "All"))
|
|
updateFilteredModel()
|
|
}
|
|
recentApps = Prefs.getRecentApps() // Load recent apps on startup
|
|
}
|
|
} |