| 148 | | |
| 149 | | // The point was not on this object |
| 150 | | #define wxRICHTEXT_HITTEST_NONE 0x01 |
| 151 | | // The point was before the position returned from HitTest |
| 152 | | #define wxRICHTEXT_HITTEST_BEFORE 0x02 |
| 153 | | // The point was after the position returned from HitTest |
| 154 | | #define wxRICHTEXT_HITTEST_AFTER 0x04 |
| 155 | | // The point was on the position returned from HitTest |
| 156 | | #define wxRICHTEXT_HITTEST_ON 0x08 |
| 157 | | // The point was on space outside content |
| 158 | | #define wxRICHTEXT_HITTEST_OUTSIDE 0x10 |
| | 148 | enum wxRichTextHitTestFlags |
| | 149 | { |
| | 150 | // The point was not on this object |
| | 151 | wxRICHTEXT_HITTEST_NONE = 0x01, |
| | 152 | |
| | 153 | // The point was before the position returned from HitTest |
| | 154 | wxRICHTEXT_HITTEST_BEFORE = 0x02, |
| | 155 | |
| | 156 | // The point was after the position returned from HitTest |
| | 157 | wxRICHTEXT_HITTEST_AFTER = 0x04, |
| | 158 | |
| | 159 | // The point was on the position returned from HitTest |
| | 160 | wxRICHTEXT_HITTEST_ON = 0x08, |
| | 161 | |
| | 162 | // The point was on space outside content |
| | 163 | wxRICHTEXT_HITTEST_OUTSIDE = 0x10 |
| | 164 | }; |