Tk::Wm (Module)

In: tk/lib/tk/wm.rb

Constants

TkCommandNames = ['wm'.freeze].freeze

Included Modules

TkComm

Public Instance methods

[Source]

# File tk/lib/tk/wm.rb, line 12
    def aspect(*args)
      if args.length == 0
        list(tk_call_without_enc('wm', 'aspect', path))
      else
        tk_call('wm', 'aspect', path, *args)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 20
    def attributes(slot=nil,value=None)
      if slot == nil
        lst = tk_split_list(tk_call('wm', 'attributes', path))
        info = {}
        while key = lst.shift
          info[key[1..-1]] = lst.shift
        end
        info
      elsif slot.kind_of? Hash
        tk_call('wm', 'attributes', path, *hash_kv(slot))
        self
      elsif value == None
        tk_call('wm', 'attributes', path, "-#{slot}")
      else
        tk_call('wm', 'attributes', path, "-#{slot}", value)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 38
    def client(name=None)
      if name == None
        tk_call('wm', 'client', path)
      else
        name = '' if name == nil
        tk_call('wm', 'client', path, name)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 47
    def colormapwindows(*args)
      if args.size == 0
        list(tk_call_without_enc('wm', 'colormapwindows', path))
      else
        tk_call_without_enc('wm', 'colormapwindows', path, *args)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 64
    def deiconify(ex = true)
      tk_call_without_enc('wm', 'deiconify', path) if ex
      self
    end

[Source]

# File tk/lib/tk/wm.rb, line 68
    def focusmodel(mode = nil)
      if mode
        tk_call_without_enc('wm', 'focusmodel', path, mode)
        self
      else
        tk_call_without_enc('wm', 'focusmodel', path)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 76
    def frame
      tk_call_without_enc('wm', 'frame', path)
    end

[Source]

# File tk/lib/tk/wm.rb, line 79
    def geometry(geom=nil)
      if geom
        tk_call_without_enc('wm', 'geometry', path, geom)
        self
      else
        tk_call_without_enc('wm', 'geometry', path)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 95
    def group(leader = nil)
      if leader
        tk_call('wm', 'group', path, leader)
        self
      else
        window(tk_call('wm', 'group', path))
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 103
    def iconbitmap(bmp=nil)
      if bmp
        tk_call_without_enc('wm', 'iconbitmap', path, bmp)
        self
      else
        image_obj(tk_call_without_enc('wm', 'iconbitmap', path))
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 111
    def iconify(ex = true)
      tk_call_without_enc('wm', 'iconify', path) if ex
      self
    end

[Source]

# File tk/lib/tk/wm.rb, line 115
    def iconmask(bmp=nil)
      if bmp
        tk_call_without_enc('wm', 'iconmask', path, bmp)
        self
      else
        image_obj(tk_call_without_enc('wm', 'iconmask', path))
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 123
    def iconname(name=nil)
      if name
        tk_call('wm', 'iconname', path, name)
        self
      else
        tk_call('wm', 'iconname', path)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 131
    def iconposition(*args)
      if args.size == 0
        list(tk_call_without_enc('wm', 'iconposition', path))
      else
        tk_call_without_enc('wm', 'iconposition', path, *args)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 139
    def iconwindow(win = nil)
      if win
        tk_call_without_enc('wm', 'iconwindow', path, win)
        self
      else
        w = tk_call_without_enc('wm', 'iconwindow', path)
        (w == '')? nil: window(w)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 148
    def maxsize(*args)
      if args.size == 0
        list(tk_call_without_enc('wm', 'maxsize', path))
      else
        tk_call_without_enc('wm', 'maxsize', path, *args)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 156
    def minsize(*args)
      if args.size == 0
        list(tk_call_without_enc('wm', 'minsize', path))
      else
        tk_call_without_enc('wm', 'minsize', path, *args)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 164
    def overrideredirect(bool=None)
      if bool == None
        bool(tk_call_without_enc('wm', 'overrideredirect', path))
      else
        tk_call_without_enc('wm', 'overrideredirect', path, bool)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 172
    def positionfrom(who=None)
      if who == None
        r = tk_call_without_enc('wm', 'positionfrom', path)
        (r == "")? nil: r
      else
        tk_call_without_enc('wm', 'positionfrom', path, who)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 181
    def protocol(name=nil, cmd=nil)
      if cmd
        tk_call_without_enc('wm', 'protocol', path, name, cmd)
        self
      elsif name
        result = tk_call_without_enc('wm', 'protocol', path, name)
        (result == "")? nil : tk_tcl2ruby(result)
      else
        tk_split_simplelist(tk_call_without_enc('wm', 'protocol', path))
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 192
    def resizable(*args)
      if args.length == 0
        list(tk_call_without_enc('wm', 'resizable', path)).collect{|e| bool(e)}
      else
        tk_call_without_enc('wm', 'resizable', path, *args)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 200
    def sizefrom(who=None)
      if who == None
        r = tk_call_without_enc('wm', 'sizefrom', path)
        (r == "")? nil: r
      else
        tk_call_without_enc('wm', 'sizefrom', path, who)
        self
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 209
    def stackorder
      list(tk_call('wm', 'stackorder', path))
    end

[Source]

# File tk/lib/tk/wm.rb, line 212
    def stackorder_isabove(win)
      bool(tk_call('wm', 'stackorder', path, 'isabove', win))
    end

[Source]

# File tk/lib/tk/wm.rb, line 215
    def stackorder_isbelow(win)
      bool(tk_call('wm', 'stackorder', path, 'isbelow', win))
    end

[Source]

# File tk/lib/tk/wm.rb, line 218
    def state(state=nil)
      if state
        tk_call_without_enc('wm', 'state', path, state)
        self
      else
        tk_call_without_enc('wm', 'state', path)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 226
    def title(str=nil)
      if str
        tk_call('wm', 'title', path, str)
        self
      else
        tk_call('wm', 'title', path)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 234
    def transient(master=nil)
      if master
        tk_call_without_enc('wm', 'transient', path, master)
        self
      else
        window(tk_call_without_enc('wm', 'transient', path))
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 242
    def withdraw(ex = true)
      tk_call_without_enc('wm', 'withdraw', path) if ex
      self
    end

[Source]

# File tk/lib/tk/wm.rb, line 55
    def wm_command(value=nil)
      if value
        tk_call('wm', 'command', path, value)
        self
      else
        #procedure(tk_call('wm', 'command', path))

        tk_call('wm', 'command', path)
      end
    end

[Source]

# File tk/lib/tk/wm.rb, line 87
    def wm_grid(*args)
      if args.size == 0
        list(tk_call_without_enc('wm', 'grid', path))
      else
        tk_call_without_enc('wm', 'grid', path, *args)
        self
      end
    end

[Validate]