class EndSeparator

this file is part of manqod manqod is distributed under the CDDL licence the author of manqod is Dobai-Pataky Balint(dpblnt@gmail.com)

Public Class Methods

new(pack_dir) click to toggle source
Calls superclass method
# File lib/ButtonMenu/EndSeparator.rb, line 6
def initialize(pack_dir)
      super(if pack_dir == "vertical" then Gtk::Arrow::UP;else Gtk::Arrow::LEFT;end,Gtk::SHADOW_OUT)
      set_size_request(20,10)
      set_no_show_all(true)
end

Public Instance Methods

inspect() click to toggle source
# File lib/ButtonMenu/EndSeparator.rb, line 11
def inspect
      "EndSeparator of "+get_ancestor(MenuHolder).inspect
end