2025-03-29 08:01:13 -04:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
|
2025-03-30 11:20:21 -04:00
|
|
|
import clide.module 1.0
|
|
|
|
|
|
2025-03-29 08:01:13 -04:00
|
|
|
MenuItem {
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
|
|
background: Rectangle {
|
2025-03-30 11:20:21 -04:00
|
|
|
color: root.hovered ? RustColors.hovered : RustColors.unhovered
|
2025-03-29 08:01:13 -04:00
|
|
|
radius: 2.5
|
|
|
|
|
}
|
|
|
|
|
contentItem: IconLabel {
|
2025-03-29 09:55:09 -04:00
|
|
|
color: "black"
|
2025-03-29 08:01:13 -04:00
|
|
|
font.family: "Helvetica"
|
|
|
|
|
text: root.text
|
|
|
|
|
}
|
|
|
|
|
}
|