Class: Bootloader::SystemdBootWidget::BootCodeTab

Inherits:
CWM::Tab
  • Object
show all
Includes:
SystemdBootHelper
Defined in:
src/lib/bootloader/systemdboot_widgets.rb

Overview

Represent tab with options related to stage1 location and bootloader type

Instance Method Summary collapse

Methods included from SystemdBootHelper

#systemdboot

Instance Method Details

#contentsObject



114
115
116
117
118
119
120
121
122
123
124
125
# File 'src/lib/bootloader/systemdboot_widgets.rb', line 114

def contents
  VBox(
    VSpacing(1),
    HBox(
      HSpacing(1),
      Left(LoaderTypeWidget.new)
    ),
    VSpacing(1),
    *widgets,
    VStretch()
  )
end

#labelObject



108
109
110
111
112
# File 'src/lib/bootloader/systemdboot_widgets.rb', line 108

def label
  textdomain "bootloader"

  _("Boot Co&de Options")
end