• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/

Lines Matching defs:number

978 /// Get the number of visible lines
1217 // Procedure for inserting a fragment consisting of a number of
1413 /// Given a position, get the number of the visible line (potentially many to a paragraph),
1465 /// Given a line number, get the corresponding wxRichTextLine object.
1641 /// Get the paragraph by number
1670 /// Convert zero-based line column and paragraph number to a position.
1682 /// Convert zero-based position to line column and paragraph number
1709 /// Given a line number, get the corresponding wxRichTextLine object.
3265 // Current number, if numbering
3320 // track of the number for each level. But we might be simply applying a different
3409 // Max number of levels
3415 // The item number for each level
3427 levels[i] = -1; // start from the number we found, if any
3510 // Same level as before, do nothing except increment level's number afterwards
3528 // Use the current numbering if -1 and we have a bullet number already
3581 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
4891 int number = GetAttributes().GetBulletNumber();
4896 text.Printf(wxT("%d"), number);
4900 // TODO: Unicode, and also check if number > 26
4901 text.Printf(wxT("%c"), (wxChar) (number+64));
4905 // TODO: Unicode, and also check if number > 26
4906 text.Printf(wxT("%c"), (wxChar) (number+96));
4910 text = wxRichTextDecimalToRoman(number);
4914 text = wxRichTextDecimalToRoman(number);
4926 // should be stored in the attributes; if not, just use the number for this
5915 // Now see if we need to number the paragraph.
6419 bool wxRichTextBuffer::BeginListStyle(const wxString& listStyle, int level, int number)
6428 attr.SetBulletNumber(number);