Class: Kamelopard::StyleSelector

Inherits:
Object
  • Object
show all
Defined in:
lib/kamelopard/classes.rb

Overview

Abstract class corresponding to KML’s StyleSelector object.

Direct Known Subclasses

Style, StyleMap

Instance Attribute Summary

Attributes inherited from Object

#comment, #kml_id, #master_only

Instance Method Summary collapse

Methods inherited from Object

#_alternate_to_kml, #change, #master_only?

Constructor Details

#initialize(options = {}) ⇒ StyleSelector

Returns a new instance of StyleSelector.



1463
1464
1465
1466
1467
# File 'lib/kamelopard/classes.rb', line 1463

def initialize(options = {})
    super
    @attached = false
    DocumentHolder.instance.current_document.styles << self
end

Instance Method Details

#attach(obj) ⇒ Object



1473
1474
1475
1476
# File 'lib/kamelopard/classes.rb', line 1473

def attach(obj)
    @attached = true
    obj.styles << self
end

#attached?Boolean

Returns:

  • (Boolean)


1469
1470
1471
# File 'lib/kamelopard/classes.rb', line 1469

def attached?
    @attached
end

#to_kml(elem = nil) ⇒ Object



1478
1479
1480
1481
1482
# File 'lib/kamelopard/classes.rb', line 1478

def to_kml(elem = nil)
    elem = XML::Node.new 'StyleSelector' if elem.nil?
    super elem
    elem
end