mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
29 lines
670 B
C++
29 lines
670 B
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_LIB_UI_TEXT_TEXT_BOX_H_
|
|
#define FLUTTER_LIB_UI_TEXT_TEXT_BOX_H_
|
|
|
|
#include "third_party/dart/runtime/include/dart_api.h"
|
|
#include "third_party/skia/include/core/SkRect.h"
|
|
#include "third_party/tonic/converter/dart_converter.h"
|
|
|
|
namespace flutter {
|
|
|
|
enum class TextDirection {
|
|
rtl,
|
|
ltr,
|
|
};
|
|
|
|
struct TextBox {
|
|
SkRect rect;
|
|
TextDirection direction;
|
|
|
|
TextBox(SkRect r, TextDirection d) : rect(r), direction(d) {}
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_LIB_UI_TEXT_TEXT_BOX_H_
|