forked from qt-creator/qt-creator
28 lines
592 B
C++
28 lines
592 B
C++
#ifndef QMLAPPLICATIONVIEWER_H
|
|
#define QMLAPPLICATIONVIEWER_H
|
|
|
|
#include <QtDeclarative/QDeclarativeView>
|
|
|
|
class QmlApplicationViewer : public QDeclarativeView
|
|
{
|
|
public:
|
|
enum Orientation {
|
|
LockPortrait,
|
|
LockLandscape,
|
|
Auto
|
|
};
|
|
|
|
QmlApplicationViewer(QWidget *parent = 0);
|
|
virtual ~QmlApplicationViewer();
|
|
|
|
void setMainQmlFile(const QString &file);
|
|
void addImportPath(const QString &path);
|
|
void setOrientation(Orientation orientation);
|
|
void show();
|
|
|
|
private:
|
|
class QmlApplicationViewerPrivate *m_d;
|
|
};
|
|
|
|
#endif // QMLAPPLICATIONVIEWER_H
|