mirror of
https://github.com/overte-org/overte.git
synced 2025-07-11 18:18:39 +02:00
37 lines
956 B
C++
37 lines
956 B
C++
//
|
|
// EntityScriptServerLogDialog.h
|
|
// interface/src/ui
|
|
//
|
|
// Created by Clement Brisset on 1/31/17.
|
|
// Copyright 2017 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_EntityScriptServerLogDialog_h
|
|
#define hifi_EntityScriptServerLogDialog_h
|
|
|
|
#include "BaseLogDialog.h"
|
|
|
|
#include <NodeList.h>
|
|
|
|
class EntityScriptServerLogDialog : public BaseLogDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
EntityScriptServerLogDialog(QWidget* parent = nullptr);
|
|
~EntityScriptServerLogDialog();
|
|
|
|
protected:
|
|
QString getCurrentLog() override { return QString(); };
|
|
|
|
private slots:
|
|
void enableToEntityServerScriptLog(bool enable);
|
|
void handleEntityServerScriptLogPacket(QSharedPointer<ReceivedMessage> message, SharedNodePointer senderNode);
|
|
|
|
private:
|
|
bool _subscribed { false };
|
|
};
|
|
|
|
#endif // hifi_EntityScriptServerLogDialog_h
|