Class: RubyCurses::Menu

Inherits:
MenuItem show all
Defined in:
lib/rbcurse/core/widgets/rmenu.rb

Overview

class Menu. Contains menuitems, and can be a menuitem itself. Opens out another list of menuitems.

Since:

  • 1.4.1 UNTESTED

Constant Summary collapse

[]
@@row =

Since:

  • 1.4.1 UNTESTED

0
@@col =

Since:

  • 1.4.1 UNTESTED

0

Instance Attribute Summary collapse

Attributes inherited from MenuItem

#accelerator, #active_index, #bgcolor, #color, #color_pair, #mnemonic

Instance Method Summary collapse

Methods inherited from MenuItem

#command

Constructor Details

#initialize(text, &block) ⇒ Menu

Returns a new instance of Menu.

Since:

  • 1.4.1 UNTESTED



204
205
206
207
208
209
210
211
212
213
214
215
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 204

def initialize text, &block
  @text = text
  @items = []
  @enabled = true
  @current_menu = []
  super text, nil, &block
  @row ||=10
  @col ||=10
  @coffset = 0
  @@menus ||= []
  @active_index = nil # 2011-09-25 V1.3.1 otherwise crashing in select_right
end

Instance Attribute Details

#coffsetObject

Since:

  • 1.4.1 UNTESTED



189
190
191
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 189

def coffset
  @coffset
end

#colObject

Since:

  • 1.4.1 UNTESTED



188
189
190
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 188

def col
  @col
end

#current_menuObject (readonly)

Since:

  • 1.4.1 UNTESTED



196
197
198
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 196

def current_menu
  @current_menu
end

#enabledObject

Since:

  • 1.4.1 UNTESTED



191
192
193
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 191

def enabled
  @enabled
end

#itemsObject (readonly)

Since:

  • 1.4.1 UNTESTED



193
194
195
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 193

def items
  @items
end

#panelObject (readonly)

Since:

  • 1.4.1 UNTESTED



195
196
197
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 195

def panel
  @panel
end

#parentObject

Since:

  • 1.4.1 UNTESTED



186
187
188
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 186

def parent
  @parent
end

#rowObject

Since:

  • 1.4.1 UNTESTED



187
188
189
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 187

def row
  @row
end

#row_marginObject (readonly)

2009-01-21 12:06 NEW

Since:

  • 1.4.1 UNTESTED



197
198
199
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 197

def row_margin
  @row_margin
end

#textObject (readonly)

Since:

  • 1.4.1 UNTESTED



192
193
194
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 192

def text
  @text
end

#widthObject

Since:

  • 1.4.1 UNTESTED



190
191
192
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 190

def width
  @width
end

#windowObject (readonly)

Since:

  • 1.4.1 UNTESTED



194
195
196
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 194

def window
  @window
end

Instance Method Details

#add(menuitem) ⇒ Object Also known as: <<

item could be menuitem or another menu (precreated)

Since:

  • 1.4.1 UNTESTED



224
225
226
227
228
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 224

def add menuitem
  #$log.debug " YYYY inside add menuitem #{menuitem.text} "
  @items << menuitem
  return self
end

#add_separatorObject Also known as: separator

Since:

  • 1.4.1 UNTESTED



251
252
253
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 251

def add_separator 
  @items << MenuSeparator.new
end

#array_width(a) ⇒ Object

private

Since:

  • 1.4.1 UNTESTED



540
541
542
543
544
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 540

def array_width a
  longest = a.max {|a,b| a.to_s.length <=> b.to_s.length }
  #$log.debug "array width #{longest}"
  longest.to_s.length
end

#check_mnemonics(cmenu, ch) ⇒ Object

checks given key against current menu’s items and fires key if added on 2008-11-27 12:07

Since:

  • 1.4.1 UNTESTED



638
639
640
641
642
643
644
645
646
647
648
649
650
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 638

def check_mnemonics cmenu, ch
#     $log.debug "inside check_mnemonics #{ch}"
  key = ch.chr.downcase rescue ""
  cmenu.items.each do |item|
    next if !item.respond_to? :mnemonic or item.mnemonic.nil?
#       $log.debug "inside check_mnemonics #{item.mnemonic}"
    if key == item.mnemonic.downcase && item.enabled # 2010-09-11 00:03 enabled
      ret = item.fire
      return ret #0 2009-01-23 00:45 
    end
  end
  return :UNHANDLED
end

#clear_menusObject

called upon firing so when we next show menubar there are not any left overs in here.

