| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- namespace OpenVIII
- {
- /// <summary>
- /// Flags for cursor behavior
- /// </summary>
- /// <remarks>Defaults to disabled.</remarks>
- [Flags]
- public enum Cursor_Status
- {
- /// <summary>
- /// Hide Cursor and disable all code that uses it.
- /// </summary>
- Disabled = 0x0,
- /// <summary>
- /// Show Cursor
- /// </summary>
- Enabled = 0x1,
- /// <summary>
- /// Triggers blinking
- /// </summary>
- Blinking = 0x2,
- /// <summary>
- /// Makes it react to left and right instead of up and down.
- /// </summary>
- Horizontal = 0x4,
- /// <summary>
- /// This is the default but if you want both directions you need to set the flag.
- /// </summary>
- Vertical = 0x8,
- /// <summary>
- /// Just draw.
- /// </summary>
- Draw = 0x10,
- /// <summary>
- /// Don't draw cursor
- /// </summary>
- Hidden = 0x20,
- /// <summary>
- /// Don't move cursor
- /// </summary>
- Static = 0x40,
- /// <summary>
- /// All targets
- /// </summary>
- All = 0x80
- }
- }
|