mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-14 19:56:39 +02:00
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
//
|
|
// AndroidHelper.cpp
|
|
// interface/src
|
|
//
|
|
// Created by Gabriel Calero & Cristian Duarte on 3/30/18.
|
|
// Copyright 2018 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
|
|
//
|
|
#include "AndroidHelper.h"
|
|
#include <QDebug>
|
|
#include <AudioClient.h>
|
|
#include "Application.h"
|
|
|
|
#if defined(qApp)
|
|
#undef qApp
|
|
#endif
|
|
#define qApp (static_cast<Application*>(QCoreApplication::instance()))
|
|
|
|
AndroidHelper::AndroidHelper() {
|
|
qRegisterMetaType<QAudio::Mode>("QAudio::Mode");
|
|
}
|
|
|
|
AndroidHelper::~AndroidHelper() {
|
|
}
|
|
|
|
void AndroidHelper::requestActivity(const QString &activityName, const bool backToScene, QList<QString> args) {
|
|
emit androidActivityRequested(activityName, backToScene, args);
|
|
}
|
|
|
|
void AndroidHelper::notifyLoadComplete() {
|
|
emit qtAppLoadComplete();
|
|
}
|
|
|
|
void AndroidHelper::notifyEnterForeground() {
|
|
emit enterForeground();
|
|
}
|
|
|
|
void AndroidHelper::notifyBeforeEnterBackground() {
|
|
emit beforeEnterBackground();
|
|
}
|
|
|
|
void AndroidHelper::notifyEnterBackground() {
|
|
emit enterBackground();
|
|
}
|
|
|
|
void AndroidHelper::performHapticFeedback(int duration) {
|
|
emit hapticFeedbackRequested(duration);
|
|
}
|
|
|
|
void AndroidHelper::showLoginDialog() {
|
|
emit androidActivityRequested("Login", true);
|
|
}
|
|
|
|
void AndroidHelper::processURL(const QString &url) {
|
|
if (qApp->canAcceptURL(url)) {
|
|
qApp->acceptURL(url);
|
|
}
|
|
}
|
|
|
|
void AndroidHelper::notifyHeadsetOn(bool pluggedIn) {
|
|
#if defined (Q_OS_ANDROID)
|
|
auto audioClient = DependencyManager::get<AudioClient>();
|
|
if (audioClient) {
|
|
QMetaObject::invokeMethod(audioClient.data(), "setHeadsetPluggedIn", Q_ARG(bool, pluggedIn));
|
|
}
|
|
#endif
|
|
}
|