Class: Fidgit::Packer Abstract

Inherits:
Container show all
Defined in:
lib/fidgit/elements/packer.rb

Overview

This class is abstract.

Container that auto-packs elements.

Direct Known Subclasses

Composite, Grid, Group

Constant Summary

Constants inherited from Element

Element::DEFAULT_SCHEMA_FILE, Element::VALID_ALIGN_H, Element::VALID_ALIGN_V

Instance Attribute Summary collapse

Attributes inherited from Element

#align_h, #align_v, #background_color, #border_thickness, #font, #padding_bottom, #padding_left, #padding_right, #padding_top, #parent, #tip, #z

Instance Method Summary collapse

Methods inherited from Container

#add, #button, #clear, #color_picker, #color_well, #combo_box, #file_browser, #grid, #group, #hit_element, #horizontal, #image_frame, #insert, #label, #list, #radio_button, #remove, #scroll_area, #scroll_window, #slider, #text_area, #to_s, #toggle_button, #update, #vertical, #write_tree, #x=, #y=

Methods inherited from Element

#default, #drag?, #draw, #draw_frame, #draw_rect, #enabled=, #enabled?, #height, #height=, #hit?, #max_height, #max_width, #min_height, #min_width, new, original_new, #outer_height, #outer_width, #recalc, schema, #to_s, #update, #width, #width=, #with, #x, #x=, #y, #y=

Methods included from Event

#events, included, new_event_handlers, #publish, #subscribe, #unsubscribe

Constructor Details

#initialize(options = {}) ⇒ Packer

Returns a new instance of Packer.



13
14
15
16
17
18
19
20
21
# File 'lib/fidgit/elements/packer.rb', line 13

def initialize(options = {})
  options = {
  }.merge! options

  @spacing_h = options[:spacing_h] || options[:spacing] || default(:spacing_h)
  @spacing_v = options[:spacing_v] || options[:spacing] || default(:spacing_v)

  super(options)
end

Instance Attribute Details

#spacing_hObject (readonly)

Returns the value of attribute spacing_h.



8
9
10
# File 'lib/fidgit/elements/packer.rb', line 8

def spacing_h
  @spacing_h
end

#spacing_vObject (readonly)

Returns the value of attribute spacing_v.



8
9
10
# File 'lib/fidgit/elements/packer.rb', line 8

def spacing_v
  @spacing_v
end