Summary: X-link: https://github.com/facebook/react-native/pull/38304 Pull Request resolved: https://github.com/facebook/yoga/pull/1326 For better readability Reviewed By: christophpurrer Differential Revision: D47384926 fbshipit-source-id: 2f60d50a185331b3624d45d1fc45f98d504b3034
109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and 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 <yoga/Yoga.h>
|
|
|
|
#include "BitUtils.h"
|
|
#include "Yoga-internal.h"
|
|
|
|
namespace facebook::yoga {
|
|
|
|
// Whether moving a node from config "a" to config "b" should dirty previously
|
|
// calculated layout results.
|
|
bool configUpdateInvalidatesLayout(YGConfigRef a, YGConfigRef b);
|
|
|
|
// Internal variants of log functions, currently used only by JNI bindings.
|
|
// TODO: Reconcile this with the public API
|
|
using LogWithContextFn = int (*)(
|
|
YGConfigRef config,
|
|
YGNodeRef node,
|
|
YGLogLevel level,
|
|
void* context,
|
|
const char* format,
|
|
va_list args);
|
|
using CloneWithContextFn = YGNodeRef (*)(
|
|
YGNodeRef node,
|
|
YGNodeRef owner,
|
|
int childIndex,
|
|
void* cloneContext);
|
|
|
|
using ExperimentalFeatureSet =
|
|
facebook::yoga::detail::EnumBitset<YGExperimentalFeature>;
|
|
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
// Packed structure of <32-bit options to miminize size per node.
|
|
struct YGConfigFlags {
|
|
bool useWebDefaults : 1;
|
|
bool printTree : 1;
|
|
bool cloneNodeUsesContext : 1;
|
|
bool loggerUsesContext : 1;
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
} // namespace facebook::yoga
|
|
|
|
struct YOGA_EXPORT YGConfig {
|
|
YGConfig(YGLogger logger);
|
|
|
|
void setUseWebDefaults(bool useWebDefaults);
|
|
bool useWebDefaults() const;
|
|
|
|
void setShouldPrintTree(bool printTree);
|
|
bool shouldPrintTree() const;
|
|
|
|
void setExperimentalFeatureEnabled(
|
|
YGExperimentalFeature feature,
|
|
bool enabled);
|
|
bool isExperimentalFeatureEnabled(YGExperimentalFeature feature) const;
|
|
facebook::yoga::ExperimentalFeatureSet getEnabledExperiments() const;
|
|
|
|
void setErrata(YGErrata errata);
|
|
void addErrata(YGErrata errata);
|
|
void removeErrata(YGErrata errata);
|
|
YGErrata getErrata() const;
|
|
bool hasErrata(YGErrata errata) const;
|
|
|
|
void setPointScaleFactor(float pointScaleFactor);
|
|
float getPointScaleFactor() const;
|
|
|
|
void setContext(void* context);
|
|
void* getContext() const;
|
|
|
|
void setLogger(YGLogger logger);
|
|
void setLogger(facebook::yoga::LogWithContextFn logger);
|
|
void setLogger(std::nullptr_t);
|
|
void log(YGConfig*, YGNode*, YGLogLevel, void*, const char*, va_list) const;
|
|
|
|
void setCloneNodeCallback(YGCloneNodeFunc cloneNode);
|
|
void setCloneNodeCallback(facebook::yoga::CloneWithContextFn cloneNode);
|
|
void setCloneNodeCallback(std::nullptr_t);
|
|
YGNodeRef cloneNode(
|
|
YGNodeRef node,
|
|
YGNodeRef owner,
|
|
int childIndex,
|
|
void* cloneContext) const;
|
|
|
|
private:
|
|
union {
|
|
facebook::yoga::CloneWithContextFn withContext;
|
|
YGCloneNodeFunc noContext;
|
|
} cloneNodeCallback_;
|
|
union {
|
|
facebook::yoga::LogWithContextFn withContext;
|
|
YGLogger noContext;
|
|
} logger_;
|
|
|
|
facebook::yoga::YGConfigFlags flags_{};
|
|
facebook::yoga::ExperimentalFeatureSet experimentalFeatures_{};
|
|
YGErrata errata_ = YGErrataNone;
|
|
float pointScaleFactor_ = 1.0f;
|
|
void* context_ = nullptr;
|
|
};
|