In Files

  • tk/lib/tk/canvastag.rb

Parent

Class/Module Index [+]

Quicksearch

TkcGroup

Constants

Tk_cGroup_ID

Public Class Methods

new(parent, *args) click to toggle source

def create_self(parent, *args)

 
               # File tk/lib/tk/canvastag.rb, line 344
def initialize(parent, *args)
  #unless parent.kind_of?(TkCanvas)
  #  fail ArgumentError, "expect TkCanvas for 1st argument"
  #end
  @c = parent
  @cpath = parent.path
  # @path = @id = Tk_cGroup_ID.join('')
  @path = @id = Tk_cGroup_ID.join(TkCore::INTERP._ip_id_)
  CTagID_TBL[@cpath] = {} unless CTagID_TBL[@cpath]
  CTagID_TBL[@cpath][@id] = self
  Tk_cGroup_ID[1].succ!
  include(*args) if args != []
end
            

Public Instance Methods

add(*tags) click to toggle source
Alias for: include
exclude(*tags) click to toggle source
 
               # File tk/lib/tk/canvastag.rb, line 368
def exclude(*tags)
  for i in tags
    #i.dtag(@id)
    @c.dtag(i, @id)
  end
  self
end
            
include(*tags) click to toggle source

private :create_self

 
               # File tk/lib/tk/canvastag.rb, line 359
def include(*tags)
  for i in tags
    #i.addtag(@id)
    @c.addtag_withtag(@id, i)
  end
  self
end
            
Also aliased as: add