summaryrefslogtreecommitdiffstats
path: root/doc/scriptexamples/widget2.kvs
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 02:13:59 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 02:13:59 +0000
commita6d58bb6052ac8cb01805a48c4ad2f129126116f (patch)
treedd867a099fcbb263a8009a9fb22695b87855dad6 /doc/scriptexamples/widget2.kvs
downloadkvirc-a6d58bb6052ac8cb01805a48c4ad2f129126116f.tar.gz
kvirc-a6d58bb6052ac8cb01805a48c4ad2f129126116f.zip
Added KDE3 version of kvirc
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1095341 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'doc/scriptexamples/widget2.kvs')
-rw-r--r--doc/scriptexamples/widget2.kvs23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/scriptexamples/widget2.kvs b/doc/scriptexamples/widget2.kvs
new file mode 100644
index 00000000..8c9b5b7a
--- /dev/null
+++ b/doc/scriptexamples/widget2.kvs
@@ -0,0 +1,23 @@
+# a stupid game :) (version 2)
+
+class(mystupidgame,widget)
+{
+ constructor
+ {
+ srand $unixTime;
+ $$->$setCaption(":)");
+ $$->$setGeometry($rand(770),$rand(570),30,30);
+ }
+ mouseEnterEvent
+ {
+ $$->$move($rand(770),$rand(570));
+ }
+ mousePressEvent
+ {
+ echo "You got me!"
+ delete $$
+ }
+}
+
+%w = $new(mystupidgame,0)
+%w->$show()