39 QHBoxLayout *main_layout =
new QHBoxLayout(
this);
40 QGridLayout *gov_layout =
new QGridLayout();
52 label =
new QLabel(QString::fromUtf8(
R__(
"Graphics tag")));
53 label->setParent(
this);
58 gov_layout->addWidget(label, row, 0);
59 gov_layout->addWidget(
gfx_tag, row++, 1);
61 label =
new QLabel(QString::fromUtf8(
R__(
"Alt graphics tag")));
62 label->setParent(
this);
67 gov_layout->addWidget(label, row, 0);
70 button =
new QPushButton(QString::fromUtf8(
R__(
"Helptext")),
this);
71 connect(button, SIGNAL(pressed()),
this, SLOT(
helptext()));
72 gov_layout->addWidget(button, row++, 1);
76 main_layout->addLayout(gov_layout);
78 setLayout(main_layout);