Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: Source/core/layout/api/LineLayoutItem.h

Issue 1149953007: Create LineLayout api (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed source of crash. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/layout/api/LineLayoutInline.cpp ('k') | Source/core/layout/api/LineLayoutItem.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef LineLayoutItem_h
6 #define LineLayoutItem_h
7
8 #include "platform/LayoutUnit.h"
9
10 namespace blink {
11
12 class ComputedStyle;
13 class Document;
14 class LayoutObject;
15
16 class LineLayoutItem {
17 public:
18 LineLayoutItem(LayoutObject*);
19 LineLayoutItem(const LineLayoutItem& item) : m_layoutObject(item.m_layoutObj ect) { }
20 LineLayoutItem() : m_layoutObject(0) { }
21
22 // TODO: add operator= ?
23
24 // TODO(leviw): re-enable when we don't have the LayoutObject*() operator.
25 // This conversion operator allows implicit conversion to bool but not to
26 // other integer types.
27 // typedef void* UnspecifiedBoolType;
28 // operator UnspecifiedBoolType() const { return m_layoutObject; }
29
30 // TODO(leviw): Remove this. It's only here to make things compile before
31 // switching all of core/layout/line to using the API.
32 operator LayoutObject*() const { return m_layoutObject; }
33
34 LineLayoutItem* operator->() { return this; }
35
36 LineLayoutItem parent() const;
37 LineLayoutItem nextSibling() const;
38 LineLayoutItem previousSibling() const;
39 LineLayoutItem slowFirstChild() const;
40 LineLayoutItem slowLastChild() const;
41
42 const ComputedStyle* style() const;
43 const ComputedStyle& styleRef() const;
44
45 Document& document() const;
46
47 bool preservesNewline() const;
48
49 unsigned length() const;
50
51 bool isFloatingOrOutOfFlowPositioned() const;
52 bool isFloating() const;
53 bool isOutOfFlowPositioned() const;
54 bool isBR() const;
55 bool isHorizontalWritingMode() const;
56 bool isImage() const;
57 bool isLayoutInline() const;
58 bool isListMarker() const;
59 bool isReplaced() const;
60 bool isRubyRun() const;
61 bool isSVGInlineText() const;
62 bool isTableCell() const;
63 bool isText() const;
64
65 protected:
66 LayoutObject* layoutObject() { return m_layoutObject; }
67 const LayoutObject* layoutObject() const { return m_layoutObject; }
68
69 friend class LineLayoutBlockFlow; // for layoutObject
70 friend class LineLayoutBox;
71 friend class LineLayoutInline;
72 friend class LineLayoutText;
73
74 private:
75 LayoutObject* m_layoutObject;
76 };
77
78 } // namespace blink
79
80 #endif // LineLayoutItem_h
OLDNEW
« no previous file with comments | « Source/core/layout/api/LineLayoutInline.cpp ('k') | Source/core/layout/api/LineLayoutItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698