mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-17 12:20:24 +02:00
60 lines
1.9 KiB
C++
60 lines
1.9 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
|
|
//
|
|
|
|
#ifndef hifi_DesktopScriptingInterface_h
|
|
#define hifi_DesktopScriptingInterface_h
|
|
|
|
#include <QObject>
|
|
#include <QtScript/QScriptValue>
|
|
|
|
#include <DependencyManager.h>
|
|
|
|
#include "InteractiveWindow.h"
|
|
|
|
/**jsdoc
|
|
* @namespace Desktop
|
|
*
|
|
* @hifi-interface
|
|
* @hifi-client-entity
|
|
*
|
|
* @property {number} width
|
|
* @property {number} height
|
|
* @property {number} ALWAYS_ON_TOP - InteractiveWindow flag for always showing a window on top
|
|
* @property {number} CLOSE_BUTTON_HIDES - InteractiveWindow flag for hiding the window instead of closing on window close by user
|
|
*/
|
|
class DesktopScriptingInterface : public QObject, public Dependency {
|
|
Q_OBJECT
|
|
Q_PROPERTY(int width READ getWidth) // Physical width of screen(s) including task bars and system menus
|
|
Q_PROPERTY(int height READ getHeight) // Physical height of screen(s) including task bars and system menus
|
|
|
|
Q_PROPERTY(QVariantMap PresentationMode READ getPresentationMode CONSTANT FINAL)
|
|
Q_PROPERTY(int ALWAYS_ON_TOP READ flagAlwaysOnTop CONSTANT FINAL)
|
|
Q_PROPERTY(int CLOSE_BUTTON_HIDES READ flagCloseButtonHides CONSTANT FINAL)
|
|
|
|
public:
|
|
Q_INVOKABLE void setHUDAlpha(float alpha);
|
|
Q_INVOKABLE void show(const QString& path, const QString& title);
|
|
|
|
Q_INVOKABLE InteractiveWindowPointer createWindow(const QString& sourceUrl, const QVariantMap& properties = QVariantMap());
|
|
|
|
int getWidth();
|
|
int getHeight();
|
|
|
|
|
|
private:
|
|
static int flagAlwaysOnTop() { return AlwaysOnTop; }
|
|
static int flagCloseButtonHides() { return CloseButtonHides; }
|
|
|
|
Q_INVOKABLE static QVariantMap getPresentationMode();
|
|
};
|
|
|
|
|
|
#endif // hifi_DesktopScriptingInterface_h
|