mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2d8fe89784
Summary: This diff flattens the hierarchy of Text C++ files. This is required to integrate Text into RN OSS changelog: [internal] internal Reviewed By: JoshuaGross Differential Revision: D23173556 fbshipit-source-id: ce90000cae147460aa4ddad55b7c90369fa734a2
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/renderer/attributedstring/AttributedString.h>
|
|
#include <react/renderer/attributedstring/ParagraphAttributes.h>
|
|
#include <react/renderer/textlayoutmanager/TextLayoutManager.h>
|
|
|
|
#ifdef ANDROID
|
|
#include <folly/dynamic.h>
|
|
#endif
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* State for <Paragraph> component.
|
|
* Represents what to render and how to render.
|
|
*/
|
|
class ParagraphState final {
|
|
public:
|
|
/*
|
|
* All content of <Paragraph> component represented as an `AttributedString`.
|
|
*/
|
|
AttributedString attributedString;
|
|
|
|
/*
|
|
* Represents all visual attributes of a paragraph of text represented as
|
|
* a ParagraphAttributes.
|
|
*/
|
|
ParagraphAttributes paragraphAttributes;
|
|
|
|
/*
|
|
* `TextLayoutManager` provides a connection to platform-specific
|
|
* text rendering infrastructure which is capable to render the
|
|
* `AttributedString`.
|
|
*/
|
|
SharedTextLayoutManager layoutManager;
|
|
|
|
#ifdef ANDROID
|
|
ParagraphState(
|
|
AttributedString const &attributedString,
|
|
ParagraphAttributes const ¶graphAttributes,
|
|
SharedTextLayoutManager const &layoutManager)
|
|
: attributedString(attributedString),
|
|
paragraphAttributes(paragraphAttributes),
|
|
layoutManager(layoutManager) {}
|
|
ParagraphState() = default;
|
|
ParagraphState(
|
|
ParagraphState const &previousState,
|
|
folly::dynamic const &data) {
|
|
assert(false && "Not supported");
|
|
};
|
|
folly::dynamic getDynamic() const;
|
|
#endif
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|