Since:

  • 1.4.1 UNTESTED



217
218
219
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 217

def clear_menus
  @@menus = []
end

#create_windowObject

menu

Since:

  • 1.4.1 UNTESTED



473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 473

def create_window  # menu
  margin = 2 # flush against parent
  @width = array_width(@items) + 1 # adding 1 since menus append a ">" 2011-09-24 
  $log.debug "create window menu #{@text}: r #{@row} ,col #{@col}, wd #{@width}   " 
  t = @row+1
  h = @items.length+3
  ww = @width+margin
  ww1 = @width
  max = Ncurses.LINES-1
  if t + h > max
    t = 2 # one below menubar, not touching
    if h > max
      i = ((h*1.0)/max).ceil
      h = max - 1
      ww = ww * i # FIXME we need to calculate
    end
  end # t + 1
  $log.debug "create window menu #{@text}: t  #{t} ,h #{h}, w: #{ww} , col #{@col}   max #{max}   " 

  #@layout = { :height => @items.length+3, :width => ww, :top => @row+1, :left => @col } 
  # earlier col had the offset to start the next level, I was not using it to print 
  # but with mulitple cols i am using it. So, this col will overwrite existing menu.
  @layout = { :height => h-1, :width => ww, :top => t, :left => @coffset } 
  @win = VER::Window.new(@layout)
  @window = @win
  @color_pair ||= get_color($datacolor, @color, @bgcolor)
  @rev_color_pair ||= get_color($reversecolor, @color, @bgcolor)
  @win.bkgd(Ncurses.COLOR_PAIR(@color_pair));
  @panel = @win.panel
    #@window.printstring( 0, 0, "+%s+" % ("-"*@width), $reversecolor)
    @window.printstring( 0, 0, "+%s+" % ("-"*(ww1)), @rev_color_pair)
    saved_r = 1
    r = 1
    #saved_c = @col+@width+margin # margins???
    saved_c = 0 ; # actual program uses 0 in repain for col
    c = saved_c
        $log.debug "create window menu #{@text}: first col  r  #{r} ,c #{c}" 
    @items.each do |item|
      #break if r > h # added 2011-09-24 for large number of items - causes error
      if r >= h-2
        @window.printstring( h-2, c, "+%s+" % ("-"*(ww1)), @rev_color_pair)
        r = saved_r
        c += (@width + 2)
        @window.printstring( 0, c, "+%s+" % ("-"*(ww1)), @rev_color_pair)
        $log.debug "create window menu #{@text}: new col  r  #{r} ,c #{c}, #{item.text} " 
      end
        item.row = r
        item.col = c
        item.coffset = @coffset+@width+margin # margins???


        item.width = @width
        #item.window = @window
        item.parent = self
        item.color = @color; item.bgcolor = @bgcolor
        item.repaint
      r+=1
    end
#        @window.printstring( r, 0, "+%s+" % ("-"*@width), $reversecolor) # changed 2011 2011-09-24 
    @window.printstring( h-2, 0, "+%s+" % ("-"*(ww1)), @rev_color_pair)
    # in case of multiple rows
    @window.printstring( r, c, "+%s+" % ("-"*(ww1)), @rev_color_pair)
    select_item 0
  @window.refresh
  return @window
end

#destroyObject

Since:

  • 1.4.1 UNTESTED



545
546
547
548
549
550
551
552
553
554
555
556
557
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 545

def destroy
  $log.debug "DESTRY menu #{@text}"
  return if @window.nil?
  @visible = false
  panel = @window.panel
  Ncurses::Panel.del_panel(panel.pointer) if !panel.nil?   
  @window.delwin if !@window.nil?
  @items.each do |item|
    #next if item == :SEPARATOR
    item.destroy
  end
  @window = nil
end

#fireObject

menu -

Since:

  • 1.4.1 UNTESTED



275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 275

