In Files

  • tk/lib/tk/macpkg.rb

Class/Module Index [+]

Quicksearch

Tk::MacResource

Public Class Methods

close(rsrcRef) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 41
def close(rsrcRef)
  tk_call('resource', 'close', rsrcRef)
end
            
delete(rsrcType, opts=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 45
def delete(rsrcType, opts=nil)
  tk_call('resource', 'delete', *(hash_kv(opts) << rsrcType))
end
            
files(rsrcRef=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 49
def files(rsrcRef=nil)
  if rsrcRef
    tk_call('resource', 'files', rsrcRef)
  else
    tk_split_simplelist(tk_call('resource', 'files'))
  end
end
            
list(rsrcType, rsrcRef=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 57
def list(rsrcType, rsrcRef=nil)
  tk_split_simplelist(tk_call('resource', 'list', rsrcType, rsrcRef))
end
            
open(fname, access=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 61
def open(fname, access=nil)
  tk_call('resource', 'open', fname, access)
end
            
package_name() click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 35
def self.package_name
  PACKAGE_NAME
end
            
read(rsrcType, rsrcID, rsrcRef=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 65
def read(rsrcType, rsrcID, rsrcRef=nil)
  tk_call('resource', 'read', rsrcType, rsrcID, rsrcRef)
end
            
types(rsrcRef=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 69
def types(rsrcRef=nil)
  tk_split_simplelist(tk_call('resource', 'types', rsrcRef))
end
            
write(rsrcType, data, opts=nil) click to toggle source
 
               # File tk/lib/tk/macpkg.rb, line 73
def write(rsrcType, data, opts=nil)
  tk_call('resource', 'write', *(hash_kv(opts) << rsrcType << data))
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus