blob: 914f77d5e0ebabff80ee2c3b5d7da0334d004a89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/****************************************************************************
**
** Copyright (C) 1992-$THISYEAR$ $TROLLTECH$. All rights reserved.
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef QMLVIEWER_H
#define QMLVIEWER_H
#include <QMenuBar>
#include <QmlTimer>
#include <QTime>
#include <QList>
QT_BEGIN_NAMESPACE
class QFxView;
class PreviewDeviceSkin;
class QFxTestEngine;
class QProcess;
class RecordingDialog;
class QmlViewer : public QWidget
{
Q_OBJECT
public:
QmlViewer(QWidget *parent=0, Qt::WindowFlags flags=0);
void setRecordDither(const QString& s) { record_dither = s; }
void setRecordRate(int fps);
void setRecordFile(const QString&);
void setRecordArgs(const QStringList&);
void setRecording(bool on);
bool isRecording() const { return recordTimer.isRunning(); }
void setAutoRecord(int from, int to);
void setDeviceKeys(bool);
void setNetworkCacheSize(int size);
void addLibraryPath(const QString& lib);
QMenuBar *menuBar() const;
public slots:
void sceneResized(QSize size);
void openQml(const QString& fileName);
void open();
void reload();
void takeSnapShot();
void toggleRecording();
void toggleRecordingWithSelection();
void ffmpegFinished(int code);
void setSkin(const QString& skinDirectory);
protected:
virtual void keyPressEvent(QKeyEvent *);
void createMenu(QMenuBar *menu, QMenu *flatmenu);
private slots:
void setScaleSkin();
void setScaleView();
void autoStartRecording();
void autoStopRecording();
void recordFrame();
void chooseRecordingOptions();
void pickRecordingFile();
private:
void setupProxy();
QString getVideoFileName();
QString currentFileName;
PreviewDeviceSkin *skin;
QSize skinscreensize;
QFxView *canvas;
QmlTimer recordTimer;
QString frame_fmt;
QImage frame;
QList<QImage*> frames;
QProcess* frame_stream;
QmlTimer autoStartTimer;
QmlTimer autoStopTimer;
QString record_dither;
QString record_file;
QSize record_outsize;
QStringList record_args;
int record_rate;
int record_autotime;
bool devicemode;
QAction *recordAction;
QString currentSkin;
bool scaleSkin;
mutable QMenuBar *mb;
RecordingDialog *recdlg;
void senseImageMagick();
void senseFfmpeg();
QWidget *ffmpegHelpWindow;
bool ffmpegAvailable;
bool convertAvailable;
};
QT_END_NAMESPACE
#endif
|