This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [needs: view] | |
turtle: #() | |
win: layout [ panel [ | |
tfield: base 500x500 white draw [] | |
origin tfield/offset tlayer: base 500x500 255.255.255.255 draw [] ] | |
panel [ | |
text "History" return history: text-list 200x350 data [] return | |
panel [ button "Save" [save request-file history/data] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [] | |
; Steeve gets credit for this one | |
detab: function [ | |
"Converts leading tabs in a string to spaces. (tab size 4)" | |
string [any-string!] "(modified)" | |
/size | |
sz [integer!] "Number of spaces per tab" | |
/all "Change all, not just leading" | |
][ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ | |
title: "Paint" | |
Author: [REBOL version "Frank Sievertsen" Red port "Gregg Irwin"] | |
File: %paint.red | |
Tabs: 4 | |
Needs: View | |
version: 0.0.2 | |
] | |
draw-blk: copy [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ | |
Author: ["Didier Cadieu" "Nenad Rakocevic"] | |
File: %worm.red | |
Needs: 'View | |
] | |
win: layout [ | |
size 400x500 | |
across | |
style ball: base 30x30 transparent draw [fill-pen blue circle 15x15 14] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [] L: charset "ABCDEFGHI" D: union N: charset "123456789" charset "0" | |
repeat y 9 [repeat x 9 [col: either x = 1 [#"^(2028)"][#"A" + (x - 2)] | |
append p: [] set ref: (to word! rejoin [col y - 1]) make face! [size: 90x24 | |
type: pick [text field] header?: (y = 1) or (x = 1) | |
offset: -20x10 + as-pair ((x - 1) * size/x + 2) ((y - 1) * size/y + 1) | |
text: form case [y = 1 [col] x = 1 [y - 1] 'else [copy ""]] | |
para: make para! [align: pick [center right] header?] | |
extra: object [name: form ref formula: old: none] | |
actors: context [on-create: on-unfocus: function [f e][f/color: none | |
if rel: f/extra/old [react/unlink rel 'all] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [] L: charset "ABCDEFGHI" D: union N: charset "123456789" charset "0" | |
repeat y 9 [repeat x 9 [col: either x = 1 [#"^(2028)"][#"A" + (x - 2)] | |
append p: [] set ref: (to word! rejoin [col y - 1]) make face! [size: 90x24 | |
type: pick [text field] header?: (y = 1) or (x = 1) | |
offset: -20x10 + as-pair ((x - 1) * size/x + 2) ((y - 1) * size/y + 1) | |
text: form case [y = 1 [col] x = 1 [y - 1] 'else [copy ""]] | |
para: make para! [align: pick [center right] header?] | |
extra: object [name: form ref formula: old: none] | |
actors: context [on-create: on-unfocus: function [f e][f/color: none | |
if rel: f/extra/old [react/unlink rel 'all] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
collect-values: function [ | |
"Collect values in a block, by type or custom parse rule" | |
block [block!] | |
rule "Datatype, prototype value, or parse rule" | |
/deep "Include nested blocks" | |
/local v | |
][ | |
rule: switch/default type?/word rule [ | |
datatype! [reduce [rule]] ; Turn a plain datatype into a parse rule for that type. | |
block! typeset! [:rule] ; Blocks and typesets (e.g. any-word!) work directly as rules. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ | |
title: "Paint" | |
Author: [REBOL version "Frank Sievertsen" Red port "Gregg Irwin"] | |
File: %paint-with-time-travel.red | |
Tabs: 4 | |
Needs: View | |
version: 0.0.3 | |
Notes: { | |
The original didn't have time travel. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ | |
Title: "Nsource - native source" | |
Purpose: "Print source for native functions" | |
Author: "Boleslav Březovský" | |
Date: "8-6-2017" | |
] | |
indent: func [ | |
"(Un)indent text by tab" | |
string [string!] "Text to (un)indent" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ | |
title: "Red Object Browser" | |
author: "Gregg Irwin" | |
needs: 'View | |
] | |
e.g.: :comment | |
map-ex: func [ | |
"Evaluates a function for all values in a series and returns the results." |
OlderNewer