ibp车站文字

This commit is contained in:
Yuan 2023-11-21 15:15:26 +08:00
parent 2eb395a90c
commit e530b21a10

View File

@ -13,6 +13,7 @@ message IBPGraphicStorage {
// UniqueIdType UniqueIdPrefix = 7;
repeated IbpRelatedDevice ibpRelatedDevices = 8;
repeated IbpLight ibpLights = 9;
repeated IbpStationText ibpStationTexts = 10;
}
message IBPButton {
@ -73,3 +74,21 @@ message IbpRelatedDevice {
repeated graphicData.DeviceCombinationtype combinationtypes = 2; //
// graphicData.RelatedRef.DeviceType deviceType = 3; //
}
message IbpStationText {
enum IbpStationTextType {
CURRENT = 0;
UP = 1;
DOWN = 2;
}
enum IbpStationTextAlign {
LEFT = 0;
RIGHT = 1;
CENTER = 2;
}
graphicData.CommonInfo common = 1;
IbpStationTextType type = 2;
string color = 4;
int32 fontSize = 5;
IbpStationTextAlign align = 6;
}