Class: Origami::Annotation::Widget

Inherits:
Origami::Annotation show all
Includes:
Triggerable, Field
Defined in:
lib/origami/annotations.rb

Overview

Class representing a widget Annotation. Interactive forms use widget annotations to represent the appearance of fields and to manage user interactions.

Direct Known Subclasses

Button, Choice, Signature, Text

Defined Under Namespace

Modules: Highlight Classes: Button, CheckBox, Choice, ComboBox, ListBox, PushButton, Radio, Signature, Text

Constant Summary

Constants included from StandardObject

StandardObject::DEFAULT_ATTRIBUTES

Constants inherited from Dictionary

Dictionary::TOKENS

Constants included from Object

Object::TOKENS

Instance Attribute Summary

Attributes inherited from Dictionary

#names_cache, #strings_cache, #xref_cache

Attributes included from Object

#file_offset, #generation, #no, #objstm_offset, #parent

Instance Method Summary collapse

Methods included from Triggerable

#onBlur, #onFocus, #onMouseDown, #onMouseOut, #onMouseOver, #onMouseUp, #onPageClose, #onPageInvisible, #onPageOpen, #onPageVisible

Methods included from Field

included, #onCalculate, #onFormat, #onKeyStroke, #onValidate, #pre_build

Methods inherited from Origami::Annotation

#set_down_appearance, #set_normal_appearance, #set_rollover_appearance

Methods included from StandardObject

#do_type_check, #has_field?, included, #pdf_version_required, #pre_build, #set_default_value, #set_default_values

Methods inherited from Dictionary

#[], #[]=, add_type_info, #cast_to, #copy, #delete, guess_type, #has_key?, hint_type, #initialize, #map!, #merge, #method_missing, native_type, parse, #to_obfuscated_str, #to_s

Methods included from Object

#<=>, #cast_to, #copy, #export, #indirect_parent, #initialize, #is_indirect?, #logicalize, #logicalize!, native_type, #native_type, parse, #pdf, #pdf_version_required, #post_build, #pre_build, #reference, #resolve_all_references, #set_indirect, #set_pdf, #size, skip_until_next_obj, #solve, #to_o, #to_s, #type, typeof, #xrefs

Methods inherited from Hash

#to_o

Constructor Details

This class inherits a constructor from Origami::Dictionary

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Origami::Dictionary

Instance Method Details

#onActivate(action) ⇒ Object



624
625
626
627
628
629
630
631
# File 'lib/origami/annotations.rb', line 624

def onActivate(action)        
  
  unless action.is_a?(Action)
    raise TypeError, "An Action object must be passed."
  end
  
  self.A = action
end