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

World: r3wp

[View] discuss view related issues

Geomol
27-Dec-2006
[6538]
*wikibook*
Pekr
27-Dec-2006
[6539x3]
Geomol - such an userguide, would be usefull, because first all usage 
schemas would have to exist on the paper first. It would be clear, 
we first have to think, because it would be even clearer, that new 
VID without things like proper focus system, keyboard support, etc. 
- is a no go ....
I several times posted Gnome usage guide as a reference ...
http://developer.gnome.org/projects/gup/hig/
Geomol
27-Dec-2006
[6542x2]
If someone make such a guide, it should be cleared with Carl, I guess. 
He probably has some ideas, and the wanted user interface should 
be within the frame of how REBOL work (and will work in the future).
I can't get this to work under OSX, so I want to know, if it works 
under Windows.

Does this example make the text position change when pressing the 
button?


view layout [button "Test" feel [redraw: func [face act pos] [if 
face/edge [face/edge/effect: pick [ibevel bevel] face/state] face/para/origin: 
pick reduce [face/para/margin + 0x1 face/para/margin] face/state]]]
Pekr
27-Dec-2006
[6544]
it seems to change ....
Geomol
27-Dec-2006
[6545]
Down one pixel? Try change 0x1 to e.g. 0x4 to better see the change!
Pekr
27-Dec-2006
[6546]
yes ... I have small dot effect on my notebook LCD, so I moved text 
to align with it. I can see it really goes down certain amount of 
pixels
Geomol
27-Dec-2006
[6547x2]
LOL this is really strange! I can get the text to move, if I change 
the position more than 0x1. 0x4 works, so does 0x2. Strange!??
Here under OSX, the text doesn't move, if I only tell it to move 
0x1. I'll report it somewhere.
Pekr
27-Dec-2006
[6549x3]
it definitely seems to move even 0x1 under W2K here ...
maybe OS-X uses two pixel precision ;-)
or isn't kind of font antialiasing on OS-X, which can "blur" it?
Geomol
27-Dec-2006
[6552]
The text is rock solid here when using 0x1. Using 0x2 moves it one 
pixel down.
Henrik
27-Dec-2006
[6553x2]
geomol, noticed the menu bar in the viewtop? looks like it's the 
same thing.
the first item is sitting a pixel too high.
Geomol
27-Dec-2006
[6555]
Just noticed. Weird!
Anton
27-Dec-2006
[6556]
Sounds like a font rendering bug.
Henrik
27-Dec-2006
[6557]
wonder if the cursor bug is also related. on OSX the cursor is sitting 
1-2 pixels too far to the right.
Geomol
27-Dec-2006
[6558]
Yes, and it's not just to the side, it's also a couple of pixels 
too far up.
Henrik
27-Dec-2006
[6559]
geomol, here's another one.

view layout [area 400x400]


paste a large amount of text in it. place the cursor to the far right 
on the top line and press cursor down. the cursor also moves to the 
left.
Geomol
27-Dec-2006
[6560]
It's a bit weird. I had thought, code to control these things were 
the same on all platforms.
Maxim
4-Jan-2007
[6561x3]
anyone know the algorythm by which I can convert raw event/time values 
(an integer which seems to be in milliseconds) into a time value?
event/time is different when comming from the wake-event, it seems.
I need to skip events which are too old... my current event mungings 
work, but are hard to adapt as refresh slows down... having this 
time accurately would allow me skip events
Geomol
4-Jan-2007
[6564]
If it's in milliseconds, try: to-time event/time / 1000
Maxim
4-Jan-2007
[6565]
hum  good guess.
Joe
15-Jan-2007
[6566x2]
resize-image: func [
	dest [file!]
	size [pair!]
	file [file!]
	/local im
][	
	im:		load-image file
	save/png 	dest to-image layout [origin 0x0 image (im) (size)]
	im:		none
]
i use the above function to resize images but it leaks on 1.3.2.4.2 
 Am I doing something wrong or is it a bug ?
Ryan
16-Jan-2007
[6568x3]
code looks good to me, though try: draw size [image im 0x0 size]
You might ask rambo group about it being a bug.
(notice you did)
Pekr
16-Jan-2007
[6571x2]
I know it is preliminary, but maybe we should rethink button design 
:-) If you try following, there is some visual effect, you see small 
circles among buttons :-)


do http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=periodictable.r
... but maybe it is because there is zero pixel space amongst buttons
Rebolek
16-Jan-2007
[6573]
there's nothing wrong with the cirles I think
Pekr
16-Jan-2007
[6574]
hey, - there is - they hypnotise me :-))
Henrik
16-Jan-2007
[6575]
actually moving the space between the buttons to -1 might improve 
the visuals a bit
Rebolek
16-Jan-2007
[6576]
as long as they're not changing their color and radius, it's hypnotizing 
level is OK i think ;)
Pekr
16-Jan-2007
[6577x2]
for the VID 2 (or better let's call it VID 3.0?), we should count 
with things like space for hilite and visual focus representation 
....
Rebolek :-))
Volker
16-Jan-2007
[6579]
Electrons should  jump randomly around, no? ;)
Pekr
16-Jan-2007
[6580]
but nice app indeed, no?
Volker
16-Jan-2007
[6581]
yes
Pekr
16-Jan-2007
[6582]
someone on ml suggested to turn it into plug-in version ...
Henrik
16-Jan-2007
[6583]
I suggest making a section in the viewtop for educational tools and 
put it in there.
Volker
16-Jan-2007
[6584]
i likethe idea. Isnt it  time for anothercontest  anyway?
Rebolek
16-Jan-2007
[6585]
it's one in five years, no? ;)
Volker
16-Jan-2007
[6586]
hoped  that  was5 month, and i missedone^^
Henrik
18-Jan-2007
[6587]
anybody made a VID text area that can handle large amounts of text 
without spending minutes to display the face?