@@ -30,8 +30,10 @@ T_Com_general::T_Com_general(QWidget* parent)
3030 up_enemy_color_label->setTextPixelSize (14 );
3131 ElaText* up_pitch_label = new ElaText (" pitch" );
3232 up_pitch_label->setTextPixelSize (14 );
33- ElaText* up_yaw_label = new ElaText (" yaw " );
33+ ElaText* up_yaw_label = new ElaText (" high_gimbal_yaw " );
3434 up_yaw_label->setTextPixelSize (14 );
35+ ElaText* up_low_yaw_label = new ElaText (" low_gimbal_yaw" );
36+ up_low_yaw_label->setTextPixelSize (14 );
3537 ElaText* up_mode_label = new ElaText (" mode" );
3638 up_mode_label->setTextPixelSize (14 );
3739 ElaText* up_rune_flag_label = new ElaText (" rune_flag" );
@@ -50,6 +52,8 @@ T_Com_general::T_Com_general(QWidget* parent)
5052 up_pitch_editor->setReadOnly (true );
5153 up_yaw_editor = new ElaLineEdit (this );
5254 up_yaw_editor->setReadOnly (true );
55+ up_low_yaw_editor = new ElaLineEdit (this );
56+ up_low_yaw_editor->setReadOnly (true );
5357 up_mode_editor = new ElaLineEdit (this );
5458 up_mode_editor->setReadOnly (true );
5559 up_rune_flag_editor = new ElaLineEdit (this );
@@ -87,6 +91,7 @@ T_Com_general::T_Com_general(QWidget* parent)
8791 QHBoxLayout* right3layout = new QHBoxLayout ();
8892 QHBoxLayout* right4layout = new QHBoxLayout ();
8993 QHBoxLayout* right5layout = new QHBoxLayout ();
94+ QHBoxLayout* right6layout = new QHBoxLayout ();
9095 QHBoxLayout* right0layout = new QHBoxLayout ();
9196 right0layout->addWidget (Text_right);
9297 right0layout->setAlignment (Qt::AlignCenter);
@@ -101,12 +106,15 @@ T_Com_general::T_Com_general(QWidget* parent)
101106 right4layout->addWidget (up_yaw_editor);
102107 right5layout->addWidget (up_pitch_label);
103108 right5layout->addWidget (up_pitch_editor);
109+ right6layout->addWidget (up_low_yaw_label);
110+ right6layout->addWidget (up_low_yaw_editor);
104111 QVBoxLayout* right_total_layout = new QVBoxLayout ();
105112 right_total_layout->addLayout (right0layout);
106113 right_total_layout->addLayout (right1layout);
107114 right_total_layout->addLayout (right2layout);
108115 right_total_layout->addLayout (right3layout);
109116 right_total_layout->addLayout (right4layout);
117+ right_total_layout->addLayout (right6layout);
110118 right_total_layout->addLayout (right5layout);
111119 right_total_layout->setSpacing (20 );
112120 right_total_layout->setAlignment (Qt::AlignCenter);
0 commit comments