author | koda |
Sat, 08 Dec 2012 15:35:03 +0100 | |
changeset 8270 | 16a52ad5a362 |
parent 8192 | 81da6576b0c3 |
child 9080 | 9b42757d7e71 |
permissions | -rw-r--r-- |
7631
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
1 |
/* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
4 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
8 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
12 |
* GNU General Public License for more details. |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
13 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
17 |
*/ |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
18 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
19 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
20 |
#ifndef PAGE_VIDEOS_H |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
21 |
#define PAGE_VIDEOS_H |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
22 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
23 |
#include "AbstractPage.h" |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
24 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
25 |
class QNetworkAccessManager; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
26 |
class QNetworkReply; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
27 |
class GameUIConfig; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
28 |
class HWRecorder; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
29 |
class VideoItem; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
30 |
class HWForm; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
31 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
32 |
class PageVideos : public AbstractPage |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
33 |
{ |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
34 |
Q_OBJECT |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
35 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
36 |
public: |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
37 |
PageVideos(QWidget* parent = 0); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
38 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
39 |
void addRecorder(HWRecorder* pRecorder); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
40 |
bool tryQuit(HWForm *form); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
41 |
QString getVideosInProgress(); // get multi-line string with list of videos in progress |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
42 |
void startEncoding(const QByteArray & record = QByteArray()); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
43 |
void init(GameUIConfig * config); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
44 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
45 |
private: |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
46 |
// virtuals from AbstractPage |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
47 |
QLayout * bodyLayoutDefinition(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
48 |
QLayout * footerLayoutDefinition(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
49 |
void connectSignals(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
50 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
51 |
// virtual from QWidget |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
52 |
void keyPressEvent(QKeyEvent * pEvent); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
53 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
54 |
void setName(VideoItem * item, const QString & newName); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
55 |
void updateSize(int row); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
56 |
int appendRow(const QString & name); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
57 |
VideoItem* nameItem(int row); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
58 |
void play(int row); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
59 |
void updateDescription(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
60 |
void clearTemp(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
61 |
void clearThumbnail(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
62 |
void setProgress(int row, VideoItem* item, float value); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
63 |
VideoItem * itemFromReply(QNetworkReply* reply, int & row); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
64 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
65 |
GameUIConfig * config; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
66 |
QNetworkAccessManager* netManager; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
67 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
68 |
// file list group |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
69 |
QTableWidget *filesTable; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
70 |
QPushButton *btnOpenDir; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
71 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
72 |
// description group |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
73 |
QPushButton *btnPlay, *btnDelete, *btnToYouTube; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
74 |
QLabel *labelDesc; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
75 |
QLabel *labelThumbnail; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
76 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
77 |
// this flag is used to distinguish if cell was changed from code or by user |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
78 |
// (in signal cellChanged) |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
79 |
bool nameChangedFromCode; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
80 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
81 |
int numRecorders, numUploads; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
82 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
83 |
private slots: |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
84 |
void encodingFinished(bool success); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
85 |
void updateProgress(float value); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
86 |
void cellDoubleClicked(int row, int column); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
87 |
void cellChanged(int row, int column); |
7679 | 88 |
void currentCellChanged(); |
7631
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
89 |
void playSelectedFile(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
90 |
void deleteSelectedFiles(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
91 |
void openVideosDirectory(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
92 |
void updateFileList(const QString & path); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
93 |
void uploadToYouTube(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
94 |
void uploadProgress(qint64 bytesSent, qint64 bytesTotal); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
95 |
void uploadFinished(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
96 |
}; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
97 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7531
diff
changeset
|
98 |
#endif // PAGE_VIDEOS_H |