psl调整
This commit is contained in:
parent
9945a2001a
commit
6a27f93fe9
@ -6,6 +6,10 @@ package ibpGraphicData;
|
|||||||
message IBPGraphicStorage {
|
message IBPGraphicStorage {
|
||||||
graphicData.Canvas canvas = 1;
|
graphicData.Canvas canvas = 1;
|
||||||
repeated IBPButton ibpButtons = 2;
|
repeated IBPButton ibpButtons = 2;
|
||||||
|
repeated IbpAlarm ibpAlarms = 3;
|
||||||
|
repeated IbpKey ibpKeys = 4;
|
||||||
|
repeated IbpArrow ibpArrows = 5;
|
||||||
|
repeated IBPText IBPTexts = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message IBPButton {
|
message IBPButton {
|
||||||
@ -26,5 +30,31 @@ message IBPButton {
|
|||||||
|
|
||||||
message IBPText {
|
message IBPText {
|
||||||
graphicData.CommonInfo common = 1;
|
graphicData.CommonInfo common = 1;
|
||||||
int32 size = 2;
|
string code = 2;
|
||||||
|
string content = 3;
|
||||||
|
string color = 4;
|
||||||
|
int32 fontSize = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IbpAlarm {
|
||||||
|
graphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IbpKey {
|
||||||
|
graphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Point {
|
||||||
|
// x坐标
|
||||||
|
float x = 1;
|
||||||
|
// y坐标
|
||||||
|
float y = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IbpArrow {
|
||||||
|
graphicData.CommonInfo common = 1;
|
||||||
|
string code = 2;
|
||||||
|
repeated Point points = 3;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user