World: r3wp
[!RebGUI] A lightweight alternative to VID
older newer | first last |
Ashley 17-Nov-2007 [6963x2] | Email it to me as zip. Thanks. |
Uploaded build#102 with 'bistate option for check and check-group. Option disables right-click state selection. | |
btiffin 17-Nov-2007 [6965] | Ashley; Whoa...another out of the blue present. Thank you sir. |
Ashley 17-Nov-2007 [6966x2] | My pleasure. And now one for Graham ... |
Uploaded build#103 with new request-value function. USAGE: REQUEST-VALUE prompt /title text /default value /type datatype DESCRIPTION: Requests a value. REQUEST-VALUE is a function value. ARGUMENTS: prompt -- Prompt text (Type: string) REFINEMENTS: /title text -- Title text (Type: string) /default value -- Default value (Type: any-type) /type datatype -- Return type (Type: datatype) | |
btiffin 17-Nov-2007 [6968] | Whoa! again. Cool. Just tested 102; Just tested 103; Nice! |
Graham 17-Nov-2007 [6969] | :) |
DanielSz 18-Nov-2007 [6970] | Ashley, this is to express my thanks for rebgui. It is wonderful, and a *huge* relief from VID. I spent the week developing a GUI for a pet project of mine. Great documentation. Great demo. Great syntax. Pure enjoyment!!! |
Pekr 18-Nov-2007 [6971] | Robert - any other widgets with your branch of RebCode? E.g. tree-view? |
Robert 19-Nov-2007 [6972x3] | Yes, we have a tree-view as well. |
Spider graph. | |
Enhanced TABLE | |
Pekr 19-Nov-2007 [6975x2] | ah, RebCode .... RebGUI :-) |
sounds interesting .... tree-view is handy sometimes. | |
Luis 19-Nov-2007 [6977] | I want write a chat system. RebGui provide me the client gui. Somebody knows a chat server with history? (synapse-chat server source code is not available) |
Graham 23-Nov-2007 [6978] | Should there be an option for lists like table so that /redraw also sets the scroller back to the top? |
Luis 27-Nov-2007 [6979] | A nice feature in altme is hyperlinks in chat. ( http://www.google.com ) Any way to get this feature en rebGui ? |
Ashley 27-Nov-2007 [6980] | I'm sort of waiting for R3 rich text support before tackling that. It can be done in R2, but it's not pretty. |
Luis 29-Nov-2007 [6981x2] | But R2 is here and now. I am coping & hacking color.rebol.r plug-in ("Volker Nitsch" ) to rebgui ... |
color-rebol.r from edit-tools.r | |
Kai 29-Nov-2007 [6983] | how do i set the window color in code (not through requestor)? |
Ashley 29-Nov-2007 [6984] | display "" [ area do [face/color: sky] ] |
Kai 29-Nov-2007 [6985x2] | thanks |
has the desire for table row-shading come up before? (My first day on ALTME - so bear with me if these conversations are somehow searchable...???) | |
Graham 29-Nov-2007 [6987x2] | Yes, and there is no such facility in RebGUI. |
There is a grid but that needs work | |
amacleod 30-Nov-2007 [6989] | Is "work" being done? |
Ashley 30-Nov-2007 [6990] | Robert emailed me his code, I just have to find some time to go through it and merge the grid-specific stuff. |
amacleod 30-Nov-2007 [6991] | fantastic. |
JohanAR 4-Dec-2007 [6992x2] | I'm getting a really weird display error from an area where I try to set the face/text manually.. I'll try to paste the code to reproduce (RebGUI #101) |
REBOL [ title: "Weird error in area" Date: 04-Dec-2007 File: %areaerror.r Author: "Johan Aires Rasten" Version: 0.1.0 ] do %rebgui.r ; Values of 25 or less doesn't produce the error, but larger ones do max-info-lines: 26 display system/script/title [ panel sky data [ after 1 button-size 30 button "Status" [print-info "status"] button "Archive" [print-info "archive"] button "test" [ loop 30 [print-info "status"] loop max-info-lines - 4 [print-info "archive"] ] button "crash!" [print 1 / 0] ] info-area: "To see error: Press test button, then Status once" area 80x40 #HW options[info] data [] ] info-area-list: make list! [] print-info: make function! [ info ][ ; Add the line to the buffer append info-area-list rejoin [info "^/"] if max-info-lines < length? head info-area-list [ remove head info-area-list ] ; set-text works, but it moves the scrolling area to the top ; set-text info-area rejoin make block! head info-area-list ; This produces weird errors: info-area/text: rejoin make block! head info-area-list show info-area ] do-events | |
Ashley 4-Dec-2007 [6994] | Replace: info-area: "To see error: Press test button, then Status once" area with: info-area: area "To see error: Press test button, then Status once" |
JohanAR 5-Dec-2007 [6995] | Ah.. didn't solve my problem though :\ |
Ashley 5-Dec-2007 [6996] | Also, replace: info-area/text: rejoin make block! head info-area-list with: info-area/text: form rejoin make block! head info-area-list |
JohanAR 5-Dec-2007 [6997] | The text still becomes mangled when I press the status button |
Ashley 5-Dec-2007 [6998] | Forget my two previous suggestions and try adding the following line: info-area/text: rejoin make block! head info-area-list info-area/line-list: none ; line to add show info-area |
Kai 7-Dec-2007 [6999x2] | Ashley ~ |
in your RebGui tour under Configure UI, Behavior you have a tabbable field - among the widgets in there is drop-list. The Grouping tab cintains drop-lists among other widgets, yet I cannot tab to them... What am I missing? | |
Ashley 8-Dec-2007 [7001] | Good spot, edit-list is tabbable drop-list is not. |
Kai 8-Dec-2007 [7002] | Hmm - I always strive to mave my UIs navigable by keyboard for speed and this necessitates use of the rodent - any way to give tabbability here too? |
Ashley 9-Dec-2007 [7003] | It's a problem as tabbable and focus usually go hand-in-hand. Button had the same issue, and required quite a bit of hacking to get it working. Other non-focusable widgets have the same issue (e.g. check and radio-group). Keyboard navigation has been an issue for RebGUI (and VID) for quite some time ... just ask Pekr ;) |
Chris 9-Dec-2007 [7004] | iirc, Etienne's skin system was fully keyboard navigable. I think it still resides on the (now defunct?) IOS Developer... |
Kai 10-Dec-2007 [7005] | How can I change a button's click action? |
Ashley 10-Dec-2007 [7006] | display "Test" [ b: button [print "A"] button [ b/action/on-click: make function! [face] [print "B"] ] ] |
Kai 10-Dec-2007 [7007x2] | Thanks Ashley! |
How does attribute eval work for the data blocks of widgets like drop-list? Tried a few variations but none worked for me... | |
Ashley 10-Dec-2007 [7009] | v: "Initial" d: [a b c] display "Test" [ drop-list v data d return area ] |
Kai 10-Dec-2007 [7010] | I see - thanks |
Robert 11-Dec-2007 [7011] | Ashley, what's this free-form BUTTON keyword inside a display block? Never saw this. |
Ashley 11-Dec-2007 [7012] | Huh? button is a widget, it's been around for a long time ;) |
older newer | first last |