blob: b4117a20d83cb2e2a47717231a2184871b211ad7 (
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
|
/****************************************************************************
**
** 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 <QMainWindow>
#include <QBasicTimer>
#include <QTime>
#include <qfxtestengine.h>
#include <QList>
class QFxView;
class PreviewDeviceSkin;
class QFxTestEngine;
class QmlViewer : public QMainWindow
{
Q_OBJECT
public:
QmlViewer(QFxTestEngine::TestMode = QFxTestEngine::NoTest, const QString &testDir = QString(), QWidget *parent=0, Qt::WindowFlags flags=0);
void createMenuBar();
void setRecordDither(const QString& s) { record_dither = s; }
void setRecordPeriod(int ms);
void setRecordFile(const QString&);
int recordPeriod() const { return record_period; }
void setRecording(bool on);
bool isRecording() const { return recordTimer.isActive(); }
void setAutoRecord(int from, int to);
void setSkin(const QString& skinDirectory);
void setDeviceKeys(bool);
void setCacheEnabled(bool);
public slots:
void sceneResized(QSize size);
void openQml(const QString& fileName);
void open();
void reload();
protected:
virtual void keyPressEvent(QKeyEvent *);
virtual void timerEvent(QTimerEvent *);
virtual void resizeEvent(QResizeEvent *);
private:
QString currentFileName;
PreviewDeviceSkin *skin;
QSize skinscreensize;
QFxView *canvas;
void init(QFxTestEngine::TestMode, const QString &, const QString& fileName);
QBasicTimer recordTimer;
QList<QImage*> frames;
QIODevice* frame_stream;
QBasicTimer autoStartTimer;
QTime autoTimer;
QString record_dither;
QString record_file;
int record_period;
int record_autotime;
bool devicemode;
QFxTestEngine *testEngine;
};
#endif
|