// // 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 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 message, SharedNodePointer senderNode); private: bool _subscribed { false }; }; #endif // hifi_EntityScriptServerLogDialog_h