Re: gdi32/path.c -- Allow PATH_ExtTextOut() handle nonprintablecharacters

2009-03-16 Thread Dmitry Timoshkov
"Massimo Del Fedele" wrote: This patch doesn't match the normal logic of ExtTextOut implemented in dlls/winex11.drv/xrender.c, also this requires a test case for both code paths. Why ? As is it now PATH_ExtTextOut() simply returns FALSE on first space or non-printable glyph, you can see eas

Re: How to enable font anti-aliasing in Wine?

2009-03-16 Thread Dmitry Timoshkov
"Anssi Hannula" wrote: Better if Wine would use fontconfig's configuration as set by desktop environment (~/.fonts.conf). That's not a very good idea, see http://bugs.winehq.org/show_bug.cgi?id=16745 for details. -- Dmitry.

Re: Registry: Set FontSmoothing as default enabled (AA)

2009-03-16 Thread Stefan Dösinger
Am Montag, 16. März 2009 17:46:17 schrieb André Hentschel: > Many people report they are missing AA, but its already implemented. > This Patch changes the wine.inf to enable it as default. I don't know how that would be done, but wouldn't it be better to read this on startup from the KDE/Gnome sys

Re: [riched20/tests] Changed tests for EM_FORMATRANGE

2009-03-16 Thread Lei Zhang
On Mon, Mar 16, 2009 at 1:01 PM, Paul Vriens wrote: > Hi, > > I've been playing with this and just wanted to see if anybody has comments > on > these changed tests. > > Tests succeed on Win95/Win98 and W2K3 with every possible resolution (as we > are not relying on the resolution anymore) and 96/1

Re: How to enable font anti-aliasing in Wine?

2009-03-16 Thread Anssi Hannula
André Hentschel wrote: > In my case there is no ~/.fonts.conf And you have antialiased fonts in gtk/kde/qt4/whatever applications anyway? That means so would wine if it used fontconfig. ~/.fonts.conf is just one way to set those up. It may also be set up in /etc/fonts or antialias=true could be th

[riched20/tests] Changed tests for EM_FORMATRANGE

2009-03-16 Thread Paul Vriens
Hi, I've been playing with this and just wanted to see if anybody has comments on these changed tests. Tests succeed on Win95/Win98 and W2K3 with every possible resolution (as we are not relying on the resolution anymore) and 96/120 dpi. -- Cheers, Paul. diff --git a/dlls/riched20/tests/edi

Re: How to enable font anti-aliasing in Wine?

2009-03-16 Thread André Hentschel
In my case there is no ~/.fonts.conf That depends too much on distribution and windows manager. I think it should be on by default and if there might be problems you can turn it off in registry.

WineHQ.org Downtime

2009-03-16 Thread Jeremy Newman
WineHQ.org (websites [www,appdb,bugzilla,forums,source,test], git, mailing lists) will be off-line tomorrow starting at 10:00 CDT and lasting at least 2 hours. We will be putting up a temp website that will display an off-line message during the duration of the downtime. This is the planned

Re: wldap32: Silence a compiler warning.

2009-03-16 Thread Dmitry Timoshkov
"Michael Stefaniuc" wrote: Alexandre doesn't want to accept that patch. See http://www.winehq.org/pipermail/wine-devel/2009-January/072151.html Hmm, clearly there are other places in that file that already do casting, and that's the only place where there is no one. -- Dmitry.

Re: wldap32: Silence a compiler warning.

2009-03-16 Thread Michael Stefaniuc
Dmitry Timoshkov wrote: > --- > dlls/wldap32/parse.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/dlls/wldap32/parse.c b/dlls/wldap32/parse.c > index f7e93dd..6439ba6 100644 > --- a/dlls/wldap32/parse.c > +++ b/dlls/wldap32/parse.c > @@ -444,7 +444,7 @@ INT CDECL

Re: gdi32/path.c -- Allow PATH_ExtTextOut() handle non printablecharacters

2009-03-16 Thread Massimo Del Fedele
Dmitry Timoshkov ha scritto: "Massimo Del Fedele" wrote: PATH_ExtTextOut() uses GetGlyphOutlineW() which can return a NULL buffer size not just on errors but also on non-printable glyphs. Instead of aborting the function should check for such cases, get the metrics and continue. This patch

Re: How to enable font anti-aliasing in Wine?

2009-03-16 Thread Anssi Hannula
Igor Tarasov wrote: > Just in case anyone interested, some time ago I've written script to > simplify enabling font smoothing and choosing the type one needs. Here > it is: > http://files.polosatus.ru/winefontssmoothing_en.sh > > Russian version (in case anyone needs it): > http://files.polosatus.

Re: riched20: add tests for EM_FORMATRANGE

2009-03-16 Thread Paul Vriens
Paul Vriens wrote: James McKenzie wrote: Lei Zhang wrote: On Fri, Mar 13, 2009 at 12:01 PM, Paul Vriens wrote: Lei Zhang wrote: Hi, In my last attempt, I submitted Troy Rollo's EM_FORMATRANGE implementation and with my test cases. I'm not sure what was wrong with the implementation, b