Add placeholders for side panel and console.

This commit is contained in:
2025-03-29 09:55:09 -04:00
parent 59acdc48fa
commit 8b71af06a8
6 changed files with 165 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ import QtQuick.Controls
Menu {
background: Rectangle {
color: "#3c3f41"
implicitWidth: 200
implicitWidth: 100
radius: 2
}
}

View File

@@ -3,7 +3,7 @@ import QtQuick.Controls
MenuBar {
background: Rectangle {
color: "#3b3e40" // Dark background like CLion
color: "#3c3f41"
}
Action {
@@ -25,6 +25,7 @@ MenuBar {
id: actionExit
text: qsTr("&Exit")
onTriggered: Qt.quit()
}
ClideMenu {

View File

@@ -9,7 +9,7 @@ MenuItem {
radius: 2.5
}
contentItem: IconLabel {
color: "white"
color: "black"
font.family: "Helvetica"
text: root.text
}

View File

@@ -0,0 +1,16 @@
import QtQuick
import QtQuick.Controls
MenuItem {
id: root
background: Rectangle {
color: root.hovered ? "#4b4f51" : "#3c3f41" // Hover effect
radius: 2.5
}
contentItem: IconLabel {
color: "black"
font.family: "Helvetica"
text: root.text
}
}