class StartSeparator

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/StartSeparator.rb, line 6
def initialize(pack_dir)
      super(if pack_dir == "vertical" then Gtk::Arrow::DOWN;else Gtk::Arrow::RIGHT;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/StartSeparator.rb, line 11
def inspect
      "StartSeparator of "+get_ancestor(MenuHolder).inspect
end