status-desktop/ui/app/AppLayouts/Browser/panels/FavoritesList.qml

32 lines
809 B
QML

import QtQuick 2.13
import "../../../../shared"
import "../../../../shared/status"
import "../controls"
import utils 1.0
GridView {
id: bookmarkGrid
cellWidth: 100
cellHeight: 100
delegate: BookmarkButton {
id: bookmarkBtn
text: name
source: imageUrl
webUrl: determineRealURL(url)
onClicked: {
if (!webUrl.toString()) {
addFavoriteModal.open()
} else {
currentWebView.url = webUrl
}
}
onRightClicked: {
favoriteMenu.url = url
favoriteMenu.x = bookmarkGrid.x + bookmarkBtn.x + mouse.x
favoriteMenu.y = Qt.binding(function () {return bookmarkGrid.y + mouse.y + favoriteMenu.height})
favoriteMenu.open()
}
}
}