Class: Wx::ItemKind

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

Overview

Item kinds for use with Menu, MenuItem, and ToolBar.

Constant Summary collapse

ITEM_SEPARATOR =
Wx::ItemKind.new(-1)
ITEM_NORMAL =

Normal tool button / menu item.

Wx::ItemKind.new(0)
ITEM_CHECK =

Check (or toggle) tool button / menu item.

Wx::ItemKind.new(1)
ITEM_RADIO =

Radio tool button / menu item.

Wx::ItemKind.new(2)
ITEM_DROPDOWN =

Normal tool button with a dropdown arrow next to it.

Wx::ItemKind.new(3)
ITEM_MAX =
Wx::ItemKind.new(4)