aboutsummaryrefslogtreecommitdiffstats
path: root/ext/tk/lib/tkextlib/tkimg/pixmap.rb
blob: ae8d3201cbc1579350f778a72cc09ca6ce7571b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
#  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
      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
  end
end