def fire
  $log.debug "menu fire called: #{text}  " 
  if @window.nil?
    #repaint
    # added 2011-09-24 adding ability to generate list of items
    if @item_list
      # generate a list, but we need to know what to do with that list.
      @items = []
      l = @item_list.call self, *@item_list_args if !@item_list.nil?
      if l.nil? || l.size == 0
        item(:NO_MENUITEMS)
      else
        # for each element returned create a menuitem, and attach the command to it.
        l.each { |e| it = item(e); 
          if @command # there should be a command otherwise what's the point
            it.command(@args) do @command.call(it, it.text) end;
          else
            it.command(@args) do alert("No command attached to #{it.text} ") end;
            $log.warn "No command attached to item_list "
          end
        }
      end
      $log.debug "menu got items #{@items.count} " 
    end
    if @items.empty? # user did not specify any items
        item(:NO_MENUITEMS)
    end
    create_window 
    if !@parent.is_a? RubyCurses::MenuBar 
      @parent.current_menu << self
      @@menus << self # NEW
    end
  else
    ### shouod this not just show ?
    $log.debug "menu fire called: #{text} ELSE XXX WHEN IS THIS CALLED ? 658 #{@items[@active_index].text}  " 
    if @active_index # sometimes no menu item specified 2011-09-24 NEWMENU
      return @items[@active_index].fire # this should happen if selected. else selected()
    end
  end
  #@action.call if [email protected]?
end

#get_item(i) ⇒ Object

added 2009-01-21 12:09 NEW

Since:

  • 1.4.1 UNTESTED



257
258
259
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 257

def get_item i
  @items[i]
end

#handle_key(ch) ⇒ Object

menu LEFT, RIGHT, DOWN, UP, ENTER item could be menuitem or another menu

Since:

  • 1.4.1 UNTESTED



561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 561

def handle_key ch
  if !@current_menu.empty?
    cmenu = @current_menu.last
  else 
    cmenu = self
  end
  if !@@menus.empty?
   cmenu = @@menus.last
  else 
   cmenu = self
  end
  case ch
  when KEY_DOWN
    cmenu.select_next_item
    #return cmenu.fire # XXX 2010-10-16 21:39 trying out
    if cmenu.is_a? RubyCurses::Menu 
      #alert "is a menu" # this gets triggered even when we are on items
    end
  when KEY_UP
    cmenu.select_prev_item
  when KEY_ENTER, 10, 13, 32 # added 32 2008-11-27 23:50 
    return cmenu.fire
  when KEY_LEFT
    if cmenu.parent.is_a? RubyCurses::Menu 
   #$log.debug "LEFT IN MENU : #{cmenu.parent.class} len: #{cmenu.parent.current_menu.length}"
   #$log.debug "left IN MENU : #{cmenu.parent.class} len: #{cmenu.current_menu.length}"
    end
    ret = cmenu.select_left_item # 2011-09-24 V1.3.1 attempt to goto left item if columns
    if ret == :UNHANDLED
      if cmenu.parent.is_a? RubyCurses::MenuBar #and !cmenu.parent.current_menu.empty?
        #$log.debug " ABOU TO DESTROY DUE TO LEFT"
        cmenu.current_menu.pop
        @@menus.pop ## NEW
        cmenu.destroy
        return :UNHANDLED
      end
      # LEFT on a menu list allows me to close and return to higher level
      if cmenu.parent.is_a? RubyCurses::Menu #and !cmenu.parent.current_menu.empty?
        #$log.debug " ABOU TO DESTROY DUE TO LEFT"
        cmenu.current_menu.pop
        @@menus.pop ## NEW
        cmenu.destroy
        #return :UNHANDLED
      end
    end
  when KEY_RIGHT
   $log.debug "RIGHTIN MENU : #{text}  "
   if cmenu.active_index
    if cmenu.items[cmenu.active_index].is_a?  RubyCurses::Menu 
      #alert "could fire here cmenu: #{cmenu.text}, par: #{cmenu.parent.text} "
      cmenu.fire
      return
   #$log.debug "right IN MENU : #{cmenu.parent.class} len: #{cmenu.parent.current_menu.length}"
   #$log.debug "right IN MENU : #{cmenu.parent.class} len: #{cmenu.current_menu.length}"
    end
   end
   # This introduces a bug if no open items
   ret = cmenu.select_right_item # 2011-09-24 V1.3.1 attempt to goto right item if columns
   #alert "attempting to select right #{ret} "
    if ret == :UNHANDLED
      #if cmenu.parent.is_a? RubyCurses::Menu and !cmenu.parent.current_menu.empty?
      if cmenu.parent.is_a? RubyCurses::MenuBar #and !cmenu.current_menu.empty?
        $log.debug " ABOU TO DESTROY DUE TO RIGHT"
        cmenu.current_menu.pop
        @@menus.pop
        cmenu.destroy
        return :UNHANDLED
      end
    end
  else
    ret = check_mnemonics cmenu, ch
    return ret
  end
end

#highlight(tf = true) ⇒ Object

menu

Since:

  • 1.4.1 UNTESTED



454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 454

