view Platforms/Wasm/WasmPlatformApplicationAdapter.h @ 457:3b4df9925db6 am-touch-events

added support for 'touch' in mouse trackers. This is still a bit hacky and we need to refactor it to make it clean. Thanks to that, Pan and zoom are available together with 2 touches
author Alain Mazy <alain@mazy.be>
date Thu, 24 Jan 2019 16:42:27 +0100
parents be2660b6e40a
children 7105a0bad250
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 HandleMessageFromWeb(std::string& output, const std::string& input);
      virtual void NotifyStatusUpdateFromCppToWeb(const std::string& statusUpdateMessage);
  };
}