Searched refs:leftSubIndent (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/richtext/
H A Drichtextctrl.h389 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0) { return GetBuffer().BeginLeftIndent(leftIndent, leftSubIndent); }
413 bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD) argument
414 { return GetBuffer().BeginNumberedBullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle); }
420 bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL) argument
421 { return GetBuffer().BeginSymbolBullet(symbol, leftIndent, leftSubIndent, bulletStyle); }
427 bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD) argument
428 { return GetBuffer().BeginStandardBullet(bulletName, leftIndent, leftSubIndent, bulletStyle); }
H A Drichtextstyles.h214 void SetAttributes(int i, int leftIndent, int leftSubIndent, int bulletStyle, const wxString& bulletSymbol = wxEmptyString);
H A Drichtextbuffer.h1803 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0);
1827 bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD);
1833 bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL);
1839 bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Drichtextbuffer.tex116 \func{bool}{BeginLeftIndent}{\param{int }{leftIndent}, \param{int }{leftSubIndent = 0}}
118 Begin using {\it leftIndent} for the left indent, and optionally {\it leftSubIndent} for
150 \func{bool}{BeginNumberedBullet}{\param{int }{bulletNumber}, \param{int }{leftIndent}, \param{int }{leftSubIndent}, \param{int }{bulletStyle = wxTEXT\_ATTR\_BULLET\_STYLE\_ARABIC|wxTEXT\_ATTR\_BULLET\_STYLE\_PERIOD}}
157 {\it leftIndent} and {\it leftSubIndent} are values in tenths of a millimetre.
184 at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the
185 left of the actual paragraph is leftSubIndent.
223 \func{bool}{BeginStandardBullet}{\param{const wxString\&}{ bulletName}, \param{int }{leftIndent}, \param{int }{leftSubIndent}, \param{int }{bulletStyle = wxTEXT\_ATTR\_BULLET\_STYLE\_STANDARD}}
230 \func{bool}{BeginSymbolBullet}{\param{wxChar }{symbol}, \param{int }{leftIndent}, \param{int }{leftSubIndent}, \param{int }{bulletStyle = wxTEXT\_ATTR\_BULLET\_STYLE\_SYMBOL}}
H A Drichtextliststyledefinition.tex89 \func{void}{SetLevelAttributes}{\param{int }{level}, \param{int}{ leftIndent}, \param{int}{ leftSubIndent}, \param{int}{ bulletStyle}, \param{const wxString\&}{ bulletSymbol = wxEmptyString}}
H A Drichtextctrl.tex161 \func{bool}{BeginLeftIndent}{\param{int }{leftIndent}, \param{int }{leftSubIndent = 0}}
172 at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the
173 left of the actual paragraph is leftSubIndent.
199 \func{bool}{BeginNumberedBullet}{\param{int }{bulletNumber}, \param{int }{leftIndent}, \param{int }{leftSubIndent}, \param{int }{bulletStyle = wxTEXT\_ATTR\_BULLET\_STYLE\_ARABIC|wxTEXT\_ATTR\_BULLET\_STYLE\_PERIOD}}
206 {\it leftIndent} and {\it leftSubIndent} are values in tenths of a millimetre.
233 at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the
234 left of the actual paragraph is leftSubIndent.
269 \func{bool}{BeginSymbolBullet}{\param{wxChar }{symbol}, \param{int }{leftIndent}, \param{int }{leftSubIndent}, \param{int }{bulletStyle = wxTEXT\_ATTR\_BULLET\_STYLE\_SYMBOL}}
H A Drichtextattr.tex738 at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the
739 left of the actual paragraph is leftSubIndent.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/
H A Drichtextxml.cpp1250 int leftSubIndent = 0; local
1264 leftSubIndent = wxAtoi(value);
1269 attr.SetLeftIndent(leftIndent, leftSubIndent);
H A Drichtextstyles.cpp171 void wxRichTextListStyleDefinition::SetAttributes(int i, int leftIndent, int leftSubIndent, int bulletStyle, const wxString& bulletSymbol) argument
179 attr.SetLeftIndent(leftIndent, leftSubIndent);
H A Drichtextbuffer.cpp3867 int leftSubIndent = ConvertTenthsMMToPixels(dc, attr.GetLeftSubIndent()); local
3884 availableTextSpaceFirstLine -= leftSubIndent;
3886 int availableTextSpaceSubsequentLines = rect.GetWidth() - leftIndent - rightIndent - leftSubIndent;
3890 int startPositionSubsequentLines = leftIndent + leftSubIndent;
3893 // is actually leftIndent + leftSubIndent.
6306 bool wxRichTextBuffer::BeginLeftIndent(int leftIndent, int leftSubIndent) argument
6310 attr.SetLeftIndent(leftIndent, leftSubIndent);
6353 bool wxRichTextBuffer::BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle) argument
6359 attr.SetLeftIndent(leftIndent, leftSubIndent);
6365 bool wxRichTextBuffer::BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, in argument
6377 BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle) argument
[all...]

Completed in 185 milliseconds