OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_GFX_TEXT_CONSTANTS_H_ | 5 #ifndef UI_GFX_TEXT_CONSTANTS_H_ |
6 #define UI_GFX_TEXT_CONSTANTS_H_ | 6 #define UI_GFX_TEXT_CONSTANTS_H_ |
7 | 7 |
8 namespace gfx { | 8 namespace gfx { |
9 | 9 |
10 // TODO(msw): Distinguish between logical character stops and glyph stops? | 10 // TODO(msw): Distinguish between logical character stops and glyph stops? |
11 // TODO(msw): Merge with base::i18n::BreakIterator::BreakType. | 11 // TODO(msw): Merge with base::i18n::BreakIterator::BreakType. |
12 enum BreakType { | 12 enum BreakType { |
13 CHARACTER_BREAK = 0, // Stop cursor movement on neighboring characters. | 13 CHARACTER_BREAK = 0, // Stop cursor movement on neighboring characters. |
14 WORD_BREAK, // Stop cursor movement on nearest word boundaries. | 14 WORD_BREAK, // Stop cursor movement on nearest word boundaries. |
15 LINE_BREAK, // Stop cursor movement on line ends as shown on screen. | 15 LINE_BREAK, // Stop cursor movement on line ends as shown on screen. |
16 }; | 16 }; |
17 | 17 |
18 // Specifies the selection behavior for a move/move-and-select command. For | |
19 // example consider the state "ab|cd|e", i.e. cd is selected. Assume the | |
20 // selection direction is from left to right. If we move to the beginning of the | |
21 // line, the resultant state is: | |
22 // "|ab|cde" for SELECTION_START_NEW, selection direction from right to left. | |
tapted
2016/08/16 03:28:31
update wrt START_NEW?
karandeepb
2016/08/16 10:24:52
Done.
| |
23 // "|abcd|e" for SELECTION_EXTEND, selection direction from right to left. | |
24 // "ab|cde" for SELECTION_CARET. | |
25 // "|abcde" for SELECTION_NONE. | |
26 enum SelectionBehavior { | |
27 // Default behavior for a move-and-select command. The selection start point | |
28 // remains the same. For example, this is the behavior of textfields on Mac | |
29 // for the command moveUpAndModifySelection (Shift + Up). | |
30 SELECTION_DEFAULT, | |
tapted
2016/08/16 03:28:31
maybe SELECTION_RETAIN? -- seems like a better bal
karandeepb
2016/08/16 10:24:52
Done.
| |
31 | |
32 // Use for move-and-select commands which want the existing selection to be | |
33 // extended in the opposite direction, when the selection direction is | |
34 // reversed. For example, this is the behavior for textfields on Mac for the | |
35 // command moveToLeftEndOfLineAndModifySelection (Command + Shift + Left). | |
36 SELECTION_EXTEND, | |
37 | |
38 // Use for move-and-select commands which want the existing selection to | |
39 // reduce to a caret, when the selection direction is reversed. For example, | |
40 // this is the behavior for textfields on Mac for the command | |
41 // moveWordLeftAndModifySelection (Alt + Shift + Left). | |
42 SELECTION_CARET, | |
43 | |
44 // No selection. To be used for move commands, which don't want to cause a | |
45 // selection. | |
46 SELECTION_NONE, | |
47 }; | |
48 | |
18 // Specifies the word wrapping behavior when a word would exceed the available | 49 // Specifies the word wrapping behavior when a word would exceed the available |
19 // display width. All words that are too wide will be put on a new line, and | 50 // display width. All words that are too wide will be put on a new line, and |
20 // then: | 51 // then: |
21 enum WordWrapBehavior { | 52 enum WordWrapBehavior { |
22 IGNORE_LONG_WORDS, // Overflowing word text is left on that line. | 53 IGNORE_LONG_WORDS, // Overflowing word text is left on that line. |
23 TRUNCATE_LONG_WORDS, // Overflowing word text is truncated. | 54 TRUNCATE_LONG_WORDS, // Overflowing word text is truncated. |
24 ELIDE_LONG_WORDS, // Overflowing word text is elided at the ellipsis. | 55 ELIDE_LONG_WORDS, // Overflowing word text is elided at the ellipsis. |
25 WRAP_LONG_WORDS, // Overflowing word text is wrapped over multiple lines. | 56 WRAP_LONG_WORDS, // Overflowing word text is wrapped over multiple lines. |
26 }; | 57 }; |
27 | 58 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 ELIDE_HEAD, // Add an ellipsis at the start of the string. | 108 ELIDE_HEAD, // Add an ellipsis at the start of the string. |
78 ELIDE_MIDDLE, // Add an ellipsis in the middle of the string. | 109 ELIDE_MIDDLE, // Add an ellipsis in the middle of the string. |
79 ELIDE_TAIL, // Add an ellipsis at the end of the string. | 110 ELIDE_TAIL, // Add an ellipsis at the end of the string. |
80 ELIDE_EMAIL, // Add ellipses to username and domain substrings. | 111 ELIDE_EMAIL, // Add ellipses to username and domain substrings. |
81 FADE_TAIL, // Fade the string's end opposite of its horizontal alignment. | 112 FADE_TAIL, // Fade the string's end opposite of its horizontal alignment. |
82 }; | 113 }; |
83 | 114 |
84 } // namespace gfx | 115 } // namespace gfx |
85 | 116 |
86 #endif // UI_GFX_TEXT_CONSTANTS_H_ | 117 #endif // UI_GFX_TEXT_CONSTANTS_H_ |
OLD | NEW |