-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from tier4/develop
merge stage
- Loading branch information
Showing
6 changed files
with
114 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,3 @@ repositories: | |
type: git | ||
url: https://github.com/tier4/boot_shutdown_tools.git | ||
version: main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import QtQuick 2.9 | ||
import QtQuick.Controls 2.2 | ||
|
||
import "Common" | ||
|
||
Rectangle { | ||
id: slowStopView | ||
width: viewController.monitor_width | ||
height: viewController.monitor_height | ||
color: "#ffffff" | ||
|
||
CurrentTime { | ||
id: displayCurrentTime | ||
} | ||
|
||
Text { | ||
id: slowStopText | ||
color: "#000000" | ||
text: qsTr("安全確認のため停車中です") | ||
anchors.horizontalCenter: parent.horizontalCenter | ||
anchors.bottom: parent.verticalCenter | ||
horizontalAlignment: Text.AlignHCenter | ||
verticalAlignment: Text.AlignVCenter | ||
font.pointSize: 80*viewController.size_ratio | ||
font.bold: true | ||
elide: Text.ElideMiddle | ||
} | ||
|
||
Text { | ||
id: slowStopEnText | ||
color: "#000000" | ||
text: qsTr("Stop for safety check") | ||
anchors.top: slowStopText.bottom | ||
anchors.horizontalCenter: parent.horizontalCenter | ||
horizontalAlignment: Text.AlignHCenter | ||
verticalAlignment: Text.AlignVCenter | ||
font.pointSize: 80*viewController.size_ratio | ||
font.bold: true | ||
elide: Text.ElideMiddle | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import QtQuick 2.9 | ||
import QtQuick.Controls 2.2 | ||
|
||
import "Common" | ||
|
||
Rectangle { | ||
id: slowingView | ||
width: viewController.monitor_width | ||
height: viewController.monitor_height | ||
color: "#ffffff" | ||
|
||
CurrentTime { | ||
id: displayCurrentTime | ||
} | ||
|
||
Text { | ||
id: slowingText | ||
color: "#000000" | ||
text: qsTr("減速します") | ||
anchors.horizontalCenter: parent.horizontalCenter | ||
anchors.bottom: parent.verticalCenter | ||
horizontalAlignment: Text.AlignHCenter | ||
verticalAlignment: Text.AlignVCenter | ||
font.pointSize: 80*viewController.size_ratio | ||
font.bold: true | ||
elide: Text.ElideMiddle | ||
} | ||
|
||
Text { | ||
id: slowingEnText | ||
color: "#000000" | ||
text: qsTr("Slowing Down") | ||
anchors.top: slowingText.bottom | ||
anchors.horizontalCenter: parent.horizontalCenter | ||
horizontalAlignment: Text.AlignHCenter | ||
verticalAlignment: Text.AlignVCenter | ||
font.pointSize: 80*viewController.size_ratio | ||
font.bold: true | ||
elide: Text.ElideMiddle | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters