mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-21 14:40:43 +02:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
//
|
|
// DesktopScriptingInterface.h
|
|
// interface/src/scripting
|
|
//
|
|
// Created by David Rowe on 25 Aug 2015.
|
|
// Copyright 2015 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 "DesktopScriptingInterface.h"
|
|
|
|
#include <QWindow>
|
|
#include <QScreen>
|
|
|
|
#include "Application.h"
|
|
#include "MainWindow.h"
|
|
#include <display-plugins/CompositorHelper.h>
|
|
#include <DependencyManager.h>
|
|
#include <OffscreenUi.h>
|
|
|
|
int DesktopScriptingInterface::getWidth() {
|
|
QSize size = qApp->getWindow()->windowHandle()->screen()->virtualSize();
|
|
return size.width();
|
|
}
|
|
int DesktopScriptingInterface::getHeight() {
|
|
QSize size = qApp->getWindow()->windowHandle()->screen()->virtualSize();
|
|
return size.height();
|
|
}
|
|
|
|
void DesktopScriptingInterface::setHUDAlpha(float alpha) {
|
|
qApp->getApplicationCompositor().setAlpha(alpha);
|
|
}
|
|
|
|
void DesktopScriptingInterface::show(const QString& path, const QString& title) {
|
|
if (QThread::currentThread() != thread()) {
|
|
QMetaObject::invokeMethod(this, "show", Qt::QueuedConnection, Q_ARG(QString, path), Q_ARG(QString, title));
|
|
return;
|
|
}
|
|
DependencyManager::get<OffscreenUi>()->show(path, title);
|
|
}
|
|
|