/** * Element module. * * License: * MIT. See LICENSE for full details. */ module tkd.element.elementclass; /** * Class values of widgets. */ enum ElementClass : string { button = "TButton", /// Button widget class. canvas = "Canvas", /// Canvas widget class. checkButton = "TCheckbutton", /// CheckButton widget class. comboBox = "TCombobox", /// ComboBox widget class. entry = "TEntry", /// Entry widget class. frame = "TFrame", /// Frame widget class. label = "TLabel", /// Label widget class. labelFrame = "TLabelframe", /// LabelFrame widget class. menuButton = "TMenubutton", /// MenuButton widget class. noteBook = "TNotebook", /// NoteBook widget class. panedWindow = "TPanedwindow", /// PanedWindow widget class. progressBar = "TProgressbar", /// ProgressBar widget class. radioButton = "TRadiobutton", /// RadioButton widget class. scale = "TScale", /// Scale widget class. scrollBar = "TScrollbar", /// ScrollBar widget class. separator = "TSeparator", /// Separator widget class. sizeGrip = "TSizegrip", /// SizeGrip widget class. spinBox = "TSpinbox", /// SpinBox widget class. text = "Text", /// Text widget class. treeView = "Treeview", /// Treeview widget class. }