summaryrefslogtreecommitdiff
path: root/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/tk/lib/tkextlib/tile/tlabel.rb')
-rw-r--r--trunk/ext/tk/lib/tkextlib/tile/tlabel.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb b/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb
deleted file mode 100644
index 7d074d3842..0000000000
--- a/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# tlabel widget
-# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
-#
-require 'tk'
-require 'tkextlib/tile.rb'
-
-module Tk
- module Tile
- class TLabel < Tk::Label
- end
- Label = TLabel
- end
-end
-
-Tk.__set_toplevel_aliases__(:Ttk, Tk::Tile::Label, :TkLabel)
-
-
-class Tk::Tile::TLabel < Tk::Label
- include Tk::Tile::TileWidget
-
- if Tk::Tile::USE_TTK_NAMESPACE
- TkCommandNames = ['::ttk::label'.freeze].freeze
- else
- TkCommandNames = ['::tlabel'.freeze].freeze
- end
- WidgetClassName = 'TLabel'.freeze
- WidgetClassNames[WidgetClassName] = self
-
- def self.style(*args)
- [self::WidgetClassName, *(args.map!{|a| _get_eval_string(a)})].join('.')
- end
-end