Class: Qt::Point
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
._load(str) ⇒ Object
101 102 103 104 |
# File 'lib/ruber/qt_sugar.rb', line 101 def self._load str x, y = str.split ';' self.new x.to_i, y.to_i end |
Instance Method Details
#_dump(_) ⇒ Object
97 98 99 |
# File 'lib/ruber/qt_sugar.rb', line 97 def _dump _ "#{x};#{self.y}" end |
#to_yaml(opts = {}) ⇒ Object
88 89 90 91 92 93 94 95 |
# File 'lib/ruber/qt_sugar.rb', line 88 def to_yaml opts = {} YAML.quick_emit(self, opts) do |out| out.map(taguri, to_yaml_style) do |map| map.add 'x', self.x map.add 'y', self.y end end end |