Class: RTF::Document
- Inherits:
-
CommandNode
- Object
- Node
- ContainerNode
- CommandNode
- RTF::Document
- Defined in:
- lib/rtf/node.rb
Overview
This class represents an RTF document. In actuality it is just a specialised Node type that cannot be assigned a parent and that holds document font, colour and information tables.
Constant Summary collapse
- CS_ANSI =
A definition for a document character set setting.
:ansi- CS_MAC =
A definition for a document character set setting.
:mac- CS_PC =
A definition for a document character set setting.
:pc- CS_PCA =
A definition for a document character set setting.
:pca- LC_AFRIKAANS =
A definition for a document language setting.
1078- LC_ARABIC =
A definition for a document language setting.
1025- LC_CATALAN =
A definition for a document language setting.
1027- LC_CHINESE_TRADITIONAL =
A definition for a document language setting.
1028- LC_CHINESE_SIMPLIFIED =
A definition for a document language setting.
2052- LC_CZECH =
A definition for a document language setting.
1029- LC_DANISH =
A definition for a document language setting.
1030- LC_DUTCH =
A definition for a document language setting.
1043- LC_DUTCH_BELGIAN =
A definition for a document language setting.
2067- LC_ENGLISH_UK =
A definition for a document language setting.
2057- LC_ENGLISH_US =
A definition for a document language setting.
1033- LC_FINNISH =
A definition for a document language setting.
1035- LC_FRENCH =
A definition for a document language setting.
1036- LC_FRENCH_BELGIAN =
A definition for a document language setting.
2060- LC_FRENCH_CANADIAN =
A definition for a document language setting.
3084- LC_FRENCH_SWISS =
A definition for a document language setting.
4108- LC_GERMAN =
A definition for a document language setting.
1031- LC_GERMAN_SWISS =
A definition for a document language setting.
2055- LC_GREEK =
A definition for a document language setting.
1032- LC_HEBREW =
A definition for a document language setting.
1037- LC_HUNGARIAN =
A definition for a document language setting.
1038- LC_ICELANDIC =
A definition for a document language setting.
1039- LC_INDONESIAN =
A definition for a document language setting.
1057- LC_ITALIAN =
A definition for a document language setting.
1040- LC_JAPANESE =
A definition for a document language setting.
1041- LC_KOREAN =
A definition for a document language setting.
1042- LC_NORWEGIAN_BOKMAL =
A definition for a document language setting.
1044- LC_NORWEGIAN_NYNORSK =
A definition for a document language setting.
2068- LC_POLISH =
A definition for a document language setting.
1045- LC_PORTUGUESE =
A definition for a document language setting.
2070- LC_POTUGUESE_BRAZILIAN =
A definition for a document language setting.
1046- LC_ROMANIAN =
A definition for a document language setting.
1048- LC_RUSSIAN =
A definition for a document language setting.
1049- LC_SERBO_CROATIAN_CYRILLIC =
A definition for a document language setting.
2074- LC_SERBO_CROATIAN_LATIN =
A definition for a document language setting.
1050- LC_SLOVAK =
A definition for a document language setting.
1051- LC_SPANISH_CASTILLIAN =
A definition for a document language setting.
1034- LC_SPANISH_MEXICAN =
A definition for a document language setting.
2058- LC_SWAHILI =
A definition for a document language setting.
1089- LC_SWEDISH =
A definition for a document language setting.
1053- LC_THAI =
A definition for a document language setting.
1054- LC_TURKISH =
A definition for a document language setting.
1055- LC_UNKNOWN =
A definition for a document language setting.
1024- LC_VIETNAMESE =
A definition for a document language setting.
1066
Instance Attribute Summary collapse
-
#character_set ⇒ Object
Attribute accessor.
-
#colours ⇒ Object
readonly
Attribute accessor.
-
#fonts ⇒ Object
readonly
Attribute accessor.
-
#information ⇒ Object
readonly
Attribute accessor.
-
#language ⇒ Object
Attribute accessor.
-
#style ⇒ Object
readonly
Attribute accessor.
Attributes inherited from CommandNode
Attributes inherited from ContainerNode
Attributes inherited from Node
Instance Method Summary collapse
-
#body_height ⇒ Object
This method fetches the height of the available work area space for a a typical Document object page.
-
#body_width ⇒ Object
This method fetches the width of the available work area space for a typical Document object page.
-
#default_font ⇒ Object
Attribute accessor.
-
#default_font=(font) ⇒ Object
Attribute mutator.
-
#footer(type = FooterNode::UNIVERSAL) ⇒ Object
This method fetches a footer from a Document object.
-
#footer=(footer) ⇒ Object
This method assigns a new footer to a document.
-
#get_id ⇒ Object
This method provides a method that can be called to generate an identifier that is unique within the document.
-
#header(type = HeaderNode::UNIVERSAL) ⇒ Object
This method fetches a header from a Document object.
-
#header=(header) ⇒ Object
This method assigns a new header to a document.
-
#initialize(font, style = nil, character = CS_ANSI, language = LC_ENGLISH_UK) ⇒ Document
constructor
This is a constructor for the Document class.
-
#page_break ⇒ Object
This method inserts a page break into a document.
-
#paper ⇒ Object
This method provides a short cut for obtaining the Paper object associated with a Document object.
-
#parent=(parent) ⇒ Object
This method overrides the parent=() method inherited from the CommandNode class to disallow setting a parent on a Document object.
-
#to_rtf ⇒ Object
This method generates the RTF text for a Document object.
Methods inherited from CommandNode
#<<, #apply, #background, #bold, #colour, #font, #footnote, #foreground, #image, #italic, #line_break, #paragraph, #superscript, #table, #underline
Methods inherited from ContainerNode
#[], #each, #first, #last, #size, #store
Methods inherited from Node
#is_root?, #next_node, #previous_node, #root
Constructor Details
#initialize(font, style = nil, character = CS_ANSI, language = LC_ENGLISH_UK) ⇒ Document
This is a constructor for the Document class.
Parameters
- font
-
The default font to be used by the document.
- style
-
The style settings to be applied to the document. This defaults to nil.
- character
-
The character set to be applied to the document. This defaults to Document::CS_ANSI.
- language
-
The language setting to be applied to document. This defaults to Document::LC_ENGLISH_UK.
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 |
# File 'lib/rtf/node.rb', line 1480 def initialize(font, style=nil, character=CS_ANSI, language=LC_ENGLISH_UK) super(nil, '\rtf1') @fonts = FontTable.new(font) @default_font = 0 @colours = ColourTable.new @information = Information.new @character_set = character @language = language @style = style == nil ? DocumentStyle.new : style @headers = [nil, nil, nil, nil] @footers = [nil, nil, nil, nil] @id = 0 end |
Instance Attribute Details
#character_set ⇒ Object
Attribute accessor.
1463 1464 1465 |
# File 'lib/rtf/node.rb', line 1463 def character_set @character_set end |
#colours ⇒ Object (readonly)
Attribute accessor.
1463 1464 1465 |
# File 'lib/rtf/node.rb', line 1463 def colours @colours end |
#fonts ⇒ Object (readonly)
Attribute accessor.
1463 1464 1465 |
# File 'lib/rtf/node.rb', line 1463 def fonts @fonts end |
#information ⇒ Object (readonly)
Attribute accessor.
1463 1464 1465 |
# File 'lib/rtf/node.rb', line 1463 def information @information end |
#language ⇒ Object
Attribute accessor.
1463 1464 1465 |
# File 'lib/rtf/node.rb', line 1463 def language @language end |
#style ⇒ Object (readonly)
Attribute accessor.
1463 1464 1465 |
# File 'lib/rtf/node.rb', line 1463 def style @style end |
Instance Method Details
#body_height ⇒ Object
This method fetches the height of the available work area space for a a typical Document object page.
1621 1622 1623 |
# File 'lib/rtf/node.rb', line 1621 def body_height @style.body_height end |
#body_width ⇒ Object
This method fetches the width of the available work area space for a typical Document object page.
1615 1616 1617 |
# File 'lib/rtf/node.rb', line 1615 def body_width @style.body_width end |
#default_font ⇒ Object
Attribute accessor.
1502 1503 1504 |
# File 'lib/rtf/node.rb', line 1502 def default_font @fonts[@default_font] end |
#default_font=(font) ⇒ Object
Attribute mutator.
Parameters
- font
-
The new default font for the Document object.
1584 1585 1586 1587 |
# File 'lib/rtf/node.rb', line 1584 def default_font=(font) @fonts << font @default_font = @fonts.index(font) end |
#footer(type = FooterNode::UNIVERSAL) ⇒ Object
This method fetches a footer from a Document object.
Parameters
- type
-
One of the footer types defined in the footer class. Defaults to FooterNode::UNIVERSAL.
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 |
# File 'lib/rtf/node.rb', line 1568 def (type=FooterNode::UNIVERSAL) index = 0 if type == FooterNode::LEFT_PAGE index = 1 elsif type == FooterNode::RIGHT_PAGE index = 2 elsif type == FooterNode::FIRST_PAGE index = 3 end @footers[index] end |
#footer=(footer) ⇒ Object
This method assigns a new footer to a document. A Document object can have up to four footers - a default footer, a footer for left pages, a footer for right pages and a footer for the first page. The method checks the footer type and stores it appropriately.
Parameters
- footer
-
A reference to the footer object to be stored. Existing footer objects are overwritten.
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 |
# File 'lib/rtf/node.rb', line 1534 def () if .type == FooterNode::UNIVERSAL @footers[0] = elsif .type == FooterNode::LEFT_PAGE @footers[1] = elsif .type == FooterNode::RIGHT_PAGE @footers[2] = elsif .type == FooterNode::FIRST_PAGE @footers[3] = end end |
#get_id ⇒ Object
This method provides a method that can be called to generate an identifier that is unique within the document.
1496 1497 1498 1499 |
# File 'lib/rtf/node.rb', line 1496 def get_id @id += 1 Time.now().strftime('%d%m%y') + @id.to_s end |
#header(type = HeaderNode::UNIVERSAL) ⇒ Object
This method fetches a header from a Document object.
Parameters
- type
-
One of the header types defined in the header class. Defaults to HeaderNode::UNIVERSAL.
1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 |
# File 'lib/rtf/node.rb', line 1551 def header(type=HeaderNode::UNIVERSAL) index = 0 if type == HeaderNode::LEFT_PAGE index = 1 elsif type == HeaderNode::RIGHT_PAGE index = 2 elsif type == HeaderNode::FIRST_PAGE index = 3 end @headers[index] end |
#header=(header) ⇒ Object
This method assigns a new header to a document. A Document object can have up to four header - a default header, a header for left pages, a header for right pages and a header for the first page. The method checks the header type and stores it appropriately.
Parameters
- header
-
A reference to the header object to be stored. Existing header objects are overwritten.
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 |
# File 'lib/rtf/node.rb', line 1514 def header=(header) if header.type == HeaderNode::UNIVERSAL @headers[0] = header elsif header.type == HeaderNode::LEFT_PAGE @headers[1] = header elsif header.type == HeaderNode::RIGHT_PAGE @headers[2] = header elsif header.type == HeaderNode::FIRST_PAGE @headers[3] = header end end |
#page_break ⇒ Object
This method inserts a page break into a document.
1608 1609 1610 1611 |
# File 'lib/rtf/node.rb', line 1608 def page_break self.store(CommandNode.new(self, '\page', nil, false)) nil end |
#paper ⇒ Object
This method provides a short cut for obtaining the Paper object associated with a Document object.
1591 1592 1593 |
# File 'lib/rtf/node.rb', line 1591 def paper @style.paper end |
#parent=(parent) ⇒ Object
This method overrides the parent=() method inherited from the CommandNode class to disallow setting a parent on a Document object.
Parameters
- parent
-
A reference to the new parent node for the Document object.
Exceptions
- RTFError
-
Generated whenever this method is called.
1603 1604 1605 |
# File 'lib/rtf/node.rb', line 1603 def parent=(parent) RTFError.fire("Document objects may not have a parent.") end |
#to_rtf ⇒ Object
This method generates the RTF text for a Document object.
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 |
# File 'lib/rtf/node.rb', line 1626 def to_rtf text = StringIO.new text << "{#{prefix}\\#{@character_set.id2name}" text << "\\deff#{@default_font}" text << "\\deflang#{@language}" if @language != nil text << "\\plain\\fs24\\fet1" text << "\n#{@fonts.to_rtf}" text << "\n#{@colours.to_rtf}" if @colours.size > 0 text << "\n#{@information.to_rtf}" if @headers.compact != [] text << "\n#{@headers[3].to_rtf}" if @headers[3] != nil text << "\n#{@headers[2].to_rtf}" if @headers[2] != nil text << "\n#{@headers[1].to_rtf}" if @headers[1] != nil if @headers[1] == nil or @headers[2] == nil text << "\n#{@headers[0].to_rtf}" end end if @footers.compact != [] text << "\n#{@footers[3].to_rtf}" if @footers[3] != nil text << "\n#{@footers[2].to_rtf}" if @footers[2] != nil text << "\n#{@footers[1].to_rtf}" if @footers[1] != nil if @footers[1] == nil or @footers[2] == nil text << "\n#{@footers[0].to_rtf}" end end text << "\n#{@style.prefix(self)}" if @style != nil self.each {|entry| text << "\n#{entry.to_rtf}"} text << "\n}" text.string end |