def highlight tf=true # menu
  if @parent.is_a? RubyCurses::MenuBar  # top level menu
    #acolor = get_color($datacolor, @bgcolor, @color)
    #@parent.window.printstring( @row, @col, " %s " % text, acolor)
    @color_pair  ||= get_color($reversecolor, @color, @bgcolor)
      att =  Ncurses::A_REVERSE
      @parent.window.mvchgat(y=@row, x=@col+1, text.length+1, att, @color_pair, nil)
  else
    #$log.debug "MENU SUBMENU menu highlight: #{text} #{@row} #{@col}, PW #{@parent.width}  " 
    acolor = tf ? $datacolor : $reversecolor
    att = tf ? Ncurses::A_REVERSE : Ncurses::A_NORMAL
    #@parent.window.mvchgat(y=@row, x=1, @width, Ncurses::A_NORMAL, color, nil)
    #@parent.window.mvchgat(y=@row, x=1, @parent.width, Ncurses::A_NORMAL, color, nil)
    # above line did not work with vt100/vt200 next does
    #      @parent.window.mvchgat(y=@row, x=1, @parent.width, att, $reversecolor, nil) # changed 2011 2011-09-24   
    @parent.window.mvchgat(y=@row, x=1, @parent.width, att, @color_pair, nil)
    @parent.window.wrefresh
  end
end

#insert_separator(ix) ⇒ Object

Since:

  • 1.4.1 UNTESTED



248
249
250
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 248

def insert_separator ix
  @items.insert ix, MenuSeparator.new
end

#item(text, mnem = nil, &block) ⇒ Object

add item method which could be used from blocks add 2010-09-10 12:20 simplifying

Since:

  • 1.4.1 UNTESTED



233
234
235
236
237
238
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 233

def item text, mnem=nil, &block
  #$log.debug "YYYY inside M: menuitem text #{text}  "
  m =  MenuItem.new text, mnem, &block 
  add m
  return m
end

#item_list(*args, &block) ⇒ Object

generate an item list at runtime for this menu

Since:

  • 1.4.1 UNTESTED



269
270
271
272
273
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 269

def item_list *args, &block 
  $log.debug ">>>item_list : #{@text} "
  @item_list = block if block_given?
  @item_list_args = args
end

create a menu within a menu add menu method which could be used from blocks add 2010-09-10 12:20 simplifying

Since:

  • 1.4.1 UNTESTED



242
243
244
245
246
247
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 242

def menu text, &block
  #$log.debug "YYYY inside M: menu text #{text}  "
  m = Menu.new text, &block 
  add m
  return m
end

#on_enterObject

menu.on_enter

Since:

  • 1.4.1 UNTESTED



417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 417

def on_enter # menu.on_enter
  #$log.debug "menu onenter: #{text} #{@row} #{@col}  " 
  # call parent method. XXX
    #if @parent.is_a? RubyCurses::MenuBar 
      #acolor = get_color($datacolor, @bgcolor, @color)
      #@parent.window.printstring( @row, @col, " %s " % text, acolor)
    #else
      highlight
    #end
    if !@window.nil? #and @parent.selected
      #$log.debug "menu onenter: #{text} calling window,show"
      @window.show
      select_item 0
    elsif @parent.is_a? RubyCurses::MenuBar and  @parent.selected
      # only on the top level do we open a window if a previous one was opened
      #$log.debug "menu onenter: #{text} calling repaint CLASS: #{@parent.class}"
    #  repaint
      create_window
    end
end

#on_leaveObject

menu.on_leave

Since:

  • 1.4.1 UNTESTED



437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 437

def on_leave # menu.on_leave
  #$log.debug "menu onleave: #{text} #{@row} #{@col}  " 
  # call parent method. XXX
  @color_pair  ||= get_color($reversecolor, @color, @bgcolor)
    if @parent.is_a? RubyCurses::MenuBar 
#          @parent.window.printstring( @row, @col, " %s " % text, $reversecolor) # changed 2011 2011-09-24   
      @parent.window.printstring( @row, @col, " %s " % text, @color_pair)
      @window.hide if !@window.nil?
    else
      #$log.debug "MENU SUBMEN. menu onleave: #{text} #{@row} #{@col}  " 
      # parent is a menu
      highlight false
      #@parent.current_menu.pop
      #@@menus.pop
      #destroy
    end
end

#remove(n) ⇒ Object

added 2009-01-21 12:09 NEW

Since:

  • 1.4.1 UNTESTED



