blob: e89deeb784b195fc93a0793aa1a445b17e7ca4e3 [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 {
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;
// Returns the total size, including the contents outside of the border-box.
LayoutUnit InlineOverflow() const;
LayoutUnit BlockOverflow() const;
// Returns the offset relative to the parent fragement's content-box.
LayoutUnit InlineOffset() const;
LayoutUnit BlockOffset() const;
NGPhysicalFragment::NGFragmentType Type() const;
protected:
NGFragment(NGWritingMode writing_mode, NGPhysicalFragment* physical_fragment)
: physical_fragment_(physical_fragment), writing_mode_(writing_mode) {}
NGPhysicalFragment* physical_fragment_;
unsigned writing_mode_ : 3;
};
} // namespace blink
#endif // NGFragment_h