Symbol: ParagraphStyle
src/apps/haikudepot/textview/MarkupParser.cpp
37
const ParagraphStyle& paragraphStyle)
src/apps/haikudepot/textview/MarkupParser.cpp
59
const ParagraphStyle& paragraphStyle)
src/apps/haikudepot/textview/MarkupParser.h
17
const ParagraphStyle& paragraphStyle);
src/apps/haikudepot/textview/MarkupParser.h
21
const ParagraphStyle& paragraphStyle);
src/apps/haikudepot/textview/MarkupParser.h
25
const ParagraphStyle& HeadingParagraphStyle() const
src/apps/haikudepot/textview/MarkupParser.h
30
const ParagraphStyle& NormalParagraphStyle() const
src/apps/haikudepot/textview/MarkupParser.h
53
ParagraphStyle fParagraphStyle;
src/apps/haikudepot/textview/MarkupParser.h
54
ParagraphStyle fHeadingParagraphStyle;
src/apps/haikudepot/textview/MarkupParser.h
55
ParagraphStyle fBulletStyle;
src/apps/haikudepot/textview/MarkupParser.h
58
const ParagraphStyle* fCurrentParagraphStyle;
src/apps/haikudepot/textview/Paragraph.cpp
21
Paragraph::Paragraph(const ParagraphStyle& style)
src/apps/haikudepot/textview/Paragraph.cpp
83
Paragraph::SetStyle(const ParagraphStyle& style)
src/apps/haikudepot/textview/Paragraph.h
19
Paragraph(const ParagraphStyle& style);
src/apps/haikudepot/textview/Paragraph.h
26
void SetStyle(const ParagraphStyle& style);
src/apps/haikudepot/textview/Paragraph.h
27
inline const ParagraphStyle& Style() const
src/apps/haikudepot/textview/Paragraph.h
53
ParagraphStyle fStyle;
src/apps/haikudepot/textview/ParagraphLayout.h
182
const ParagraphStyle& Style() const
src/apps/haikudepot/textview/ParagraphLayout.h
242
ParagraphStyle fParagraphStyle;
src/apps/haikudepot/textview/ParagraphStyle.cpp
10
ParagraphStyle::ParagraphStyle()
src/apps/haikudepot/textview/ParagraphStyle.cpp
109
ParagraphStyle::FirstLineInset() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
116
ParagraphStyle::SetLineInset(float inset)
src/apps/haikudepot/textview/ParagraphStyle.cpp
128
ParagraphStyle::LineInset() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
135
ParagraphStyle::SetLineSpacing(float spacing)
src/apps/haikudepot/textview/ParagraphStyle.cpp
147
ParagraphStyle::LineSpacing() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
154
ParagraphStyle::SetSpacingTop(float spacing)
src/apps/haikudepot/textview/ParagraphStyle.cpp
166
ParagraphStyle::SpacingTop() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
17
ParagraphStyle::ParagraphStyle(const ParagraphStyle& other)
src/apps/haikudepot/textview/ParagraphStyle.cpp
173
ParagraphStyle::SetSpacingBottom(float spacing)
src/apps/haikudepot/textview/ParagraphStyle.cpp
185
ParagraphStyle::SpacingBottom() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
192
ParagraphStyle::SetBullet(const ::Bullet& bullet)
src/apps/haikudepot/textview/ParagraphStyle.cpp
204
ParagraphStyle::Bullet() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
24
ParagraphStyle&
src/apps/haikudepot/textview/ParagraphStyle.cpp
25
ParagraphStyle::operator=(const ParagraphStyle& other)
src/apps/haikudepot/textview/ParagraphStyle.cpp
36
ParagraphStyle::operator==(const ParagraphStyle& other) const
src/apps/haikudepot/textview/ParagraphStyle.cpp
52
ParagraphStyle::operator!=(const ParagraphStyle& other) const
src/apps/haikudepot/textview/ParagraphStyle.cpp
59
ParagraphStyle::SetAlignment(::Alignment alignment)
src/apps/haikudepot/textview/ParagraphStyle.cpp
71
ParagraphStyle::Alignment() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
78
ParagraphStyle::SetJustify(bool justify)
src/apps/haikudepot/textview/ParagraphStyle.cpp
90
ParagraphStyle::Justify() const
src/apps/haikudepot/textview/ParagraphStyle.cpp
97
ParagraphStyle::SetFirstLineInset(float inset)
src/apps/haikudepot/textview/ParagraphStyle.h
12
class ParagraphStyle {
src/apps/haikudepot/textview/ParagraphStyle.h
14
ParagraphStyle();
src/apps/haikudepot/textview/ParagraphStyle.h
15
ParagraphStyle(const ParagraphStyle& other);
src/apps/haikudepot/textview/ParagraphStyle.h
17
ParagraphStyle& operator=(const ParagraphStyle& other);
src/apps/haikudepot/textview/ParagraphStyle.h
18
bool operator==(const ParagraphStyle& other) const;
src/apps/haikudepot/textview/ParagraphStyle.h
19
bool operator!=(const ParagraphStyle& other) const;
src/apps/haikudepot/textview/TextDocument.cpp
130
CharacterStyle characterStyle, ParagraphStyle paragraphStyle)
src/apps/haikudepot/textview/TextDocument.cpp
231
const ParagraphStyle&
src/apps/haikudepot/textview/TextDocument.cpp
25
ParagraphStyle paragraphStyle)
src/apps/haikudepot/textview/TextDocument.cpp
436
CharacterStyle characterStyle, ParagraphStyle paragraphStyle)
src/apps/haikudepot/textview/TextDocument.cpp
93
CharacterStyle characterStyle, ParagraphStyle paragraphStyle)
src/apps/haikudepot/textview/TextDocument.h
27
ParagraphStyle paragraphStyle);
src/apps/haikudepot/textview/TextDocument.h
40
ParagraphStyle paragraphStyle);
src/apps/haikudepot/textview/TextDocument.h
52
ParagraphStyle paragraphStyle);
src/apps/haikudepot/textview/TextDocument.h
58
const ParagraphStyle& ParagraphStyleAt(int32 textOffset) const;
src/apps/haikudepot/textview/TextDocument.h
88
ParagraphStyle paragraphStyle);
src/apps/haikudepot/textview/TextDocumentLayout.cpp
387
const ParagraphStyle& style = info.layout->Style();
src/apps/haikudepot/textview/TextView.cpp
115
TextView::SetParagraphStyle(const ::ParagraphStyle& style)
src/apps/haikudepot/textview/TextView.cpp
17
::ParagraphStyle style;
src/apps/haikudepot/textview/TextView.h
35
void SetParagraphStyle(const ::ParagraphStyle& style);
src/apps/haikudepot/textview/TextView.h
36
const ::ParagraphStyle& ParagraphStyle() const
src/apps/haikudepot/ui/FeaturedPackagesView.cpp
1087
ParagraphStyle paragraphStyle;
src/apps/haikudepot/ui/PackageInfoView.cpp
940
ParagraphStyle paragraphStyle(textView->ParagraphStyle());
src/apps/haikudepot/ui_generic/MarkupTextView.cpp
20
ParagraphStyle paragraphStyle;
src/apps/haikudepot/ui_generic/MarkupTextView.cpp
65
ParagraphStyle paragraphStyle;
src/tests/apps/haikudepot/TextDocumentTest.cpp
51
ParagraphStyle paragraphStyle;