From: megacz Date: Fri, 30 Jan 2004 06:49:07 +0000 (+0000) Subject: 2002/07/19 04:41:23 X-Git-Tag: RC3~1624 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=229eb4255ccdeee45067bc6c54546d70553cbfd6;p=org.ibex.core.git 2002/07/19 04:41:23 darcs-hash:20040130064907-2ba56-75bbe992c8a9d06894eb0db5a43f4ad2ce0e30f3.gz --- diff --git a/src/org/xwt/builtin/bevel.xwt b/src/org/xwt/builtin/bevel.xwt new file mode 100644 index 0000000..240697f --- /dev/null +++ b/src/org/xwt/builtin/bevel.xwt @@ -0,0 +1,26 @@ + + + + + + + diff --git a/src/org/xwt/builtin/bevel_2_down.png b/src/org/xwt/builtin/bevel_2_down.png new file mode 100644 index 0000000..0dd1608 --- /dev/null +++ b/src/org/xwt/builtin/bevel_2_down.png @@ -0,0 +1,2 @@ +‰PNG + diff --git a/src/org/xwt/builtin/bevel_2_flat.png b/src/org/xwt/builtin/bevel_2_flat.png new file mode 100644 index 0000000..0dd1608 --- /dev/null +++ b/src/org/xwt/builtin/bevel_2_flat.png @@ -0,0 +1,2 @@ +‰PNG + diff --git a/src/org/xwt/builtin/bevel_2_up.png b/src/org/xwt/builtin/bevel_2_up.png new file mode 100644 index 0000000..0dd1608 --- /dev/null +++ b/src/org/xwt/builtin/bevel_2_up.png @@ -0,0 +1,2 @@ +‰PNG + diff --git a/src/org/xwt/builtin/button.xwt b/src/org/xwt/builtin/button.xwt new file mode 100644 index 0000000..168d313 --- /dev/null +++ b/src/org/xwt/builtin/button.xwt @@ -0,0 +1,52 @@ + + + + + + + diff --git a/src/org/xwt/builtin/edit.xwt b/src/org/xwt/builtin/edit.xwt new file mode 100644 index 0000000..9e1af61 --- /dev/null +++ b/src/org/xwt/builtin/edit.xwt @@ -0,0 +1,479 @@ + + + + A text edit box. + + multiline : boolean -- if true, lines will be broken at newline characters + editable : boolean -- if false, the text cannot be changed, although it can be copied + + + + + var boxen = []; + var cr_regexp = /[\n\r]/g; + var nonwhitespace = /\S/; + + + + +