2023-02-15 08:27:18 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
2023-02-21 10:37:34 +00:00
|
|
|
import QtQuick.Layouts 1.15
|
2023-02-15 08:27:18 +00:00
|
|
|
|
|
|
|
import Storybook 1.0
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
import mainui 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
|
|
|
|
SplitView {
|
|
|
|
Logs { id: logs }
|
|
|
|
SplitView {
|
|
|
|
SplitView.fillHeight: true
|
|
|
|
SplitView.fillWidth: true
|
|
|
|
orientation: Qt.Vertical
|
|
|
|
DidYouKnowSplashScreen {
|
2023-02-21 10:37:34 +00:00
|
|
|
id: splashScreen
|
2023-02-15 08:27:18 +00:00
|
|
|
SplitView.fillHeight: true
|
|
|
|
SplitView.fillWidth: true
|
2023-02-21 10:37:34 +00:00
|
|
|
progress: progressSlider.position
|
2023-02-15 08:27:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Pane {
|
|
|
|
SplitView.minimumWidth: 300
|
|
|
|
SplitView.preferredWidth: 300
|
2023-02-21 10:37:34 +00:00
|
|
|
RowLayout {
|
|
|
|
Label {
|
|
|
|
text: "Progress"
|
|
|
|
}
|
|
|
|
Slider {
|
|
|
|
id: progressSlider
|
|
|
|
}
|
|
|
|
}
|
2023-02-15 08:27:18 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-31 12:21:14 +00:00
|
|
|
|
|
|
|
// category: Panels
|