Rebol []
insert-event-func [
switch event/type [
scroll-line [b/para/scroll: b/para/scroll + event/offset]
scroll-page [b/para/scroll: b/para/scroll + event/offset ]
]
show b
event
]
view layout [
text "You can scroll this text with mouse wheel and mouse wheel + CTRL"
b: area system/license
]
This is a blog about Rebol, it's a fantastic free programming language, it permits easily to create complete software with few lines of code. It's cross-platform, so if you write it on Windows, it will work on Linux and Mac, and vice-versa. You can produce also wonderful GUI with just 3 lines of code!
Thursday, 2 August 2012
Mouse scrolling wheel
Rebol GUI intercept scrolling wheel movement and if you press also CTRL it is a scroll-page event, look a this example:
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment