Sha256: 36776164818ca10c0f56685e5a0ab4acd495e968f712891432b6e8c7369fe968
Contents?: true
Size: 1.27 KB
Versions: 29
Compression:
Stored size: 1.27 KB
Contents
#-- # PDF::Writer for Ruby. # http://rubyforge.org/projects/ruby-pdf/ # Copyright 2003 - 2005 Austin Ziegler. # # Licensed under a MIT-style licence. See LICENCE in the main distribution # for full licensing information. # # $Id: catalog.rb 50 2005-05-16 03:59:21Z austin $ #++ # Define the document catalog, the overall controller for the document class PDF::Writer::Object::Catalog < PDF::Writer::Object def initialize(parent) super(parent) @outlines = nil @pages = nil @open_here = nil @viewer_preferences = nil @page_mode = nil end attr_accessor :outlines attr_accessor :pages attr_accessor :open_here attr_accessor :viewer_preferences attr_accessor :page_mode def to_s res = "\n#{@oid} 0 obj\n<< /Type /Catalog" res << "\n/Outlines #{@outlines.oid} 0 R" unless @outlines.nil? res << "\n/Pages #{@pages.oid} 0 R" unless @pages.nil? res << "\n/ViewerPreferences #{@viewer_preferences.oid} 0 R" if @viewer_preferences and @parent.version >= '1.2' res << "\n/OpenAction #{@open_here.oid} 0 R" unless @open_here.nil? res << "\n/PageMode /#{@page_mode}" unless @page_mode.nil? res << "\n/Version /#{@parent.version}" if @parent.version >= '1.4' res << ">>\nendobj" end end
Version data entries
29 entries across 29 versions & 4 rubygems