Class: Wx::AcceleratorEntryFlags

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/accelerator.rb

Overview

Requires:

  • USE_ACCEL

Constant Summary collapse

ACCEL_NORMAL =

no modifiers

Wx::AcceleratorEntryFlags.new(0)
ACCEL_ALT =

hold Alt key down

Wx::AcceleratorEntryFlags.new(1)
ACCEL_CTRL =

hold Ctrl key down, corresponds to Command key on macOS

Wx::AcceleratorEntryFlags.new(2)
ACCEL_SHIFT =

hold Shift key down

Wx::AcceleratorEntryFlags.new(4)
ACCEL_RAW_CTRL =

corresponds to real Ctrl key on macOS, identic to ACCEL_CTRL on other platforms

Wx::AcceleratorEntryFlags.new(2)
ACCEL_CMD =

deprecated, identic to ACCEL_CTRL on all platforms.

Wx::AcceleratorEntryFlags.new(2)