add more spacing
[personal-kdebase.git] / workspace / plasma / scriptengines / ruby / examples / applets / tiger / contents / code / main.rb
blobafa82b0697ac26eb961606df877b9c51dd0c7cfd
1 require 'plasma_applet'
3 module RubyTiger
4   class Main < PlasmaScripting::Applet
5     def initialize(parent, args = nil)
6       super
7     end
9     def init
10       @svg = Plasma::Svg.new(self)
11       @svg.imagePath = package.filePath("images", "tiger.svg")
12     end
14     def paintInterface(painter, option, contentsRect)
15       @svg.resize(size())
16       @svg.paint(painter, 0, 0)
17     end
18   end
19 end