Sha256: d7c5d199dc8b837952035e5458a7df8fc90e12dcc745d4cf7e1bca573509433d
Contents?: true
Size: 709 Bytes
Versions: 3
Compression:
Stored size: 709 Bytes
Contents
# # tkextlib/iwidgets/canvasprintdialog.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tkextlib/iwidgets.rb' module Tk module Iwidgets class Canvasprintdialog < Tk::Iwidgets::Dialog end end end class Tk::Iwidgets::Canvasprintdialog TkCommandNames = ['::iwidgets::canvasprintdialog'.freeze].freeze WidgetClassName = 'Canvasprintdialog'.freeze WidgetClassNames[WidgetClassName] = self def get_output tk_call(@path, 'getoutput') end def print bool(tk_call(@path, 'print')) end def refresh tk_call(@path, 'refresh') self end def set_canvas(win) tk_call(@path, 'setcanvas', win) self end end
Version data entries
3 entries across 3 versions & 1 rubygems