mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-07 00:42:21 +02:00
33 lines
785 B
C++
33 lines
785 B
C++
//
|
|
// DialogsManagerScriptingInterface.h
|
|
// interface/src/scripting
|
|
//
|
|
// Created by Zander Otavka on 7/17/15.
|
|
// 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_DialogsManagerScriptInterface_h
|
|
#define hifi_DialogsManagerScriptInterface_h
|
|
|
|
#include <QObject>
|
|
|
|
class DialogsManagerScriptingInterface : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
DialogsManagerScriptingInterface();
|
|
static DialogsManagerScriptingInterface* getInstance();
|
|
Q_INVOKABLE void showFeed();
|
|
|
|
public slots:
|
|
void showAddressBar();
|
|
void hideAddressBar();
|
|
void showLoginDialog();
|
|
|
|
signals:
|
|
void addressBarShown(bool visible);
|
|
};
|
|
|
|
#endif
|