World: r3wp
[!REBOL3-OLD1]
older newer | first last |
Chris 28-May-2007 [2856] | And that reflects on the impression an app makes. |
BrianH 28-May-2007 [2857] | Differences in operating systems may not be much, but differences in modes of interaction between different platforms can be immense. It would be inappropriate to run View at all on my cell phone - no mouse, no touch screen. But you can still do UIs, just different. |
Chris 28-May-2007 [2858] | Then why are you suggesting that my Views apps be limited by that? |
Pekr 28-May-2007 [2859] | Chris - OK, but where do we end? Mozilla uses XUL, IIRC Firefox linked to native widgets. Then let's scrap View - what is it good for? Just use Core, link to OS, fair enough - no custome styles? Why those, if target OS does not provide them? What comes next? Someone shooting fields looks ugly too? Look at html forms - 1 think line fields are modern. Non shadowed. We will end with hybrid. |
Chris 28-May-2007 [2860] | Regardless, I've made an argument in the past that View be less literal, and open to interpretation by different media. Hence a 'CSS approach'. |
Pekr 28-May-2007 [2861] | 1 pixel thin line ... |
BrianH 28-May-2007 [2862] | Roll-your-owns are often inferior to the OS default on recent OS X, but were not necessarily so on earlier versions of OS X before it was polished. Some developers are still better than Apple in that respect. BTW, the worst of the roll-your-own developers on OS X nowadays is Apple - they don't follow their own UI conventions anymore. |
Pekr 28-May-2007 [2863] | well, I remember that - that is why I asked the group what did you mean by that. By then - it is even less OS compatible way and even more free-form way ... it is not just skinning ... |
Chris 28-May-2007 [2864] | I think there does have to be a balance. Ultimately, what is more important? The compositing engine or the language? |
BrianH 28-May-2007 [2865] | On other platforms the system standards are often bad, useless or missing. Windows and Linux come to mind. |
Pekr 28-May-2007 [2866x2] | Adobe Lightroom - where is your OS native look? :-) |
Look and compare Windows XP to Windows Vista - have you looked e.g. at file requestor? It is FUNDAMENTALLY diffeent, more like different OS to different OS .... | |
Chris 28-May-2007 [2868] | Petr, I agree -- OS native isn't everything. |
Pekr 28-May-2007 [2869] | Chris, please, what was your idea about layout being one-way definition, and that it is different to html plus css? I can't remember it ... |
BrianH 28-May-2007 [2870] | That is why I said run-everywhere-applicable. I don't want View developers to be limited by my cell phone. |
Chris 28-May-2007 [2871x2] | But, it is better than most roll-your-owns. Do you have Adobe's UI designers to hand in your projects? |
Brian, I think I get what you're saying -- roll-your-own at a sub-language level. I think that's fair. | |
Pekr 28-May-2007 [2873] | if things are abstracted via dialect, I am ok with that, if there is another layer, configuration one. It is like we are coding UBICOM CPU, and in the configuration part we choose, if we use hw UART, or sw emulated one - the app (code) does not care, still the same code ... |
BrianH 28-May-2007 [2874x2] | I mean that the specification of a menu dialect is not the same as its implementation. The specification can be cross-platform as applicable, but the implementation is paltform specific. Just make sure that decent UI designers are available to the platform implementors and you should be fine. |
End developers would just declare their menus in the cross-platform dialect and trust the dialect processor to do the work. Unless they don't, and decide to replace the dialect processor, or do something completely different. | |
Chris 28-May-2007 [2876x2] | Petr, I really don't recall specifics of arguments I made years ago. My thinking has evolved, and I may not be able to make the same argument today. |
CSS tells a browser a) how gobs (rebol terminology) should look, and b) how gobs fit together. As the UI model (or DOM) is altered, the browser readjusts but still remembers how things fit together. In View, you have to define these relationships programatically (and therefore delve to a lower level than you intended) | |
Pekr 28-May-2007 [2878] | could it be solved in layout? |
BrianH 28-May-2007 [2879] | It could be solved by a less static layout engine. That would mean rewriting VID and View. Good thing that is being done anyway. |
Pekr 28-May-2007 [2880] | would it be a benefit to have it awailable? |
Gabriele 28-May-2007 [2881] | Chris: linux does not have a menu system. |
Chris 28-May-2007 [2882] | While I don't understand the Linux desktop world all that well, would it be fair to say it'd require flavours -- Gnome, KDE and Custom? Regardless, my hypothetical example (or what ever language-level solution is employed) should work in a manner consistent with the host environment (where possible, otherwise Rebolly consistent) whichever platform version of /View I download. Where I think I misunderstood Brian is that *in my Rebol script* I do not want to say -- unless find [2 3] system/platform/4 [... implement a custom menu system of which I have to pick or design my own ...] |
[unknown: 9] 28-May-2007 [2883] | Many years ago, before Rebol, I designed a language called MIDAS (Machine Independent Demonstration and Animation System). Unlike most acronyms, this really was exactly what the language was for. It had a lot in common with Rebol, and worked on lists of words or data. Its goal was simple, to work backward from what we know all systems need in order to demonstrate and present UI and animations (video). We were reinventing the wheel, every time we made something. I knew for example that there had to be a screen, although some systems might be Bitmaps, some might be bitplanes (the Amiga), and some where character maps (C64). That the system might or might not have double buffering, etc The idea was to have the language work backwards from the goal, and to have code that would force all the media assets to conform. So for example, you have an image, and you want to show it. Show image.jpg I designed this as P-code, but the point is the same. You would then execute the program MIDAS on the code in the first pass. It would ask you questions about parts of the code. The image here would be in question. So an images process batch would be created for each image. Allow the image to be processed from the original, or built by hand (in the case of the C64 which only had a few colours per 8x8 square). The reason I'm explaining all of this is that the Menu system you describe is the same issue. Most menuing systems are the same, or close enough. The worst case is some special handling, for shortcuts, or for allowing items to be checked inside the Menu (the Amiga had this, I loved it!). But the code should look effectively the same. |
Chris 28-May-2007 [2884] | Yes. |
[unknown: 9] 28-May-2007 [2885] | The cool function MIDAS had where the drawing functions, which kicked ass. All drawing functions generated XY pairs, which could be embedded inline. So a Circle on the C64 would make 320x240 based pairs, while the Amiga might make 640x480. This made the functions very fast. You could also use this to make paths that objects could follow. |
Volker 29-May-2007 [2886] | I suggest cheating. Start with this cool round menu and say "wel, platform lacks it anyway :) |
PeterWood 29-May-2007 [2887] | Why GOB isn't a great name Gob is commonly-used word in Britain and Ireland Your Gob is your mouth. Gob Shite is a particularly Irish experssion to be used when somebody is talking rubbish. To Gob on somebody means to spit on them. A Gob refers to a portion of flem ejected from the mouth through the action of Gobbing (Spitting). |
Pekr 29-May-2007 [2888x2] | why not face! ? |
short, known ... | |
Anton 29-May-2007 [2890] | Lets not try to rename GOB now. What's that going to achieve ? Confusion, fighting - we are not going to agree on a new one easily. Then, at the end, RT will probably not like our name. There are probably lots of docs with "gob" in them now. Renaming would cause rewriting them all. - Not worth it. |
Pekr 29-May-2007 [2891] | lot's of docs? What docs? :-) |
Anton 29-May-2007 [2892] | Instead of arguing, I propose we spend our time doing something productive, like reversing caret-to-offset and fixing that long-standing issue. |
Pekr 29-May-2007 [2893x2] | of course we can't push Carl to rename it, but the truth it, that it sounds a bit weird :-) And we know that Carl cares for naming conventions, right? My proposition was - that if 'feel stays, we can stick to what we have - feel, face, facet ..... and if face is gone? Currently it is not a datatype, but an object, so my proposition was easy - juste let's doc that from R2 to R3, face became a datatype :-) |
but as for me - the name is not all that important to me. | |
Henrik 29-May-2007 [2895] | rebol already has some funny names, like 'attempt, 'feel, 'what, but if gob! has a negative connotation, perhaps it would be a good idea to look for something else. still, GOB is in family with BLOB and BOB and other data related words. What about GROB? |
Anton 29-May-2007 [2896] | Bah - everything new is wierd. |
Henrik 29-May-2007 [2897] | anton, isn't this a simple matter of a search/replace in the global source tree of rebol 3? if there is a time to make a deal out of it, it should be now. |
Louis 29-May-2007 [2898] | I agree with Anton on changing names. In fact, I have totally changed my mind about renaming REBOL or any parts of it. The reason is that it would make obsolete all the documentation, etc. It would be like throwing all that work away, and would cause terrible confusion. I was perhaps the most strongly in favor of a name change, but after thinking about it more deeply I've decided I was wrong. Also, I think that REBOL has been around long enough that a fairly long number of programmers have at least heard of it. And now that R3 is coming out, it is very likely that a lot of people will start to give it more attention. So this is not the time for change. |
Pekr 29-May-2007 [2899] | Louis - correct, and that is why I think it should be called face!, so the name would stay, it would just change its type from object to datatype :-) |
Henrik 29-May-2007 [2900] | but this is one word in R3... there are no docs yet on it. I would assume that the naming and design phase of R3 is not yet entirely complete. so if there is a time to rename things, this is the best time to do it. |
Volker 29-May-2007 [2901] | in paint programms its called layer? |
Pekr 29-May-2007 [2902x2] | ah, layer, I like it. Most ppl working with photoshop or in general, will know it .... how is it called in web world? a box? (css) |
I remember box in some old ZX Spectrum basic :-) | |
Louis 29-May-2007 [2904] | Well, if there are no doc yet, then a change may be in order. But for names already in docs I hold to what I said. |
Volker 29-May-2007 [2905] | layer would imply that we have paint-functions like alpha. which we have :) |
older newer | first last |