|
1 /* |
|
2 * Hedgewars, a free turn based strategy game |
|
3 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 * |
|
5 * This program is free software; you can redistribute it and/or modify |
|
6 * it under the terms of the GNU General Public License as published by |
|
7 * the Free Software Foundation; version 2 of the License |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, |
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 * GNU General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU General Public License |
|
15 * along with this program; if not, write to the Free Software |
|
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef PAGE_VIDEOS_H |
|
21 #define PAGE_VIDEOS_H |
|
22 |
|
23 #include <QPushButton> |
|
24 #include <QTableWidget> |
|
25 #include "AbstractPage.h" |
|
26 |
|
27 class GameUIConfig; |
|
28 |
|
29 class PageVideos : public AbstractPage |
|
30 { |
|
31 Q_OBJECT |
|
32 |
|
33 public: |
|
34 PageVideos(QWidget* parent = 0); |
|
35 |
|
36 QComboBox *CBAVFormats; |
|
37 QComboBox *CBVideoCodecs; |
|
38 QComboBox *CBAudioCodecs; |
|
39 QSpinBox *framerateBox; |
|
40 QLineEdit *widthEdit; |
|
41 QLineEdit *heightEdit; |
|
42 QCheckBox *CBUseGameRes; |
|
43 QCheckBox *CBRecordAudio; |
|
44 |
|
45 QString getFormat() |
|
46 { return CBAVFormats->itemData(CBAVFormats->currentIndex()).toString(); } |
|
47 |
|
48 QString getVideoCodec() |
|
49 { return CBVideoCodecs->itemData(CBVideoCodecs->currentIndex()).toString(); } |
|
50 |
|
51 QString getAudioCodec() |
|
52 { return CBAudioCodecs->itemData(CBAudioCodecs->currentIndex()).toString(); } |
|
53 |
|
54 void setDefaultCodecs(); |
|
55 bool tryCodecs(const QString & format, const QString & vcodec, const QString & acodec); |
|
56 |
|
57 GameUIConfig * config; |
|
58 |
|
59 signals: |
|
60 |
|
61 private: |
|
62 QLayout * bodyLayoutDefinition(); |
|
63 QLayout * footerLayoutDefinition(); |
|
64 void connectSignals(); |
|
65 |
|
66 QPushButton *BtnDefaults; |
|
67 QTableWidget *filesTable; |
|
68 |
|
69 private slots: |
|
70 void changeAVFormat(int index); |
|
71 void changeUseGameRes(int state); |
|
72 void changeRecordAudio(int state); |
|
73 void setDefaultOptions(); |
|
74 }; |
|
75 |
|
76 #endif // PAGE_VIDEOS_H |