44 QHBoxLayout *main_layout =
new QHBoxLayout(
this);
45 QGridLayout *extra_layout =
new QGridLayout();
60 label =
new QLabel(QString::fromUtf8(
R__(
"Graphics tag")));
61 label->setParent(
this);
66 extra_layout->addWidget(label, row, 0);
67 extra_layout->addWidget(
gfx_tag, row++, 1);
69 label =
new QLabel(QString::fromUtf8(
R__(
"Alt graphics tag")));
70 label->setParent(
this);
75 extra_layout->addWidget(label, row, 0);
78 label =
new QLabel(QString::fromUtf8(
R__(
"Activity graphics tag")));
79 label->setParent(
this);
84 extra_layout->addWidget(label, row, 0);
85 extra_layout->addWidget(
act_gfx, row++, 1);
87 label =
new QLabel(QString::fromUtf8(
R__(
"Alt activity gfx tag")));
88 label->setParent(
this);
93 extra_layout->addWidget(label, row, 0);
96 label =
new QLabel(QString::fromUtf8(
R__(
"Second alt activity gfx tag")));
97 label->setParent(
this);
102 extra_layout->addWidget(label, row, 0);
105 label =
new QLabel(QString::fromUtf8(
R__(
"Removal activity graphics tag")));
106 label->setParent(
this);
111 extra_layout->addWidget(label, row, 0);
112 extra_layout->addWidget(
rmact_gfx, row++, 1);
114 label =
new QLabel(QString::fromUtf8(
R__(
"Alt removal activity gfx tag")));
115 label->setParent(
this);
120 extra_layout->addWidget(label, row, 0);
123 button =
new QPushButton(QString::fromUtf8(
R__(
"Helptext")),
this);
124 connect(button, SIGNAL(pressed()),
this, SLOT(
helptext()));
125 extra_layout->addWidget(button, row++, 1);
127 label =
new QLabel(QString::fromUtf8(
R__(
"Native to")));
130 QCheckBox *check =
new QCheckBox();
142 enum extra_flag_id flag = (
enum extra_flag_id)i;
143 QCheckBox *check =
new QCheckBox();
145 label =
new QLabel(extra_flag_id_name(flag));
146 flag_layout->addWidget(label, rowcount, column + 1);
159 main_layout->addLayout(extra_layout);
163 setLayout(main_layout);