diff -r 83dd3447a212 -r e04da46ee43c QTfrontend/ui/page/pagefeedback.cpp --- a/QTfrontend/ui/page/pagefeedback.cpp Fri Feb 17 17:43:59 2012 +0100 +++ b/QTfrontend/ui/page/pagefeedback.cpp Fri Feb 17 18:23:36 2012 +0100 @@ -1,82 +1,82 @@ -/* - * Hedgewars, a free turn based strategy game - * Copyright (c) 2006-2011 Andrey Korotaev - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - */ - -#include -#include -#include -#include - -#include "pagefeedback.h" -#include "hwconsts.h" - -QLayout * PageFeedback::bodyLayoutDefinition() -{ - QVBoxLayout * pageLayout = new QVBoxLayout(); - QHBoxLayout * summaryLayout = new QHBoxLayout(); - - info = new QLabel(); - info->setText( - "" - "

Please give us a feedback!

" - "

We are always happy about suggestions, ideas or bug reports.

" - "

The feedback will be posted as a new issue on our Google Code page.

" - "

" - ); - pageLayout->addWidget(info); - - label_summary = new QLabel(); - label_summary->setText(QLabel::tr("Summary ")); - summaryLayout->addWidget(label_summary); - summary = new QLineEdit(); - summaryLayout->addWidget(summary); - pageLayout->addLayout(summaryLayout); - - label_description = new QLabel(); - label_description->setText(QLabel::tr("Description")); - pageLayout->addWidget(label_description, 0, Qt::AlignHCenter); - description = new QTextBrowser(); - description->setReadOnly(false); - pageLayout->addWidget(description); - - return pageLayout; -} - -QLayout * PageFeedback::footerLayoutDefinition() -{ - QHBoxLayout * bottomLayout = new QHBoxLayout(); - - bottomLayout->setStretch(0,1); - //TODO: create logo for send button - BtnSend = addButton("Send", bottomLayout, 0, false); - bottomLayout->insertStretch(0); - - return bottomLayout; -} - -void PageFeedback::connectSignals() -{ - //TODO -} - -PageFeedback::PageFeedback(QWidget* parent) : AbstractPage(parent) -{ - initPage(); - -} +/* + * Hedgewars, a free turn based strategy game + * Copyright (c) 2006-2012 Andrey Korotaev + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + */ + +#include +#include +#include +#include + +#include "pagefeedback.h" +#include "hwconsts.h" + +QLayout * PageFeedback::bodyLayoutDefinition() +{ + QVBoxLayout * pageLayout = new QVBoxLayout(); + QHBoxLayout * summaryLayout = new QHBoxLayout(); + + info = new QLabel(); + info->setText( + "" + "

Please give us a feedback!

" + "

We are always happy about suggestions, ideas or bug reports.

" + "

The feedback will be posted as a new issue on our Google Code page.

" + "

" + ); + pageLayout->addWidget(info); + + label_summary = new QLabel(); + label_summary->setText(QLabel::tr("Summary ")); + summaryLayout->addWidget(label_summary); + summary = new QLineEdit(); + summaryLayout->addWidget(summary); + pageLayout->addLayout(summaryLayout); + + label_description = new QLabel(); + label_description->setText(QLabel::tr("Description")); + pageLayout->addWidget(label_description, 0, Qt::AlignHCenter); + description = new QTextBrowser(); + description->setReadOnly(false); + pageLayout->addWidget(description); + + return pageLayout; +} + +QLayout * PageFeedback::footerLayoutDefinition() +{ + QHBoxLayout * bottomLayout = new QHBoxLayout(); + + bottomLayout->setStretch(0,1); + //TODO: create logo for send button + BtnSend = addButton("Send", bottomLayout, 0, false); + bottomLayout->insertStretch(0); + + return bottomLayout; +} + +void PageFeedback::connectSignals() +{ + //TODO +} + +PageFeedback::PageFeedback(QWidget* parent) : AbstractPage(parent) +{ + initPage(); + +}