World: r3wp
[!REBOL3 GUI]
older newer | first last |
Maxim 12-Feb-2010 [587x3] | IMHO, Henrik has stepped up as project manager for R3VID. Cyphre is still interested in helping out on the low-level AGG AFAIK. Others, like me, will definitely chime-in when it starts being more organized, if only to implement Styles, themes and stuff like that. But we need the next host released... and AFAICT, that is one of the main projects of Carl right now. At least, I hope it is. |
I might also work on some low-level stuff, which is what I'm more interested in helping on right now. | |
even for the OpenGL implementation, the next host will make my job easier AFAIK. | |
Henrik 13-Feb-2010 [590] | Tags are now implemented. Now it's a matter of using them. |
Pekr 13-Feb-2010 [591] | Henrik - what is the plan to get Carl's opinion on some of his known plans, e.g. layers. Shouldn't you know, how were those supposed to work, etc., before you do any other design decisions? |
Henrik 13-Feb-2010 [592] | It would be preferable, yes. It depends how we can push it around, as I'm not sure Carl will want to go into GUI work now. |
Pekr 13-Feb-2010 [593x2] | well, such claims sound very strange. One of the reasons why Carl forked GUI was, that he did not agree to some concepts. So it really surprises me, that you plan to continue to work on VID, without any coordination ... that once again asks for later fork. I think that for Carl to explain/document his ideas would not mean more than few hours of his work ... |
if you do only preparation/documentation work right now, everything is ok then ... | |
Henrik 13-Feb-2010 [595] | The way we implement things is so they can rather quickly be pulled out again, if we have to and revert to the original VID3.4, and the implementations will be documented clearly. Since there is a business decision on the line, we can't afford to wait with implementation, even if Carl doesn't like it, but we still want to stay friends with him. :-) |
Pekr 13-Feb-2010 [596] | so we really are talking fork here :-) Well, I will be glad for any GUI for R3, that is a fact. It is just that I thought managing Carl for some 1-2 hours chat on some isolated group here would not hurt, and you would simply know, what Carl's plan is. I can understand business driven decisions ... but anyway ... |
Henrik 13-Feb-2010 [597] | I prefer to have our changes gradually being applied to the official VID3.4, rather than just declare it a fork immediately. But we'll see. |
Graham 13-Feb-2010 [598] | Any working GUI is preferable to an official broken one. |
amacleod 13-Feb-2010 [599x2] | Even if an official GUI is released tomorrow it will not be all things to all people and some will develop other gui's (rebgui, maxim's glass etc) why not start now as opposed to later. It need not be considered a folk of the offical vid...just an alternative choice. the official when released will be adopted if it works well enough so you won't be stepping on carl's toes. |
folk>fork | |
Maxim 13-Feb-2010 [601x3] | Guys, remember that Carl WANTS help? that means accepting ideas. especially from like-minded people. AFAIK, Henrik is closest to the source as to how Carl wants VID to evolve. So if you (Henrik) want to put time and effort while the next host gets released, I say GO! Its time this community stops asking "what does Carl want" all the time. He wants REBOL to be used. he wants his last 15 years of life to mean something to more than himself. Everything going into R3 is a direct response to what WE have been asking for the last decade. He wants R3 to be what WE need, within a few guidelines we all agree to in the first place. He wants REBOL to grow, and like a child that has grown... Some parts of REBOL will grow without him, others will grow with his counsel. |
We aren't followers of a sect, waiting for praise from the prophet. The more we take up projects and move them forwards without his daily intervention, the more the overall will be coordinated... right now, Carl is still too close to the code IMHO. which is why we don't have feedback on some of the projects we start work on (like schemes, for example). | |
The fact that brian has completely taken over parts of the development of R3, should be a clue, that there are other areas where this is possible. This is all just my two cents, but in the last year that I have been chatting with Carl and some of the people which have "taken responsibility" for some stuff in R3, the more Its obvious to me that Carl just wants the community to do more... to take up more responsibility. | |
Carl 13-Feb-2010 [604x2] | You got it right. |
BTW, the GUI project will be coming back to life soon... and I'll only be one of several people working on it. | |
Maxim 13-Feb-2010 [606] | ' :-/ <sheesh> didn't know you where on line hehehe. |
Carl 13-Feb-2010 [607x2] | I'm really glad you're posting it. You need a blog. |
I really like this line: "he wants his last 15 years of life to mean something to more than himself" I think of that every day. | |
Maxim 13-Feb-2010 [609x2] | :-) |
you should look at the REBOL3 /library group... quickly... give a bit of feedback on a proposed API I will start work on shortly. | |
Henrik 14-Feb-2010 [611x2] | Begun detailing the implementations here: http://rebol.net/wiki/R3_GUI_Implementation |
why is it that we can't use reflection functions on GOBs? | |
shadwolf 14-Feb-2010 [613] | Carl why 15 and not 30 ? |
Steeve 14-Feb-2010 [614] | Henrik, Some thoughts about the default STATES in faces. DISABLED --> (the face is removed from its container or not constructed) INACTIVE --> (not reacting to any events or actor, but still here and showed) READONLY --> (reacting to some events (TAB, CTRL+C ...) but not modifiable) HIDDEN --> (not showed but still in its container and can react (keep its place (spaced) on the screen)) |
Henrik 14-Feb-2010 [615] | hmm, yes, those are possible |
Steeve 14-Feb-2010 [616x2] | notice that we should be able to combinate some of them together. INACTIVE+READONLY INACTIVE+HIDDEN |
forget INACTIVE+READONLY | |
Henrik 14-Feb-2010 [618x2] | READONLY could be for information faces, which aren't INACTIVE. |
can you give an example of HIDDEN? | |
Steeve 14-Feb-2010 [620x3] | yes or for labels |
HIDDEN could be used in some view where some data must not be showed (dynamicly) to some users. | |
depending of user's rights | |
Henrik 14-Feb-2010 [623] | Would it be wise to have hidden faces that way? it would be easy to find the face information anyway through the console. There is another area, where it might be useful, but not sure: Tab panels, which hide entire panels of faces. |
Steeve 14-Feb-2010 [624x2] | Agree but all users are not developers, (they will not peek in the console ;-) |
BY combining INACTIVE + HIDDEN you can have several views of the same Panel. Detailed ones and a shortest ones. | |
Henrik 14-Feb-2010 [626x2] | well, I think we want realistic use-cases for each tag. HIDDEN might be useful in the context of "don't render this as it's hidden, it's a waste of time" |
yes, it might be useful there, but it seems that INACTIVE would be enough along with the original DISABLED. INACTIVE is what I call FROZEN. | |
Steeve 14-Feb-2010 [628x4] | In my version, DISABLED remove completly the face so that it's not constructed or activable anymore |
yes actually your FROZEN is the same as INACTIVE | |
Another usage for the HIDDEN state. To add a validation process not associated with something to show. For example, a component to check the rights of the user at the validation of a pannel. | |
Though, something like handling the rights should be server sided | |
Henrik 14-Feb-2010 [632] | My original DISABLED allows the face to still be rendered in a disabled fashion, which is good for forms. I'm not sure how useful it is to have your DISABLED after initial rendering, because you would actively have to remove the face.... although that presents some interesting possibilities for altering the face topology. There are already styles in R3 that don't render and that's handled differently. The idea for FROZEN was that it would be a first step toward using the same styles with altered behavior for a GUI editor. FROZEN was selected, because of the simple FREEZE-FACE/THAW-FACE names. READONLY seems the same as SELECT, but READONLY is probably a better name. HIDDEN seems like a cop-out to me. :-) If you want a security measure, elements that a user should not see should not be included at all. With my DISABLED, FROZEN/INACTIVE and READONLY, would that cover it? |
Steeve 14-Feb-2010 [633] | Let me think... I have to find a better usage for the HIDDEN state :) |
Henrik 14-Feb-2010 [634] | keep at it :-) |
Steeve 14-Feb-2010 [635x2] | About my DISABLED it's true that i'ts only usefull at the construction. I.E When You want to construct a pannel from an existing one. |
But it implies some inheritance capabilities, i don't know if it's possible currently | |
older newer | first last |