- Timestamp:
- Jan 4, 2017 6:25:01 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r64644 r65126 2687 2687 /** 2688 2688 * Returns the regexp string that defines the format of the human-readable 2689 * size representation, <tt> ####[.##] B|KB|MB|GB|TB|PB</tt>.2689 * size representation, <tt>!#!#!#!#[.!#!#] B|KB|MB|GB|TB|PB</tt>. 2690 2690 * 2691 2691 * This regexp will capture 5 groups of text: … … 2715 2715 /** 2716 2716 * Parses the given size string that should be in form of 2717 * <tt> ####[.##] B|KB|MB|GB|TB|PB</tt> and returns2717 * <tt>!#!#!#!#[.!#!#] B|KB|MB|GB|TB|PB</tt> and returns 2718 2718 * the size value in bytes. Zero is returned on error. 2719 2719 */ … … 2764 2764 /** 2765 2765 * Formats the given @a aSize value in bytes to a human readable string 2766 * in form of <tt> ####[.##] B|KB|MB|GB|TB|PB</tt>.2766 * in form of <tt>!#!#!#!#[.!#!#] B|KB|MB|GB|TB|PB</tt>. 2767 2767 * 2768 2768 * The @a aMode and @a aDecimal parameters are used for rounding the resulting … … 3023 3023 /** 3024 3024 * Reformats the input string @a aStr so that: 3025 * - strings in single quotes will be put inside <nobr> and marked3025 * - strings in single quotes will be put inside \<nobr\> and marked 3026 3026 * with bold style; 3027 3027 * - UUIDs be put inside <nobr> and marked 3028 3028 * with italic style; 3029 * - replaces new line chars with </p><p> constructs to form paragraphs3030 * (note that <p> and </p> are not appended to the beginning and to the3029 * - replaces new line chars with \</p\>\<p\> constructs to form paragraphs 3030 * (note that \<p\> and \</p\> are not appended to the beginning and to the 3031 3031 * end of the string respectively, to allow the result be appended 3032 3032 * or prepended to the existing paragraph). … … 3447 3447 * 3448 3448 * In order to support accelerators used in non-alphabet languages 3449 * (e.g. Japanese) that has a form of "(& <L>)" (where <L> is a latin letter),3449 * (e.g. Japanese) that has a form of "(&\<L\>)" (where \<L\> is a latin letter), 3450 3450 * this method first searches for this pattern and, if found, removes it as a 3451 3451 * whole. If such a pattern is not found, then the '&' character is simply
Note:
See TracChangeset
for help on using the changeset viewer.