Class: Yast::CWMTabClass
- Inherits:
-
Module
- Object
- Module
- Yast::CWMTabClass
- Defined in:
- ../../src/modules/CWMTab.rb
Instance Method Summary (collapse)
-
- (Object) CleanUp(_key)
Clean up function of the widget.
-
- (Hash) CreateWidget(settings)
Get the widget description map.
-
- (String) CurrentTab
Get the ID of the currently displayed tab.
-
- (Symbol) Handle(widget, _key, event)
Handle function of the widget.
-
- (Object) handleDebug
A hook to handle Alt-Ctrl-Shift-D.
-
- (Symbol) HandleWrapper(key, event)
Handle function of the widget.
-
- (Object) Init(widget, _key)
Init function of the widget.
-
- (Object) InitNewTab(new_tab_id, widget)
Switch to a new tab.
-
- (Object) InitWrapper(key)
Init function of the widget.
-
- (String) LastTab
Get the ID of the last displayed tab (after CWM::Run is done).
- - (Object) main
-
- (Object) MarkCurrentTab
Make the currently selected tab be displayed a separate way.
- - (Object) Pop
- - (Object) Push
-
- (Object) RedrawHelp(widget, tab)
Redraw the part of the help related to the tab widget.
-
- (Object) RedrawTab(tab)
Redraw the whole tab.
-
- (Object) Store(_key, event)
Store function of the widget.
-
- (Object) TabCleanup(tab)
Clean up the widgets in the tab.
-
- (Symbol) TabHandle(tab, event)
Handle events on the widgets inside the tab.
-
- (Object) TabInit(tab)
Initialize the widgets in the tab.
-
- (Object) TabStore(tab, event)
Store settings of all widgets inside the tab.
-
- (Boolean) TabValidate(tab, event)
Validate settings of all widgets inside the tab.
-
- (Object) Validate(_key, event)
Validate function of the widget.
Instance Method Details
- (Object) CleanUp(_key)
Clean up function of the widget
234 235 236 237 238 239 240 |
# File '../../src/modules/CWMTab.rb', line 234 def CleanUp(_key) TabCleanup(@current_tab_map) @last_tab_id = @current_tab_id Pop() nil end |
- (Hash) CreateWidget(settings)
Get the widget description map
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
# File '../../src/modules/CWMTab.rb', line 336 def CreateWidget(settings) settings = deep_copy(settings) tab_order = Ops.get_list(settings, "tab_order", []) tabs = Ops.get_map(settings, "tabs", {}) initial_tab = Ops.get_string(settings, "initial_tab", "") = Ops.get_map(settings, "widget_descr", {}) tab_help = Ops.get_string(settings, "tab_help", "") = nil rp = ReplacePoint(Id(:_cwm_tab_contents_rp), @empty_tab) # widget if UI.HasSpecialWidget(:DumbTab) panes = Builtins.maplist(tab_order) do |t| label = Ops.get_string(tabs, [t, "header"], @default_tab_header) Item(Id(t), label, t == initial_tab) end = DumbTab(Id(:_cwm_tab), panes, rp) else = HBox() Builtins.foreach(tab_order) do |t| label = Ops.get_string(tabs, [t, "header"], @default_tab_header) = Builtins.add(, PushButton(Id(t), label)) end = VBox(Left(), Frame("", rp)) end tabs = Builtins.mapmap(tabs) do |k, v| contents = Ops.get_term(v, "contents", VBox()) = Convert.convert( Ops.get(v, "widget_names") { CWM.StringsOfTerm(contents) }, from: "any", to: "list <string>" ) # second arg wins fallback = Builtins.union( Ops.get_map(settings, "fallback_functions", {}), Ops.get_map(v, "fallback_functions", {}) ) w = CWM.CreateWidgets(, ) w = CWM.mergeFunctions(w, fallback) help = CWM.MergeHelps(w) contents = CWM.PrepareDialog(contents, w) Ops.set(v, "widgets", w) Ops.set(v, "help", help) Ops.set(v, "contents", contents) { k => v } end { "widget" => :custom, "custom_widget" => , "init" => fun_ref(method(:InitWrapper), "void (string)"), "store" => fun_ref(method(:Store), "void (string, map)"), "clean_up" => fun_ref(method(:CleanUp), "void (string)"), "handle" => fun_ref( method(:HandleWrapper), "symbol (string, map)" ), "validate_type" => :function, "validate_function" => fun_ref( method(:Validate), "boolean (string, map)" ), "initial_tab" => initial_tab, "tabs" => tabs, "tabs_list" => tab_order, "tab_help" => tab_help, "no_help" => true } end |
- (String) CurrentTab
Get the ID of the currently displayed tab
290 291 292 |
# File '../../src/modules/CWMTab.rb', line 290 def CurrentTab @current_tab_id end |
- (Symbol) Handle(widget, _key, event)
Handle function of the widget
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File '../../src/modules/CWMTab.rb', line 247 def Handle(, _key, event) = deep_copy() event = deep_copy(event) all_tabs = Ops.get_list(, "tabs_list", []) h_ret = TabHandle(@current_tab_map, event) return h_ret if !h_ret.nil? ret = Ops.get(event, "ID") if Ops.is_string?(ret) && Builtins.contains(all_tabs, Convert.to_string(ret)) && # At initialization, qt thinks it has switched to the same tab # So prevent unnecessary double initialization ret != @current_tab_id if !TabValidate(@current_tab_map, event) MarkCurrentTab() return nil end TabStore(@current_tab_map, event) InitNewTab(Convert.to_string(ret), ) end nil end |
- (Object) handleDebug
A hook to handle Alt-Ctrl-Shift-D
302 303 304 305 306 |
# File '../../src/modules/CWMTab.rb', line 302 def handleDebug Builtins.y2debug("Handling a debugging event") nil end |
- (Symbol) HandleWrapper(key, event)
Handle function of the widget
313 314 315 316 317 |
# File '../../src/modules/CWMTab.rb', line 313 def HandleWrapper(key, event) event = deep_copy(event) handleDebug if Ops.get_string(event, "EventType", "") == "DebugEvent" Handle(CWM.GetProcessedWidget, key, event) end |
- (Object) Init(widget, _key)
Init function of the widget
224 225 226 227 228 229 230 |
# File '../../src/modules/CWMTab.rb', line 224 def Init(, _key) = deep_copy() Push() InitNewTab(Ops.get_string(, "initial_tab", ""), ) nil end |
- (Object) InitNewTab(new_tab_id, widget)
Switch to a new tab
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File '../../src/modules/CWMTab.rb', line 202 def InitNewTab(new_tab_id, ) = deep_copy() @previous_tab_id = @current_tab_id @previous_tab_map = deep_copy(@current_tab_map) @current_tab_id = new_tab_id @current_tab_map = Ops.get_map(, ["tabs", @current_tab_id], {}) MarkCurrentTab() RedrawTab(@current_tab_map) RedrawHelp(, @current_tab_map) TabInit(@current_tab_map) # allow a handler to enabled/disable widgets before the first real # UserInput takes place UI.FakeUserInput("ID" => "_cwm_tab_wakeup") nil end |
- (Object) InitWrapper(key)
Init function of the widget
282 283 284 285 286 |
# File '../../src/modules/CWMTab.rb', line 282 def InitWrapper(key) Init(CWM.GetProcessedWidget, key) nil end |
- (String) LastTab
Get the ID of the last displayed tab (after CWM::Run is done). It is needed because of bnc#134386.
297 298 299 |
# File '../../src/modules/CWMTab.rb', line 297 def LastTab @last_tab_id end |
- (Object) main
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File '../../src/modules/CWMTab.rb', line 35 def main Yast.import "UI" textdomain "base" Yast.import "CWM" Yast.import "Wizard" # local constants # Empty tab (just to be used as fallback constant) @empty_tab = VBox(VStretch(), HStretch()) # Fallback label for a tab if no is defined @default_tab_header = _("Tab") # local variables - remember to add them to Push+Pop # ID of the currently displayed tab @current_tab_id = nil # ID of previously selected tab @previous_tab_id = nil # description map of the currently selected tab @current_tab_map = {} # description map of the currently selected tab @previous_tab_map = {} # this one is expressly excluded from Push+Pop @last_tab_id = nil # nesting stack, needed because of bnc#406138 @stack = [] end |
- (Object) MarkCurrentTab
Make the currently selected tab be displayed a separate way
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File '../../src/modules/CWMTab.rb', line 175 def MarkCurrentTab if UI.HasSpecialWidget(:DumbTab) UI.ChangeWidget(Id(:_cwm_tab), :CurrentItem, @current_tab_id) else if !@previous_tab_id.nil? UI.ChangeWidget( Id(@previous_tab_id), :Label, Ops.get_string(@previous_tab_map, "header", @default_tab_header) ) end UI.ChangeWidget( Id(@current_tab_id), :Label, Ops.add( Ops.add(UI.Glyph(:BulletArrowRight), " "), Ops.get_string(@current_tab_map, "header", @default_tab_header) ) ) end nil end |
- (Object) Pop
83 84 85 86 87 88 89 90 91 92 93 |
# File '../../src/modules/CWMTab.rb', line 83 def Pop tos = Ops.get(@stack, 0, {}) @current_tab_id = Ops.get_string(tos, "cti", "") @previous_tab_id = Ops.get_string(tos, "pti", "") @current_tab_map = Ops.get_map(tos, "ctm", {}) @previous_tab_map = Ops.get_map(tos, "ptm", {}) Ops.set(@stack, 0, nil) @stack = Builtins.filter(@stack) { |m| !m.nil? } nil end |
- (Object) Push
71 72 73 74 75 76 77 78 79 80 81 |
# File '../../src/modules/CWMTab.rb', line 71 def Push tos = { "cti" => @current_tab_id, "pti" => @previous_tab_id, "ctm" => @current_tab_map, "ptm" => @previous_tab_map } @stack = Builtins.prepend(@stack, tos) nil end |
- (Object) RedrawHelp(widget, tab)
Redraw the part of the help related to the tab widget
162 163 164 165 166 167 168 169 170 171 172 |
# File '../../src/modules/CWMTab.rb', line 162 def RedrawHelp(, tab) = deep_copy() tab = deep_copy(tab) help = Ops.add( Ops.get_string(, "tab_help", ""), Ops.get_string(tab, "help", "") ) CWM.ReplaceWidgetHelp(Ops.get_string(, "_cwm_key", ""), help) nil end |
- (Object) RedrawTab(tab)
Redraw the whole tab
151 152 153 154 155 156 157 |
# File '../../src/modules/CWMTab.rb', line 151 def RedrawTab(tab) tab = deep_copy(tab) contents = Ops.get_term(tab, "contents", @empty_tab) UI.ReplaceWidget(:_cwm_tab_contents_rp, contents) nil end |
- (Object) Store(_key, event)
Store function of the widget
273 274 275 276 277 278 |
# File '../../src/modules/CWMTab.rb', line 273 def Store(_key, event) event = deep_copy(event) TabStore(@current_tab_map, event) nil end |
- (Object) TabCleanup(tab)
Clean up the widgets in the tab
109 110 111 112 113 114 115 |
# File '../../src/modules/CWMTab.rb', line 109 def TabCleanup(tab) tab = deep_copy(tab) = Ops.get_list(tab, "widgets", []) CWM.cleanupWidgets() nil end |
- (Symbol) TabHandle(tab, event)
Handle events on the widgets inside the tab
121 122 123 124 125 126 |
# File '../../src/modules/CWMTab.rb', line 121 def TabHandle(tab, event) tab = deep_copy(tab) event = deep_copy(event) = Ops.get_list(tab, "widgets", []) CWM.handleWidgets(, event) end |
- (Object) TabInit(tab)
Initialize the widgets in the tab
99 100 101 102 103 104 105 |
# File '../../src/modules/CWMTab.rb', line 99 def TabInit(tab) tab = deep_copy(tab) = Ops.get_list(tab, "widgets", []) CWM.initWidgets() nil end |
- (Object) TabStore(tab, event)
Store settings of all widgets inside the tab
131 132 133 134 135 136 |
# File '../../src/modules/CWMTab.rb', line 131 def TabStore(tab, event) tab = deep_copy(tab) event = deep_copy(event) = Ops.get_list(tab, "widgets", []) CWM.saveWidgets(, event) end |
- (Boolean) TabValidate(tab, event)
Validate settings of all widgets inside the tab
142 143 144 145 146 147 |
# File '../../src/modules/CWMTab.rb', line 142 def TabValidate(tab, event) tab = deep_copy(tab) event = deep_copy(event) = Ops.get_list(tab, "widgets", []) CWM.validateWidgets(, event) end |
- (Object) Validate(_key, event)
Validate function of the widget
322 323 324 325 |
# File '../../src/modules/CWMTab.rb', line 322 def Validate(_key, event) event = deep_copy(event) TabValidate(@current_tab_map, event) end |