r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!RebGUI] A lightweight alternative to VID

Graham
12-Sep-2006
[4731x4]
** Script Error: foreach expected data argument of type: series
** Where: next-field

** Near: foreach sibling siblings [if target: any [tabbed? sibling 
into-widget/forwards sibling] [return target]] al
display "Main Window" [
	button "Click Me!" [
		display "Bug Window" [

   label "Select a value from the drop list and then tab out" return 
			drop-list "Focus here" 20 data [ "A" "B" ] return 
			button "quit" [ halt ] 
		]
	]
]

do-events
this must be none : siblings: compose [(face/parent-face/pane)]
not series I mean
[unknown: 9]
12-Sep-2006
[4735]
I have some questions about Trac, but will move it over to AltME/Rebol3/!Qtask
Graham
12-Sep-2006
[4736]
Can someone add this ticket ... thanks.
Claude
13-Sep-2006
[4737x6]
hi i would like to insert in table.r widget this code :
;BEG propose en new func by Claude 
	add-rows: func [
		rows [block!]
	][
		pos: 1 + length? data
		insert at data pos rows
		redraw
	]
	;END
for add a block of rows a once !!!!
and this other function to remove-allr-rows   ;-)
;BEG propose en new func by Claude 
	remove-all-rows: func[][
		remove/part skip data (length? data) cols
		redraw
	]
	;END
i do not be able to suscribe to track.geekisp.com  to have a login 
:-(
Graham
13-Sep-2006
[4743]
Ask Ashley for a login name
Ashley
13-Sep-2006
[4744]
Noted.
[unknown: 9]
13-Sep-2006
[4745]
Me too.
Ashley
13-Sep-2006
[4746]
I've forwarded both requests to Jaime, shouldn't be longer than a 
day or so.
Graham
14-Sep-2006
[4747x4]
do %rebgui.r

display "table test" compose/deep [

 tl: table 100x50 #W options [ "Item" left .99 ] data [ "A" ] return

 text "Select item, then click on probe selected.  Remove and then 
 try again." return
	button "Probe" [ probe tl/selected probe tl/picked ]
	button "Remove" [ clear tl/data tl/redraw ]  
] do-events
After all the elements are removed, and no row is highlighted, picked 
still => [1] and selected goes from [ ] to [none]
This is anomalous and inconsistent.
So, there is no way of determining whether a row is really selected 
or not.
and a cause of a lot of my problems :(
Ashley
14-Sep-2006
[4751]
That's one nasty bug. Good catch.
Graham
14-Sep-2006
[4752]
Ticketted.
Robert
15-Sep-2006
[4753x2]
Graham: Table stuff. We have changed table to be sort stable. This 
fixes the problem.
Ashley, I have a bunch of changes to RebGUI. How to proceed? Should 
I mail them all to you? Should I just checkin our version to the 
Subversion repository?
Graham
15-Sep-2006
[4755x2]
Robert .. just check them in for people to test.
Thanks.
Ashley
15-Sep-2006
[4757]
Yes, and don't forget to close any tickets these changes have fixed.
Robert
16-Sep-2006
[4758x3]
Ok, the first one isn't hard. I have already closed some tickets, 
but I'm sure I didn't got everything.
I will check our changes in and paste the changes doc so you can 
see what we have changed. What's than needed is to update the Wiki 
docs.
Ah... I have to reinstall the client software. Can someone please 
post the link to the repository? Thanks.
Graham
16-Sep-2006
[4761x2]
is it ?
svn://svn.geekisp.com/regbui ?
from memory ...  /rebgui
[unknown: 9]
16-Sep-2006
[4763]
Robert, are you helping write some of RebGUI?
Ashley
16-Sep-2006
[4764]
Information on various SVN client software and the URL to use is 
on the main Trac page: http://trac.geekisp.com/rebgui


I've also added a section on "Making Source Code Changes" ... please 
read it before making changes.
Graham
17-Sep-2006
[4765x2]
Is there any reason why I shouldn't do a 'show-text on a button to 
change the button text?
I am doing this and find that when I hover over the button, it disappears.
PeterWood
17-Sep-2006
[4767]
The button or the text?
Ashley
17-Sep-2006
[4768]
button "Hello" [show-text face "World"] ... seems to work OK.
Graham
17-Sep-2006
[4769]
the button disappears .. eventually.  Odd.  The text remains behind 
though. Like the Cheshire cat.
Robert
17-Sep-2006
[4770]
Reichart, sort off. As I use for my apps, I have hired Cyphre (until 
you snapped him away) to make a bunch of extensions to RebGUI that 
I need.
Anton
17-Sep-2006
[4771]
Dead link update on this page:  http://www.dobeash.com/rebgui.html

old: 	http://home.wilddsl.net.au/anton/rebol/doc/create-a-rebgui-widget.html

new: 	http://anton.wildit.net.au/rebol/doc/create-a-rebgui-widget.html
Graham
17-Sep-2006
[4772]
Is there a data facet to the button that I should not be using for 
my own purposes?
Ashley
17-Sep-2006
[4773x2]
button/data is a block containing 3 button state images ... so using 
that would be bad. ;)
Anton, link updated. Thanks.
Graham
17-Sep-2006
[4775x4]
Ahhhh....
Ooops...
No wonder the button image disappears!
Are there any user facets that one can use?
[unknown: 9]
17-Sep-2006
[4779]
Robert, got it...
Ashley
18-Sep-2006
[4780]
Are there any user facets that one can use?

 ... not as such (i.e. no VID-like user-data facet); although you 
 can always use something like button/init post initialization.