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



136
137
138
139
140
141
142
143
144
145
146
147
# File 'src/lib/bootloader/systemdboot_widgets.rb', line 136

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

#labelObject



130
131
132
133
134
# File 'src/lib/bootloader/systemdboot_widgets.rb', line 130

def label
  textdomain "bootloader"

  _("Boot Co&de Options")
end