blob: 87d0ed3e20c490b4364b6790f060716e1147dffa [file] [log] [blame]
// Copyright 2016 The Chromium 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 NGFragment_h
#define NGFragment_h
#include "core/CoreExport.h"
#include "core/layout/ng/ng_physical_fragment.h"
#include "core/layout/ng/ng_writing_mode.h"
#include "platform/LayoutUnit.h"
#include "platform/heap/Handle.h"
namespace blink {
struct NGLogicalSize;
class CORE_EXPORT NGFragment {
STACK_ALLOCATED();
public:
NGWritingMode WritingMode() const {
return static_cast<NGWritingMode>(writing_mode_);
}
// Returns the border-box size.
LayoutUnit InlineSize() const;
LayoutUnit BlockSize() const;
NGLogicalSize Size() const;
// Returns the offset relative to the parent fragment's content-box.
LayoutUnit InlineOffset() const;
LayoutUnit BlockOffset() const;
NGPhysicalFragment::NGFragmentType Type() const;
protected:
NGFragment(NGWritingMode writing_mode,
const NGPhysicalFragment* physical_fragment)
: physical_fragment_(physical_fragment), writing_mode_(writing_mode) {}
const NGPhysicalFragment* physical_fragment_;
unsigned writing_mode_ : 3;
};
} // namespace blink
#endif // NGFragment_h