43 QHBoxLayout *main_layout =
new QHBoxLayout(
this);
44 QGridLayout *extra_layout =
new QGridLayout();
58 label =
new QLabel(QString::fromUtf8(
R__(
"Graphics tag")));
59 label->setParent(
this);
64 extra_layout->addWidget(label, row, 0);
65 extra_layout->addWidget(
gfx_tag, row++, 1);
67 label =
new QLabel(QString::fromUtf8(
R__(
"Alt graphics tag")));
68 label->setParent(
this);
73 extra_layout->addWidget(label, row, 0);
76 label =
new QLabel(QString::fromUtf8(
R__(
"Activity graphics tag")));
77 label->setParent(
this);
82 extra_layout->addWidget(label, row, 0);
83 extra_layout->addWidget(
act_gfx, row++, 1);
85 label =
new QLabel(QString::fromUtf8(
R__(
"Alt activity gfx tag")));
86 label->setParent(
this);
91 extra_layout->addWidget(label, row, 0);
94 label =
new QLabel(QString::fromUtf8(
R__(
"Second alt activity gfx tag")));
95 label->setParent(
this);
100 extra_layout->addWidget(label, row, 0);
103 label =
new QLabel(QString::fromUtf8(
R__(
"Removal activity graphics tag")));
104 label->setParent(
this);
109 extra_layout->addWidget(label, row, 0);
110 extra_layout->addWidget(
rmact_gfx, row++, 1);
112 label =
new QLabel(QString::fromUtf8(
R__(
"Alt removal activity gfx tag")));
113 label->setParent(
this);
118 extra_layout->addWidget(label, row, 0);
121 label =
new QLabel(QString::fromUtf8(
R__(
"Native to")));
124 QCheckBox *check =
new QCheckBox();
136 enum extra_flag_id flag = (
enum extra_flag_id)i;
137 QCheckBox *check =
new QCheckBox();
139 label =
new QLabel(extra_flag_id_name(flag));
140 flag_layout->addWidget(label, rowcount, column + 1);
153 main_layout->addLayout(extra_layout);
157 setLayout(main_layout);