261
262
263
264
265
266
267
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 261

def remove n
  if n.is_a? Fixnum
    @items.delete_at n
  else
    @items.delete n
  end
end

#repaintObject

user has clicked down, we shoud display items DRAW menuitems

Since:

  • 1.4.1 UNTESTED



318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 318

def repaint # menu.repaint
  # OMG will not print anything if no items !
  # When we do item generation this list will be empty
  #return if @items.nil? or @items.empty? # commented 2011-09-24 NEWMENU
  #$log.debug "menu repaint: #{text} row #{@row} col #{@col}  " 
  @color_pair  = get_color($reversecolor, @color, @bgcolor)
  if !@parent.is_a? RubyCurses::MenuBar 
    @parent.window.printstring( @row, 0, "|%-*s>|" % [@width-1, text], @color_pair)
    @parent.window.refresh
  end
  if @window.nil?
    #create_window
  else
    @window.show
    select_item 0
    @window.refresh
  end
end

#select_item(ix0) ⇒ Object

recursive if given one not enabled goes to next enabled

Since:

  • 1.4.1 UNTESTED



338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 338

def select_item ix0
  return if @items.nil? or @items.empty?
   #$log.debug "insdie select  item :  #{ix0} active: #{@active_index}" 
  if !@active_index.nil?
    @items[@active_index].on_leave 
  end
  previtem = @active_index
  @active_index = ix0
  if @items[ix0].enabled
    @items[ix0].on_enter
  else
    #$log.debug "insdie sele nxt item ENABLED FALSE :  #{ix0}" 
    if @active_index > previtem
      select_next_item
    else
      select_prev_item
    end
  end
  @window.refresh
end

#select_left_itemObject

If multi-column menuitems then try going to a left item (prev column same row) NOTE It should only come here if items are open, otherwise row and col will be blank. NOTE active_index nil means no items open

Since:

  • 1.4.1 UNTESTED



382
383
384
385
386
387
388
389
390
391
392
393
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 382

def select_left_item
  return :UNHANDLED if @items.nil? or @items.empty? or @active_index.nil?
  index = nil
  crow = @items[@active_index].row 
  ccol = @items[@active_index].col 
  @items.each_with_index { |e, i| index = i if e.row == crow && e.col < ccol }
  if index
    select_item index
  else
    return :UNHANDLED
  end
end

#select_next_itemObject

Since:

  • 1.4.1 UNTESTED



358
359
360
361
362
363
364
365
366
367
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 358

def select_next_item
  return if @items.nil? or @items.empty?
   #$log.debug "insdie sele nxt item :  #{@active_index}" 
  @active_index = -1 if @active_index.nil?
  if @active_index < @items.length-1
    select_item @active_index + 1
  else
  #  select_item 0
  end
end

#select_prev_itemObject

Since:

  • 1.4.1 UNTESTED



368
369
370
371
372
373
374
375
376
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 368

def select_prev_item
  return if @items.nil? or @items.empty?
   #$log.debug "insdie sele prv item :  #{@active_index}" 
  if @active_index > 0
    select_item @active_index - 1
  else
  #select_item @items.length-1
  end
end

#select_right_itemObject

If multi-column menuitems then try going to a right item (next column same row) Only if items are open, not from a menubar menu

Since:

  • 1.3.1 2011-09-24



397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 397

def select_right_item
  return :UNHANDLED if @items.nil? or @items.empty? or @active_index.nil?
  crow = @items[@active_index].row 
  ccol = @items[@active_index].col 
  #alert "inside select right with #{@items.size} #{@items[@active_index].text}: items. r #{crow} col #{ccol}  "
  index = nil
  @items.each_with_index { |e, i| 
    $log.debug " select_right #{e.row} == #{crow} , #{e.col} > #{ccol}  " if $log.debug? 
    if e.row == crow && e.col > ccol 
      index = i
      $log.debug "YYY select_right #{e.row} == #{crow} , #{e.col} > #{ccol} FOUND #{i}  " if $log.debug? 
      break
    end
  }
  if index
    select_item index
  else
    return :UNHANDLED
  end
end

#showObject

menu

Since:

  • 1.4.1 UNTESTED



652
653
654
655
656
657
658
659
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 652

def show # menu.show
  #$log.debug "show (menu) : #{@text} "
  if @window.nil?
    create_window #@col+@width
  end
    @window.show 
    select_item 0
end

#to_sObject

Since:

  • 1.4.1 UNTESTED



220
221
222
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 220

def to_s
  @text
end