// Copyright (C) 2023 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 import QtQuick import QtQuick.Controls import StudioControls 1.0 as StudioControls import StudioTheme 1.0 as StudioTheme import "../toolbar" import ToolBar 1.0 Item { id: toolbarContainer height: 41 width: 4048 ToolBarBackend { id: backend } Rectangle { color: StudioTheme.Values.themeStatusbarBackground anchors.fill: parent Row { anchors.fill: parent anchors.topMargin: 3 anchors.leftMargin: 4 spacing: 29 ToolbarButton { id: settingButton style: StudioTheme.Values.statusbarButtonStyle buttonIcon: StudioTheme.Constants.settings_medium onClicked: backend.triggerProjectSettings() enabled: backend.isInDesignMode || (backend.isInEditMode && backend.projectOpened) } Text { height: StudioTheme.Values.statusbarButtonStyle.controlSize.height color: StudioTheme.Values.themeTextColor text: qsTr("Kit") font.pixelSize: StudioTheme.Values.baseFontSize horizontalAlignment: Text.AlignRight verticalAlignment: Text.AlignVCenter elide: Text.ElideRight } StudioControls.TopLevelComboBox { id: kits style: StudioTheme.Values.statusbarControlStyle width: 160 model: backend.kits onActivated: backend.setCurrentKit(kits.currentIndex) openUpwards: true enabled: (backend.isInDesignMode || (backend.isInEditMode && backend.projectOpened)) && backend.isQt6 property int kitIndex: backend.currentKit onKitIndexChanged: kits.currentIndex = backend.currentKit } Text { height: StudioTheme.Values.statusbarButtonStyle.controlSize.height color: StudioTheme.Values.themeTextColor text: qsTr("Style") font.pixelSize: StudioTheme.Values.baseFontSize horizontalAlignment: Text.AlignRight verticalAlignment: Text.AlignVCenter elide: Text.ElideRight } StudioControls.TopLevelComboBox { id: styles style: StudioTheme.Values.statusbarControlStyle width: 160 model: backend.styles onActivated: backend.setCurrentStyle(styles.currentIndex) openUpwards: true enabled: backend.isInDesignMode property int currentStyleIndex: backend.currentStyle onCurrentStyleIndexChanged: currentIndex = backend.currentStyle } } } }