OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. |
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
7 * Copyright (C) 2013 Google Inc. All rights reserved. | 7 * Copyright (C) 2013 Google Inc. All rights reserved. |
8 * | 8 * |
9 * Redistribution and use in source and binary forms, with or without | 9 * Redistribution and use in source and binary forms, with or without |
10 * modification, are permitted provided that the following conditions are | 10 * modification, are permitted provided that the following conditions are |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 void checkFloatsInCleanLine(RootInlineBox*, Vector<FloatWithRect>&, size_t&
floatIndex, bool& encounteredNewFloat, bool& dirtiedByFloat); | 487 void checkFloatsInCleanLine(RootInlineBox*, Vector<FloatWithRect>&, size_t&
floatIndex, bool& encounteredNewFloat, bool& dirtiedByFloat); |
488 RootInlineBox* determineStartPosition(LineLayoutState&, InlineBidiResolver&)
; | 488 RootInlineBox* determineStartPosition(LineLayoutState&, InlineBidiResolver&)
; |
489 void determineEndPosition(LineLayoutState&, RootInlineBox* startBox, InlineI
terator& cleanLineStart, BidiStatus& cleanLineBidiStatus); | 489 void determineEndPosition(LineLayoutState&, RootInlineBox* startBox, InlineI
terator& cleanLineStart, BidiStatus& cleanLineBidiStatus); |
490 bool checkPaginationAndFloatsAtEndLine(LineLayoutState&); | 490 bool checkPaginationAndFloatsAtEndLine(LineLayoutState&); |
491 bool matchedEndLine(LineLayoutState&, const InlineBidiResolver&, const Inlin
eIterator& endLineStart, const BidiStatus& endLineStatus); | 491 bool matchedEndLine(LineLayoutState&, const InlineBidiResolver&, const Inlin
eIterator& endLineStart, const BidiStatus& endLineStatus); |
492 void deleteEllipsisLineBoxes(); | 492 void deleteEllipsisLineBoxes(); |
493 void checkLinesForTextOverflow(); | 493 void checkLinesForTextOverflow(); |
494 // Positions new floats and also adjust all floats encountered on the line i
f any of them | 494 // Positions new floats and also adjust all floats encountered on the line i
f any of them |
495 // have to move to the next page/column. | 495 // have to move to the next page/column. |
496 bool positionNewFloatOnLine(FloatingObject* newFloat, FloatingObject* lastFl
oatFromPreviousLine, LineInfo&, LineWidth&); | 496 bool positionNewFloatOnLine(FloatingObject* newFloat, FloatingObject* lastFl
oatFromPreviousLine, LineInfo&, LineWidth&); |
497 | 497 void positionDialog(); |
498 | 498 |
499 // END METHODS DEFINED IN RenderBlockLineLayout | 499 // END METHODS DEFINED IN RenderBlockLineLayout |
500 | 500 |
501 }; | 501 }; |
502 | 502 |
503 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlockFlow, isRenderBlockFlow()); | 503 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlockFlow, isRenderBlockFlow()); |
504 | 504 |
505 } // namespace blink | 505 } // namespace blink |
506 | 506 |
507 #endif // RenderBlockFlow_h | 507 #endif // RenderBlockFlow_h |
OLD | NEW |