World: r3wp
[!REBOL3 GUI]
older newer | first last |
Kai 21-Nov-2010 [4344x5] | Hmm - just downloaded 2.100.110.3.1 and get this upon load-gui: |
Hmm - just downloaded 2.100.110.3.1 and get this upon load-gui: | |
Hmm - just downloaded 2.100.110.3.1 and get this upon load-gui: | |
Hmm - just downloaded 2.100.110.3.1 and get this upon load-gui: | |
GUI version 0.2.1 snip ...size-text has no value ... snip | |
Andreas 21-Nov-2010 [4349] | load-gui references Carl's old GUI but you need to manually load Henrik's Gui |
Kai 21-Nov-2010 [4350] | ah - and how? |
Andreas 21-Nov-2010 [4351] | download http://94.145.78.91/files/r3/gui/r3-gui.r3 do %r3-gui.r3 |
Kai 21-Nov-2010 [4352] | thanks! |
Andreas 21-Nov-2010 [4353] | you're welcome :) |
GrahamC 21-Nov-2010 [4354] | We should make this a FAQ |
Kai 22-Nov-2010 [4355x2] | download the file as directed, when doing it: |
>> do %/c/r3/gui/r3-gui.r3 Script: "Untitled" Version: none Date: none ** access error: cannot open: shape reason: "module not found" | |
Cyphre 22-Nov-2010 [4357] | This looks like you are using the /Core version no? Where did you download the 2.100.110.3.1? |
Andreas 22-Nov-2010 [4358] | You'll need a "/View" build of A110, such as: http://94.145.78.91/files/r3/gui/r3.exe http://94.145.78.91/files/r3/gui/r3lib.dll |
Henrik 22-Nov-2010 [4359] | Mine is of the same version as Kai's. I hope the core and view versions do not share the same version number. |
Kai 22-Nov-2010 [4360] | Thanks again! |
Cyphre 22-Nov-2010 [4361] | Henrik, so far there is no difference in the 'about' output when you build r3/Core or r3/View exe. Even system/product is always set to 'core . Something that needs to be solved by beta. |
Henrik 22-Nov-2010 [4362] | ok, mine shows a window when using View, so I suppose it's the View version. |
ssolie 22-Nov-2010 [4363] | Henrik: I have style-browser.r3 running on Amiga now. It tends to stop running a lot with script errors... how complete is this app? |
Rebolek 23-Nov-2010 [4364] | ssolie, styles like pane, table-* and doc are not yet fixed. Other styles shouldn't produce any errors, afaik. If you find some problems from other than mentioned styles, please, send me the errors privately to keep the noise low here. |
Henrik 23-Nov-2010 [4365] | ssolie, since it tests styles, the app should be complete, but may occasionally encounter styles that are unfinished. the program should be used, every time r3-gui.r3 is updated. |
Kaj 23-Nov-2010 [4366] | Isn't R3 GUI in CureCode? |
Henrik 23-Nov-2010 [4367] | I think it would be too noisy to have curecode bugs for the GUI just yet, but that's up to Carl or Rebolek. |
Oldes 23-Nov-2010 [4368] | Doc can add it as a new project I guess. |
Henrik 23-Nov-2010 [4369] | yes, agree |
Oldes 23-Nov-2010 [4370] | But then the GUI project could be on GIThub as well. |
Henrik 24-Nov-2010 [4371x2] | Doc can add an R3GUI project, when he's ready and then we'll start using it. |
Github: depends on how we continue to handle sources, but maybe this can be done. | |
Pekr 24-Nov-2010 [4373] | style-browser kind of runs under AmigaOS - http://solie.ca/ |
Henrik 24-Nov-2010 [4374] | cool :-) |
Pekr 24-Nov-2010 [4375] | font quality is not nice, but still - Amiga got R3 View almost running. One year ago I would not believe it. Now we could get some Linux guru onboard .... |
Henrik 26-Nov-2010 [4376x4] | http://94.145.78.91/files/r3/gui/panels.zip All panel tests. |
http://94.145.78.91/files/r3/gui/r3-gui.r3 PANEL and GROUP no longer exist. You need to use HPANEL/VPANEL or HGROUP/VGROUP. | |
http://94.145.78.91/files/r3/gui/style-browser.r3 Style browser is updated as well to reflect this change. | |
Note that TABLE and its related styles are outdated and will cause crashes. | |
Rebolek 26-Nov-2010 [4380] | (same for DOC and PLANE) |
Pekr 29-Nov-2010 [4381] | Button can be focused. Small enhancement request - can we add enter reactor for the button? I would find it usefull being able to run the button action hitting enter :-) btw - panels-2 - can't focus any button after the script start. Only after I invoke first button press ... now R3 crashed big time :-) |
Henrik 29-Nov-2010 [4382] | Pekr, does it work with the spacebar? There could be a collision when using Enter, because it may be used to confirm the default button, which may not be the same one as the one in focus. That depends on keyboard shortcut layout, though. |
Pekr 29-Nov-2010 [4383x3] | Yes, spacebar works, thanks ... |
Henrik - I just watched behaviour in Mozilla's Thunderbird, re button. There is 'default button in focus on particular page, so that enter works for that button. But - when tabbing, and IF the type is button, then default button is no more hilighted, and tabbed button is hilighted instead. When you tab away from the button, default button goes hilighted again. That way, both enter and space-bar works for actually hilighted button ... | |
The same goes for default Windows dialogs, and it is imo good behaviour. Simply put -enter stays as a default action for the form's default hilighted button, unless another button is tabbed. It unifies enter | space-bar behaviour for button types. If we stay with current behaviour, users might be confused, as enter will fire action on different button than the tabbed one. Of course it depends, and I would like to know, what is the functionality on non-Windows platform? | |
Henrik 29-Nov-2010 [4386] | If you are able to move the default button using tab focusing, then IMHO, default no longer makes sense, because it overlaps tabbing. This is one thing that OSX does quite well and the idea is taken from there. The alternative is to get rid of the default action and simply place the focus where default would be, but that means potentially lots of tabbing, if you need to activate a specific field. |
Pekr 29-Nov-2010 [4387] | Hmm, so OS-X behaves differently. Now what we do? Do we simulate each platform differently? |
Henrik 29-Nov-2010 [4388x3] | Activating a specific field would also occur in validation, when focusing an invalid field, so it would disrupt default functionality, if they are one and the same. |
That is possible, since the behavior model is not very big. | |
But even under Windows, the different GUI systems may not behave identically. I would try things in Control panel and other Windows standard dialogs. | |
Pekr 29-Nov-2010 [4391] | I expect it being possible. The question is - do we want rebol app to behave in OS native way, or just the same thru all platforms? I am for the former .... |
Henrik 29-Nov-2010 [4392] | yes, I agree on that. |
Pekr 29-Nov-2010 [4393] | I tried Thunderbird and IT Internet settings (which is Windows native dialog) |
older newer | first last |