Symbol: ParagraphLayout
src/apps/haikudepot/textview/ParagraphLayout.cpp
1000
ParagraphLayout::_AppendTextSpans(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
165
ParagraphLayout::ParagraphLayout()
src/apps/haikudepot/textview/ParagraphLayout.cpp
179
ParagraphLayout::ParagraphLayout(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
195
ParagraphLayout::ParagraphLayout(const ParagraphLayout& other)
src/apps/haikudepot/textview/ParagraphLayout.cpp
209
ParagraphLayout::~ParagraphLayout()
src/apps/haikudepot/textview/ParagraphLayout.cpp
215
ParagraphLayout::SetParagraph(const Paragraph& paragraph)
src/apps/haikudepot/textview/ParagraphLayout.cpp
228
ParagraphLayout::SetWidth(float width)
src/apps/haikudepot/textview/ParagraphLayout.cpp
238
ParagraphLayout::Height()
src/apps/haikudepot/textview/ParagraphLayout.cpp
254
ParagraphLayout::Draw(BView* view, const BPoint& offset)
src/apps/haikudepot/textview/ParagraphLayout.cpp
277
ParagraphLayout::CountGlyphs() const
src/apps/haikudepot/textview/ParagraphLayout.cpp
284
ParagraphLayout::CountLines()
src/apps/haikudepot/textview/ParagraphLayout.cpp
292
ParagraphLayout::LineIndexForOffset(int32 textOffset)
src/apps/haikudepot/textview/ParagraphLayout.cpp
313
ParagraphLayout::FirstOffsetOnLine(int32 lineIndex)
src/apps/haikudepot/textview/ParagraphLayout.cpp
328
ParagraphLayout::LastOffsetOnLine(int32 lineIndex)
src/apps/haikudepot/textview/ParagraphLayout.cpp
343
ParagraphLayout::GetLineBounds(int32 lineIndex, float& x1, float& y1,
src/apps/haikudepot/textview/ParagraphLayout.cpp
379
ParagraphLayout::GetTextBounds(int32 textOffset, float& x1, float& y1,
src/apps/haikudepot/textview/ParagraphLayout.cpp
415
ParagraphLayout::TextOffsetAt(float x, float y, bool& rightOfCenter)
src/apps/haikudepot/textview/ParagraphLayout.cpp
487
ParagraphLayout::_Init()
src/apps/haikudepot/textview/ParagraphLayout.cpp
504
ParagraphLayout::_ValidateLayout()
src/apps/haikudepot/textview/ParagraphLayout.cpp
514
ParagraphLayout::_Layout()
src/apps/haikudepot/textview/ParagraphLayout.cpp
645
ParagraphLayout::_ApplyAlignment()
src/apps/haikudepot/textview/ParagraphLayout.cpp
790
ParagraphLayout::_AppendGlyphInfos(const TextSpan& span)
src/apps/haikudepot/textview/ParagraphLayout.cpp
823
ParagraphLayout::_AppendGlyphInfo(uint32 charCode, float width,
src/apps/haikudepot/textview/ParagraphLayout.cpp
848
ParagraphLayout::_FinalizeLine(int lineStart, int lineEnd, int lineIndex,
src/apps/haikudepot/textview/ParagraphLayout.cpp
907
ParagraphLayout::_IncludeStyleInLine(LineInfo& line,
src/apps/haikudepot/textview/ParagraphLayout.cpp
928
ParagraphLayout::_DrawLine(BView* view, const BPoint& offset,
src/apps/haikudepot/textview/ParagraphLayout.cpp
942
ParagraphLayout::_DrawSpan(BView* view, BPoint offset,
src/apps/haikudepot/textview/ParagraphLayout.cpp
975
ParagraphLayout::_GetEmptyLayoutBounds(float& x1, float& y1, float& x2,
src/apps/haikudepot/textview/ParagraphLayout.h
173
class ParagraphLayout : public BReferenceable {
src/apps/haikudepot/textview/ParagraphLayout.h
175
ParagraphLayout();
src/apps/haikudepot/textview/ParagraphLayout.h
176
ParagraphLayout(const Paragraph& paragraph);
src/apps/haikudepot/textview/ParagraphLayout.h
177
ParagraphLayout(const ParagraphLayout& other);
src/apps/haikudepot/textview/ParagraphLayout.h
178
virtual ~ParagraphLayout();
src/apps/haikudepot/textview/ParagraphLayout.h
253
typedef BReference<ParagraphLayout> ParagraphLayoutRef;
src/apps/haikudepot/textview/TextDocumentLayout.cpp
134
ParagraphLayoutRef layout(new(std::nothrow) ParagraphLayout(
src/apps/haikudepot/textview/TextDocumentLayout.cpp
360
ParagraphLayoutRef layout(new(std::nothrow) ParagraphLayout(paragraph),
src/apps/haikudepot/textview/TextView.cpp
84
ParagraphLayout layout(fTextLayout);
src/apps/haikudepot/textview/TextView.h
40
ParagraphLayout fTextLayout;