summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/chart/canvastext.rb
blob: 8a298faa0efb5e776b06d98e1d46cee2adbcc342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

class CanvasText < Qt::CanvasText

    CANVAS_TEXT = 1100
    attr :index
    
    def initialize(index, *k)
        super(*k)
        @index = index
    end
    
    def rtti() return CANVAS_TEXT end

end