mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
* Add Alt RMB and Ctrl RMB screentips (used for Simple Rotation) (#69726) * Add Alt RMB and Ctrl RMB to screentips * Add Ctrl and Alt RMB screentips to defines * Add Alt RMB and Ctrl RMB screentips (used for Simple Rotation) Co-authored-by: Tim <timothymtorres@gmail.com>
33 lines
962 B
Plaintext
33 lines
962 B
Plaintext
/// Context applied to LMB actions
|
|
#define SCREENTIP_CONTEXT_LMB "LMB"
|
|
|
|
/// Context applied to RMB actions
|
|
#define SCREENTIP_CONTEXT_RMB "RMB"
|
|
|
|
/// Context applied to Shift-LMB actions
|
|
#define SCREENTIP_CONTEXT_SHIFT_LMB "Shift-LMB"
|
|
|
|
/// Context applied to Ctrl-LMB actions
|
|
#define SCREENTIP_CONTEXT_CTRL_LMB "Ctrl-LMB"
|
|
|
|
/// Context applied to Ctrl-RMB actions
|
|
#define SCREENTIP_CONTEXT_CTRL_RMB "Ctrl-RMB"
|
|
|
|
/// Context applied to Alt-LMB actions
|
|
#define SCREENTIP_CONTEXT_ALT_LMB "Alt-LMB"
|
|
|
|
/// Context applied to Alt-RMB actions
|
|
#define SCREENTIP_CONTEXT_ALT_RMB "Alt-RMB"
|
|
|
|
/// Context applied to Ctrl-Shift-LMB actions
|
|
#define SCREENTIP_CONTEXT_CTRL_SHIFT_LMB "Ctrl-Shift-LMB"
|
|
|
|
/// Screentips are always disabled
|
|
#define SCREENTIP_PREFERENCE_DISABLED "Disabled"
|
|
|
|
/// Screentips are always enabled
|
|
#define SCREENTIP_PREFERENCE_ENABLED "Enabled"
|
|
|
|
/// Screentips are only enabled when they have context
|
|
#define SCREENTIP_PREFERENCE_CONTEXT_ONLY "Only with tips"
|