File: doc.rb

package info (click to toggle)
ruby-ox 2.14.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,504 kB
  • sloc: xml: 39,683; ansic: 9,626; ruby: 6,441; sh: 47; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require 'test/ox/hasprops'
require 'test/ox/group'
require 'test/ox/layer'
require 'test/ox/line'
require 'test/ox/shape'
require 'test/ox/oval'
require 'test/ox/rect'
require 'test/ox/text'
require 'test/ox/change'

module Test
  module Ox
    class Doc
      include HasProps

      attr_accessor :title
      attr_accessor :create_time
      attr_accessor :user
      # Hash of layers in the document indexed by layer name.
      attr_reader :layers
      attr_reader :change_history

      def initialize(title)
        @title = title
        @user = ENV['USER']
        @create_time = Time.now
        @layers = {}
        @change_history = []
      end

      def add_change(comment, time=nil, user=nil)
        @change_history << Change.new(comment, time, user)
      end
    end # Doc
  end # Ox
end # Test