Class: RubyCurses::CheckBoxMenuItem

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

Overview

menubar

Since:

  • 1.4.1 UNTESTED

Instance Attribute Summary collapse

Attributes inherited from MenuItem

#accelerator, #active_index, #bgcolor, #coffset, #col, #color, #color_pair, #enabled, #mnemonic, #parent, #row, #text, #width

Instance Method Summary collapse

Methods inherited from MenuItem

#command, #destroy, #highlight, #on_enter, #on_leave

Constructor Details

#initialize(text, mnemonic = nil, &block) ⇒ CheckBoxMenuItem

Returns a new instance of CheckBoxMenuItem.

Since:

  • 1.4.1 UNTESTED



913
914
915
916
917
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 913

def initialize text, mnemonic=nil, &block
  @checkbox = CheckBox.new nil
  @checkbox.text text
  super
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(sym, *args) ⇒ Object

Since:

  • 1.4.1 UNTESTED



948
949
950
951
952
953
954
955
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 948

def method_missing(sym, *args)
  if checkbox.respond_to? sym
    #$log.debug("calling CHECKBOXMENU #{sym} called #{args[0]}")
    checkbox.send(sym, args)
  else
    $log.error("ERROR CHECKBOXMENU #{sym} called")
  end
end

Instance Attribute Details

#checkboxObject (readonly)

Since:

  • 1.4.1 UNTESTED



912
913
914
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 912

def checkbox
  @checkbox
end

Instance Method Details

#fireObject

Since:

  • 1.4.1 UNTESTED



936
937
938
939
940
941
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 936

def fire
  checkbox.toggle
  super
  repaint
  highlight true
end

#getvalueObject

Since:

  • 1.4.1 UNTESTED



930
931
932
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 930

def getvalue
  checkbox.getvalue
end

#getvalue_for_paintObject

Since:

  • 1.4.1 UNTESTED



933
934
935
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 933

def getvalue_for_paint
  "|%-*s|" % [@width, checkbox.getvalue_for_paint]
end

#offvalueObject

Since:

  • 1.4.1 UNTESTED



921
922
923
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 921

def offvalue
  @checkbox.onvalue offvalue
end

#onvalueObject

Since:

  • 1.4.1 UNTESTED



918
919
920
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 918

def onvalue
  @checkbox.onvalue onvalue
end

#repaintObject

checkbox

Since:

  • 1.4.1 UNTESTED



942
943
944
945
946
947
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 942

def repaint # checkbox
  # FIXME need @color_pair here
    @color_pair  ||= get_color($reversecolor, @color, @bgcolor)
  @parent.window.printstring( row, 0, getvalue_for_paint, @color_pair)
  parent.window.wrefresh
end

#text=(t) ⇒ Object

stack level too deep if no = .????

Since:

  • 1.4.1 UNTESTED



924
925
926
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 924

def text=(t) # stack level too deep if no = .????
 @checkbox.text t
end

#to_sObject

Since:

  • 1.4.1 UNTESTED



927
928
929
# File 'lib/rbcurse/core/widgets/rmenu.rb', line 927

def to_s
  "    #{text} "
end