mirror of
https://github.com/overte-org/overte.git
synced 2025-08-13 10:38:34 +02:00
40 lines
879 B
C++
40 lines
879 B
C++
//
|
|
// GVRInterface.h
|
|
// gvr-interface/src
|
|
//
|
|
// Created by Stephen Birarda on 11/18/14.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_GVRInterface_h
|
|
#define hifi_GVRInterface_h
|
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
class RenderingClient;
|
|
|
|
#if defined(qApp)
|
|
#undef qApp
|
|
#endif
|
|
#define qApp (static_cast<GVRInterface*>(QApplication::instance()))
|
|
|
|
class GVRInterface : public QApplication {
|
|
Q_OBJECT
|
|
public:
|
|
GVRInterface(int argc, char* argv[]);
|
|
|
|
RenderingClient* getClient() { return _client; }
|
|
|
|
private slots:
|
|
void handleApplicationStateChange(Qt::ApplicationState state);
|
|
private:
|
|
void resumeOVR();
|
|
void pauseOVR();
|
|
|
|
RenderingClient* _client;
|
|
};
|
|
|
|
#endif // hifi_GVRInterface_h
|