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

World: r3wp

[View] discuss view related issues

Anton
9-May-2005
[1064]
As a minimum copy the notes into a text file...
Henrik
9-May-2005
[1065]
when I get time... :-) I'm really hung up right now
Luis
9-May-2005
[1066]
Hi, i've a little problem is there a field property to limit the 
amount onf text an user can type in ? does it need to be coded or 
this is just impossible ?
Henrik
9-May-2005
[1067x2]
we talked about this not long ago...
http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-message.r?m=rmlCDDQ


this has some ideas. It's not easy unfortunately, but it can be done.
Maxim
9-May-2005
[1069x2]
hi guys, does opening a non-border window on linux garantee a window 
without borders in the later betas?
I remeber someone posting that x forces a border on some versions/builds 
of linux....
Ammon
9-May-2005
[1071]
It isn't X that forces the window border, it is the window manager 
(IIRC...)
JaimeVargas
10-May-2005
[1072]
Ammon is right.
Anton
11-May-2005
[1073]
Henrik, I've saved an extract to a text file, but I probably won't 
publish it for a while. Eventually it will go up, though...
Allen
11-May-2005
[1074x2]
Carl has slain one of the nasty recycle bugs. Yay! http://www.rebol.net/cgi-bin/rambo.r?sort=1&limit=1&cmd=Search&id=3403&pattern=
Fixed in test build 1.2.103
fixed in test build 1.2.103
DideC
12-May-2005
[1076]
I remember the problem with Rebol/view, Linux and foreign character 
input in field/area (spanish/portugese).
What was the solution, if any ?
eFishAnt
14-May-2005
[1077]
Does anyone know how to create "face in more than one pane"?
Gabriele
14-May-2005
[1078]
>> win: layout [t: text "hello" p: panel [text "in panel"]]
>> insert tail p/pane t
== []
>> view win

** Script Error: Face object reused (in more than one pane): hello
** Where: view
** Near: show scr-face
if new [do-events]
Volker
14-May-2005
[1079]
could such errors could add a field for the face? so that we can 
look into /stye and /facets? could help
[unknown: 10]
14-May-2005
[1080x2]
dt ws ht nws
sorry
Volker
14-May-2005
[1082]
encryption contest? ;)
[unknown: 10]
14-May-2005
[1083]
:)
eFishAnt
14-May-2005
[1084x5]
Volker....ditto from me.  (Gab? ;-)
in this case, 'win should also be shown in the Script Error.
oops, that is not right...hang on.
(I think there is a good set up here somewhere...)
it should be 'win. (too much caffeine)
François
14-May-2005
[1089]
Just my 1 cent contribution: there is a bug with the drop-down face 
when no action is set. The 'action facet defaults wrongly to 'show-dropdown, 
making the drop-down to freeze when the user does not override it. 
The fix is simply drop-down with [action: none]
Gabriele
15-May-2005
[1090]
françoise: please ad it to rambo if it's not there yet.
Micha
15-May-2005
[1091x3]
plis samples     set-it list ?
REBOL []
donnees: [
  ["un" 1 "rouge"]
  ["deux" 2 "vert"]
  ["trois" 3 "jaune"]
  ["quatre" 4 "bleu"]
]

view layout [ 
 list 300x200 [
    across 
    c1: text 100  [  c1/color: red ]

    c2: text 30
    c3: text 170
  ] supply [ print [ count index ]

   print [ face/font/color face/font ]



    ; SUPPLY est en fait une fonction avec 3 arguments :

    ; face=le facet, count=indice de la ligne, index=indice de la colonne

    face/text: either count > length? donnees [
      ""
    ] [
      to-string donnees/:count/:index
    ]
  ]
button "halt" [halt]]
what do to make  in order to  only  active column was red ?
shadwolf
15-May-2005
[1094x4]
I have a proble to submit to VID GURUS... My problem is the following 
I writing a click and scroll algorithm. (ike In MDP-GUI you have 
the floating toc window panel when you click on on of the title shows 
in the floating toc window the visualisation scroll to the related 
title. But this show the title on the middle of the screen and no 
on the top of the visualisation pane. The forumal I apply is sld/data: 
related-offet/y  / sub-pane-visualisation/size/y  and then I apply 
the scroll function. What must be the for mula to have always the 
related title in the visualisation pane on the top part of the screen
I make an image to show you the dilema I build an image that explain 
what is the actual problem and what I want http://shadwolf.free.fr/clic-scroll-img.jpg
for example title 4  with related-offse/yt: 1586 and sub-pan-visualisation/size/y: 
3142 i get a sld/data: 0.504774029280713 and I have the title around 
the middle of the visualisation box. If I use the scroller to place 
the title 4 on the top of the visualisation pane I get sld/data: 
0.602247191011236
I hope youcould helpme to solve this problem it's a long time since 
I'm trying to solve it
Volker
15-May-2005
[1098]
qick hack: if its always in the middle, subtract half your sub-pane/size/y 
+- something
Anton
16-May-2005
[1099]
Micha,
active-column: 1

supply [ ...   face/colour: either index = active-column [red][none] 
 ...]
DideC
16-May-2005
[1100]
Shadwolf: I guess first title is shown at top and last is shown at 
bottom, yes or no ?
Pekr
16-May-2005
[1101]
I  wonder why scrollers have such terrible lag on 1.8GHz pentium. 
Although new demo si cool, I wonder if REBOL it is not able to provide 
us with real-time feeling even if AGG is on-board?
[unknown: 10]
16-May-2005
[1102x2]
Will there be an 'save/svg option for it in 1.3 ?
I mean when SVG is supported will it be interactive for rebol gfx 
only or can it be exported also?
Pekr
16-May-2005
[1104x2]
I am not sure AGG supports SVG directly? I expect it being very capable 
vector engine, so we have to build kind of SVG parser plus viewer 
ourselves? Or am I wrong?
One of my friends who is back to Rebol after he tried other tools 
:-), would like to know, if there is any docs available on low-level 
= face-level View work. I found some, but he would like to see some 
comments onto how to create own styles. IIRC Graham or someone else 
tried to provide such descriptions ...
[unknown: 10]
16-May-2005
[1106]
I expect that the View 1.3 release will bring more inside / detailed 
documention as well on view. Although i realy hope RT can fix that 
intime its a absolute must :-)
Gabriele
16-May-2005
[1107]
petr: i think the best info available is that on the rebgui's site.
[unknown: 10]
16-May-2005
[1108]
the SVG view can be firefox/mozilla... thats why i asked if view 
can save/svg  ;-) that would extend Rebol View into a Very usefull 
SVG tool as well !!
Gabriele
16-May-2005
[1109]
about SVG: i don't think that will be supported natively. it's not 
that hard to do that in rebol, a cyphre has something working already.
[unknown: 10]
16-May-2005
[1110]
A great... if thats possible im happy already :)
JaimeVargas
16-May-2005
[1111]
Rebolinth anyone can write an SVG emitter, just like there is a Flash 
emitter. I think this complex and unique enough that it shouldn't 
be included in the base. But 3rd party script will do.
Pekr
16-May-2005
[1112]
I know - but RebGUI will not explain me how to construct styles, 
no? Those thigs like init method description etc. IIRC there was 
some attempt to write it down, so, links apreciated :-)
shadwolf
16-May-2005
[1113]
I solve my problem the good formula is sld/data: ((related-offset/y 
- (40 * scale)) / (docu/pane/size/y - docu/size/y )  )