REBOL [
Title: "disable face"
Date: 12-Dec-2001/7:23:24+1:00
Version: 1.0.0
File: %disable-face.r
Author: "Volker Nitsch"
Usage: "see demo"
Purpose: "disable and enable face"
Email: nitsch-lists@netcologne.de
Web: http://www.escribe.com/internet/rebol/index.html?by=OneThread&t=%5BREBOL%5D%20Changing%20VID%20Styles
todo: "seperate handling of field/info"
]
disable-face: func [face'] [
if 'disabler = face'/parent-face/style [return]
change find face'/parent-face/pane face' (
make-face/spec get-style 'image [
style: 'disabler
offset: face'/offset size: face'/size
pane: reduce [
face'
make system/words/face [
size: face'/size
color: font: para: text: data: image: none
effect: [merge colorize 200.0.0]
]
]
]
)
face'/offset: 0x0
show face'/parent-face
]
enable-face: func [face'] [
if 'disabler <> face'/parent-face/style [return]
face': face'/parent-face
face'/pane/1/offset: face'/offset
change find face'/parent-face/pane face' face'/pane/1
show face'/parent-face
]
;
; demo - snip here
;
view center-face lay: layout [
rotary "enable" "disable" [
either face/data = face/texts [
enable-face hidi
] [disable-face hidi ]
]
field "field1"
hidi: field "hidi"
field "field2"
]
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!
Tuesday, 31 July 2012
How to block a field
If you need to remove a user to modify the content of a field, you can use the following script:
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment