1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/tk/lib/tkextlib/tkimg/pixmap.rb

45 lines
788 B
Ruby
Raw Normal View History

#
# TkImg - format 'pixmap'
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'
# call setup script for general 'tkextlib' libraries
require 'tkextlib/setup.rb'
# call setup script
require 'tkextlib/tkimg/setup.rb'
# TkPackage.require('img::pixmap', '1.3')
TkPackage.require('img::pixmap')
module Tk
module Img
module PIXMAP
PACKAGE_NAME = 'img::pixmap'.freeze
def self.package_name
PACKAGE_NAME
end
def self.package_version
begin
TkPackage.require('img::pixmap')
rescue
''
end
end
end
end
end
class TkPixmapImage<TkImage
def self.version
Tk::Img::PIXMAP.version
end
def initialize(*args)
@type = 'pixmap'
super(*args)
end
end