# File ext/widgets.rb, line 400
  def checked=(val)
    return if val == @checked
    @checked = val
    if @checked
      @theme = @themek.newInstance(CheckedHk.new(@x1,@y1,@x2,@y2))
    else
      @theme = @themek.newInstance(self)
    end
  end