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

World: r3wp

[!REBOL3 GUI]

Henrik
15-Jan-2010
[91]
they are all styles
Graham
15-Jan-2010
[92]
How do I download all the files I see with 'ls ?
Henrik
15-Jan-2010
[93]
get *
Graham
15-Jan-2010
[94x2]
thnx
So, I guess I need to wait a couple of months ....
Henrik
15-Jan-2010
[96]
yes, probably a good idea
Pekr
15-Jan-2010
[97]
Yes, the result of constant "topic jumping" during the development 
:-)
Graham
15-Jan-2010
[98x2]
Sigh ...
I presume I can change the font used to a monospaced font ...
Henrik
15-Jan-2010
[100]
you can, if you can find where the font specification is used in 
the list, but you want to create a new style that uses that font.
Graham
15-Jan-2010
[101x4]
noob question ....  how can I define a function that accesses a field 
before the layout is created?
I used to use 

l: layout [ f: field ]

and then write my function access f after the layout was created.

Now we have 

view [ layout block ]
...
My first gui script http://rebol.wik.is/Rebol3/R3_GUI/Sendfax.r


I'd like to have the output from net-log appearing in the area .. 
but I can only get it do that once  and then nothing ...
oh .. and the fax was successfully sent :)
Graham
16-Jan-2010
[105x5]
control-C to try and copy text in an error causes the console to 
crash
in an area causes console to crash
I wrote this to try and update the area with network trace

			set 'net-log funct [  txt /c /s][
				data: rejoin [ get-face a1 newline txt ]
				if c [ data: join "c: " data ]
				if s [ data: join "s: " data ]
				set-face a1 data
				set-face/field a1 tail get-face a1 'locate 
				wait .1 ; update gui
				txt
			]
but it doesn't work because get-face is async
so I need some callback instead ...
so my area ends up with a row of 

c: s: c: ....
before any real text appears
Pekr
19-Jan-2010
[110]
Could Open Web Font Format be of any use for us, to solve our font 
problems?

http://hacks.mozilla.org/2009/10/woff/
Henrik
19-Jan-2010
[111]
Do we have font problems in R3?
Pekr
19-Jan-2010
[112]
yes, we can't use some techniques as Hinting, no? I thought that 
some open-source cross-platform aproach might cure the situation 
...
Henrik
19-Jan-2010
[113]
I would assume that would simply be an extension of the rich text 
dialect and exposing more options from the AGG font renderer:

[hint 1 "abc" hint 0.8 "def" hint 2 "ghi"]
Cyphre
19-Jan-2010
[114x2]
We are using hinting. But on platforms where FreeType2 lib is used 
the hinting results can be not nice. This is because it depends how 
FreeType lib is compiled (either with the Apple hinter, or with the 
free non-commercialy licenced alternative)
Henrik, yes HINT x y keyword can be added to the dialect. But IMO 
this can be useful only in case you have own vector glyphs and own 
simple font engine. For example the TrueType hinter is kind of language 
for itself so it can be pretty complex.
Pavel
19-Jan-2010
[116]
Hints should be built-in in font definitions (ie hint table or kerning 
pairs table) what Henrik sugest seems to me like kerning information. 
Hints should be active when rendering to "low" resolutions happens, 
acording to standards I've read long, long ago.
Henrik
19-Jan-2010
[117]
Sorry, I was mistaking kerning with hinting.
Pavel
19-Jan-2010
[118x2]
Hinting should make all rounding to be the sam at distinct resolution, 
ie it solves recomputation vrom vector information (float) to integer 
screen information, trying to make all significant sizes the sam 
at some distinct resolution.
appologize for writing errors
Henrik
19-Jan-2010
[120]
hinting is also important in general in DRAW
Pavel
19-Jan-2010
[121x2]
Sure but I'd think there is some font engine inside what solve this, 
or are we writing the font engine from scratch?
Hinting have mainly influence in rendering of "Stems" simplified 
it means all vertical lines will be the same width in my Ailal font 
I,L,M letters at some resolution. Having nothing to do with spaces 
between letters. Kerning is what is for inter letters spaces bussiness.
Cyphre
19-Jan-2010
[123]
Pavel, yes, you are right. We switched the terms in the discussion 
above. I've been  mainly refering to this informaiton: http://en.wikipedia.org/wiki/TrueType#Hinting_language


AGG have kind of font manager module. The font manager basically 
takes vectorial glyph data (which are provided by Win API or FreeType 
lib, quartz etc.) then the glyphs are converted to scanlines and 
stored in font cache...

So this way we are depending on the vector glyph data provided by 
platform specific font frameworks.

The problem lies in the fact the hinting language(see link above) 
is patented by Apple so it is not possible to get the correct font 
glyph data without breaking the patents (or paying Apple).

That's the reason why fonts on Linux or FreeType based platforms 
can't look so nicely hinted as on Windows/OSX.
BrianH
19-Jan-2010
[124x2]
How much is that Apple license?
Any chance we can use this? http://www.antigrain.com/research/font_rasterization/index.html
Cyphre
19-Jan-2010
[126]
Brian,
Apple licence cost: I don't know.

the link: I hope we'll be able to use it but it would need some more 
research work.
Henrik
19-Jan-2010
[127]
http://www.mail-archive.com/[fedora-fonts-list-:-redhat-:-com]/msg00879.html

Did it expire?
Carl
19-Jan-2010
[128]
It should be expiring quite soon. All that started back in the '80s.
Graham
19-Jan-2010
[129]
Is there any easy fix to trap Control-C in a text field ... so that 
it doesn't kill r3?
shadwolf
20-Jan-2010
[130x4]
cyohre i noticed the glyph engine years ago in AGG C++ version and 
i asked at that time why that wasn't existing in view adaptation
and got never an answer (well that's not the first)
cyphre unfortunatly  win32API is abandonned on vista and  seven (widows 
6 and 7) so the font rendering is not good look at the picture here 
that shows the differences
http://my-trac.assembla.com/shadwolforge/wiki
Maxim
20-Jan-2010
[134]
fyi, I must say I seem to recall having cursor positioning issues 
on XP also in area-tc.
shadwolf
20-Jan-2010
[135x2]
maxim ?
as far i tryed on windows XP area-tc lastest was working perfectly
Maxim
20-Jan-2010
[137]
though I haven't played around with the latest versions...  and its 
been a very long time, so it could be that I tested it just before 
my vista install crapped out.
shadwolf
20-Jan-2010
[138x3]
but the true thing is windows XP have  10  years now it's more than 
deprecated OS. If the font probleme on R2 cant't be solved ok i'm 
ready to wait other year to get a R3 draw/font relation working perfectly 
everywhere. The lessons of area-tc are:
1)
1) it's possible