QTfrontend/ui/page/pagefeedback.h
author koda
Tue, 25 Dec 2012 04:45:22 +0100
branchwebgl
changeset 8330 aaefa587e277
parent 8328 03684c667664
permissions -rw-r--r--
update branch with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     1
/*
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     2
 * Hedgewars, a free turn based strategy game
6952
7f70f37bbf08 license header year range adjustments
sheepluva
parents: 6700
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     4
 *
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     8
 *
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    12
 * GNU General Public License for more details.
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    13
 *
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    14
 * You should have received a copy of the GNU General Public License
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    15
 * along with this program; if not, write to the Free Software
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    17
 */
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    18
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    19
#ifndef PAGE_FEEDBACK_H
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    20
#define PAGE_FEEDBACK_H
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    21
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    22
#include "AbstractPage.h"
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    23
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    24
class QNetworkReply;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    25
class QNetworkAccessManager;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    26
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    27
class PageFeedback : public AbstractPage
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    28
{
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    29
        Q_OBJECT
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    30
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    31
    public:
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    32
        PageFeedback(QWidget * parent = 0);
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    33
        void EmbedSystemInfo();
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    34
        void LoadCaptchaImage();
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    35
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    36
        QPushButton * BtnSend;
8328
03684c667664 GCI2012: Feedback Redo
dag10
parents: 8268
diff changeset
    37
        QPushButton * BtnViewInfo;
03684c667664 GCI2012: Feedback Redo
dag10
parents: 8268
diff changeset
    38
        QCheckBox * CheckSendSpecs;
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    39
        QLineEdit * summary;
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    40
        QTextBrowser * description;
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    41
        QLabel * info;
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    42
        QLabel * label_summary;
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    43
        QLabel * label_description;
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    44
        QLabel * label_captcha;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    45
        QLabel * label_email;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    46
        QLabel * label_captcha_input;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    47
        QLineEdit * captcha_code;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    48
        QLineEdit * email;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    49
        int captchaID;
8328
03684c667664 GCI2012: Feedback Redo
dag10
parents: 8268
diff changeset
    50
        QString specs;
8330
aaefa587e277 update branch with default
koda
parents: 8328
diff changeset
    51
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    52
    private slots:
8330
aaefa587e277 update branch with default
koda
parents: 8328
diff changeset
    53
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    54
        virtual void NetReply(QNetworkReply*);
8328
03684c667664 GCI2012: Feedback Redo
dag10
parents: 8268
diff changeset
    55
        virtual void ShowSpecs();
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    56
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    57
    private:
8328
03684c667664 GCI2012: Feedback Redo
dag10
parents: 8268
diff changeset
    58
        void GenerateSpecs();
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    59
        QLayout * bodyLayoutDefinition();
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    60
        QLayout * footerLayoutDefinition();
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    61
        QNetworkAccessManager * GetNetManager();
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    62
        void ShowErrorMessage(const QString & msg);
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    63
        void connectSignals();
8268
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    64
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    65
        QNetworkAccessManager * netManager;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    66
        QNetworkReply * captchaImageRequest;
fe4e94311585 GCI2012: Google Issue Login
Drew Gottlieb
parents: 6952
diff changeset
    67
        QNetworkReply * genCaptchaRequest;
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    68
};
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    69
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    70
#endif