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, 33 insertions, 0 deletions
diff --git a/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb b/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb
new file mode 100644
index 0000000000..7d074d3842
--- /dev/null
+++ b/trunk/ext/tk/lib/tkextlib/tile/tlabel.rb
@@ -0,0 +1,33 @@
+#
+# 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