AlexaClientSDK
3.0.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
|
#include <CaptionPresenterInterface.h>
Public Member Functions | |
virtual | ~CaptionPresenterInterface ()=default |
virtual void | onCaptionActivity (const captions::CaptionFrame &captionFrame, avsCommon::avs::FocusState activityType)=0 |
virtual std::pair< bool, int > | getWrapIndex (const captions::CaptionLine &captionLine)=0 |
An interface to measure lines of styled text and handle requests to show or hide a CaptionFrame
.
|
virtualdefault |
Destructor.
|
pure virtual |
Determine the display width of the line of text as it would be displayed on a screen.
This function should apply the styles to the text present in the CaptionLine
and measure the width as it would be displayed on the screen. If the text is too wide to fit on the display, then return true, along with the character index in captionLine of where the text becomes too wide to fit. This function should also return quickly, as it is potentially called many times to find the correct text wrap points.
captionLine | The line of caption text with the styles that apply to that text. application's display and needs to wrap to a new line. |
Implemented in alexaClientSDK::sampleApp::CaptionPresenter, and alexaClientSDK::sampleApplications::ipcServerSampleApp::SmartScreenCaptionPresenter.
|
pure virtual |
Handles a request to show or hide a CaptionFrame
.
captionFrame | The CaptionFrame which is to be acted upon based on the action described by activityType. |
activityType | The FocusState to indicate whether to bring the caption to the foreground (show), send them to the background (hide). |
Implemented in alexaClientSDK::sampleApp::CaptionPresenter, and alexaClientSDK::sampleApplications::ipcServerSampleApp::SmartScreenCaptionPresenter.
AlexaClientSDK 3.0.0 - Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0