Sha256: 11233b148775961dfeaed7841d2cd4b314dca2ea9654afa1784a1d4afb9007bf

Contents?: true

Size: 939 Bytes

Versions: 1

Compression:

Stored size: 939 Bytes

Contents

=begin
  Require this file to do Clevic in Swing with JRuby
=end

require 'pathname'

# This seems to be required for jruby-1.5.x (at least for 1.5.2)
require 'java'

# require these first, so TableModel and TableView get the correct ancestors
require 'clevic/swing/table_model.rb'
require 'clevic/swing/table_view.rb'
( Pathname.new( __FILE__ ).parent + 'swing' ).children.grep( /.rb$/ ).each do |child|
  require child.to_s
end

# now require the generic parts
require 'clevic/table_model'
require 'clevic/table_view'
require 'clevic.rb'

module Clevic

def self.tahoma
  if @font.nil?
    @font = 
    begin
      found = java.awt.GraphicsEnvironment.local_graphics_environment.all_fonts.select {|f| f.font_name == "Tahoma"}.first
      found.deriveFont( 13.0 )
      java.awt.Font.new( 'DialogInput', java.awt.Font::PLAIN, 13 )
  rescue
      java.awt.Font.new( 'DialogInput', java.awt.Font::PLAIN, 13 )
    end
  end
  @font
end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clevic-0.13.0.b1 lib/clevic/swing.rb