Mercurial > hg > orthanc-stone
view Platforms/Wasm/WasmPlatformApplicationAdapter.h @ 656:002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
might also be needed on macos and GNU/Linux ?) + fixed text info overlay pos
for angle measure (this requires the app to be aware of the compositor)
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 14 May 2019 16:54:13 +0200 |
parents | 79bb0a02d1cc |
children |
line wrap: on
line source
#pragma once #include <string> #include <Framework/Messages/IObserver.h> #include <Applications/IStoneApplication.h> namespace OrthancStone { class WasmPlatformApplicationAdapter : public IObserver { IStoneApplication& application_; public: WasmPlatformApplicationAdapter(MessageBroker& broker, IStoneApplication& application); virtual void HandleSerializedMessageFromWeb(std::string& output, const std::string& input); virtual void NotifyStatusUpdateFromCppToWebWithString(const std::string& statusUpdateMessage); virtual void NotifyStatusUpdateFromCppToWebWithSerializedMessage(const std::string& statusUpdateMessage); }; }