~ubuntu-branches/ubuntu/oneiric/ctioga2/oneiric

« back to all changes in this revision

Viewing changes to lib/ctioga2/metabuilder/types/data.rb

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Fourmond
  • Date: 2011-01-24 21:36:06 UTC
  • Revision ID: james.westby@ubuntu.com-20110124213606-9ettx0ugl83z0bzp
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# styles.rb : Different Types to deal with various style arguments.
 
2
# Copyright (C) 2006, 2009 Vincent Fourmond
 
3
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
 
 
18
 
 
19
require 'ctioga2/utils'
 
20
 
 
21
module CTioga2
 
22
 
 
23
  Version::register_svn_info('$Revision: 171 $', '$Date: 2010-10-22 17:07:52 +0200 (Fri, 22 Oct 2010) $')
 
24
 
 
25
  module MetaBuilder
 
26
    module Types
 
27
 
 
28
      class DataPointType < Type
 
29
        
 
30
        type_name :data_point, 'data-point'
 
31
        
 
32
        def string_to_type_internal(str)
 
33
          return Data::DataPoint.from_text(PlotMaker.plotmaker,str)
 
34
        end
 
35
      end
 
36
 
 
37
      class LevelType < Type
 
38
        
 
39
        type_name :level, 'level'
 
40
        
 
41
        # @todo This should be modified eventually to mirror the
 
42
        # DataPoint, but for now, no.
 
43
        def string_to_type_internal(str)
 
44
          return [str.to_f, PlotMaker.plotmaker.data_stack.last]
 
45
        end
 
46
      end
 
47
 
 
48
    end
 
49
  end
 
50
end