Sha256: 39e7b9d33f42c2e9e17e29d0da416caef080dee7d5df9d4daa6f12d10e649d83

Contents?: true

Size: 788 Bytes

Versions: 6

Compression:

Stored size: 788 Bytes

Contents

#
#  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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
tk-win-0.2.2-x86-mingw32 lib/tkextlib/tkimg/pixmap.rb
tk-win-0.2.1-x86-mingw32 lib/tkextlib/tkimg/pixmap.rb
tk-win-0.2.0-x86-mingw32 lib/tkextlib/tkimg/pixmap.rb
tk_as_gem-0.1.0 ext/lib/tkextlib/tkimg/pixmap.rb
tk_as_gem-0.0.1 ext/lib/tkextlib/tkimg/pixmap.rb
tk_as_gem-0.0.0 ext/lib/tkextlib/tkimg/pixmap.rb