Re: Default to 96dpi for the no config file case

2004-05-28 Thread Huw D M Davies
On Fri, May 28, 2004 at 01:59:02PM +0100, Mike Hearn wrote: On Fri, 28 May 2004 11:11:32 +0200, Rein Klazes wrote: Why do you mean (wrong) ? Do you not get the dpi values used by X? Or is it that is uses the X values but those are wrong? Well, I talked a bit with Huw about this so

Re: Take monospace fonts into account in default font selectionalgorithm.

2004-08-19 Thread Huw D M Davies
On Sat, Aug 07, 2004 at 04:20:11PM +0100, Mike Hearn wrote: @@ -1717,9 +1719,12 @@ } } +/* match on charset and style */ if(!family) { for(family = FontList; family; family = family-next) { - if(csi.fs.fsCsb[0] family-FirstFace-fs.fsCsb[0]) +

Re: cleanup w-a cross calls in printdrv

2004-08-29 Thread Huw D M Davies
On Sat, Aug 28, 2004 at 04:27:12PM -0400, James Hawkins wrote: Index: dlls/gdi/gdi_private.h === RCS file: /home/wine/wine/dlls/gdi/gdi_private.h,v retrieving revision 1.14 diff -u -r1.14 gdi_private.h --- dlls/gdi/gdi_private.h

Re: Add a test showing that GDI should not scale bitmap font metrics

2004-09-01 Thread Huw D M Davies
On Wed, Sep 01, 2004 at 05:44:19PM +0900, Dmitry Timoshkov wrote: Hello, I had a wild guess whether GDI actually scales or not metrics for a bitmap font if a requested font size is not available and wrote a test case for it. No, GDI *does not* scale bitmap font metrics. Well it does do

Re: Add a test showing that GDI should not scale bitmap font metrics

2004-09-01 Thread Huw D M Davies
On Wed, Sep 01, 2004 at 06:49:14PM +0900, Dmitry Timoshkov wrote: Huw D M Davies [EMAIL PROTECTED] wrote: I had a wild guess whether GDI actually scales or not metrics for a bitmap font if a requested font size is not available and wrote a test case for it. No, GDI *does not* scale

Re: RESEND: CreateDIBitmap: Don't create monochrome bitmaps

2004-09-06 Thread Huw D M Davies
Hmm, actually this requires more work, because although CreateDIBitmap is now correct, the patch is messing up the toolbar icons in IE... Huw. -- Huw Davies [EMAIL PROTECTED]

Re: fonts: wine_marlett

2004-09-17 Thread Huw D M Davies
On Thu, Sep 16, 2004 at 04:08:53PM -0400, Vincent Béron wrote: Le jeu 16/09/2004 à 15:58, Robert Shearman a écrit : Is there any policy for using it? E.g. a lot of the arrows and stuff in the native comctl32 are drawn using this font, so would we now be able to do this with our version of

Re: Terminal Font

2004-09-18 Thread Huw D M Davies
On Sat, Sep 18, 2004 at 02:34:29PM +0200, [EMAIL PROTECTED] wrote: I have a windows app that works really well under wine. I have placed the fonts from my XP workstation to my Fedora 2 wine directory in ./wine/windows/fonts/ so that I could have more fonts available to the app. My problem

Re: CreateDIBitmap fix

2004-09-18 Thread Huw D M Davies
On Sun, Sep 19, 2004 at 12:03:36AM +0200, Stefan Leichter wrote: fixme:bitmap:CreateCompatibleBitmap got bad width 6291527 or height 65537, please look for reason Grepping the logfile i found the values first in a call of CreateBitmap, but i have no idea where the values are created. I

Re: fonts

2004-09-20 Thread Huw D M Davies
On Mon, Sep 20, 2004 at 10:43:10PM +0200, Ivan Leo Puoti wrote: What is required to build /fonts? From configure.ac: dnl Only build the fonts dir if we have both freetype and fontforge if test $FONTFORGE != false -a -n $FREETYPELIBS then AC_SUBST(FONTSSUBDIRS,fonts) fi So you need

Re: fonts: 20 ppem Wine Sans Serif

2004-09-21 Thread Huw D M Davies
On Mon, Sep 20, 2004 at 08:50:07AM -0400, Dimitrie O. Paun wrote: What's the current status for fonts. I think they deserve a section under the UI Status: http://www.winehq.org/site/status_ui What do we have currently, in what state, what's left to do? Hi, We have replacements for MS

Re: System font width

2004-09-22 Thread Huw D M Davies
On Tue, Sep 21, 2004 at 07:40:17AM -0700, Jon Griffiths wrote: Hi, I have an app that calls GetObject on SYSTEM_FONT and then uses the returned LOGFONT.lfWidth in a calculation. Wine currently returns 0 for the width, which causes a divide by zero error here. Testing under XP home shows

Re: Rename Wine User Guide to Wine User's Guide?

2004-10-14 Thread Huw D M Davies
On Thu, Oct 14, 2004 at 07:11:59PM +0100, Paul Millar wrote: If it [the possessing object] does [end with an s], then add just the apostrophe. For example: if Simons owns a ball, which is red, then Simons' ball is red.) Actually this is generally regarded as archaic, at least in the UK[1] -

Re: x11drv: Add stretching support to AlphaBlend

2004-10-18 Thread Huw D M Davies
On Sun, Oct 17, 2004 at 10:34:28PM -0400, Kevin Koltzau wrote: Changelog: Add stretching support to AlphaBlend XRenderSetPictureTransform is a relatively new addition to libxrender, arriving just before XFree 4.3. I don't think we want the whole xrender stuff to fail if this specific function

Re: wineps: better pattern brushes

2004-11-02 Thread Huw D M Davies
On Tue, Nov 02, 2004 at 04:45:33PM +0100, Jakob Eriksson wrote: Isn't 300 a bit low? Almost all lasers do 600 dpi. That's exactly the point. Windows scales a pattern brush so that each pixel is around 1/300 inch, otherwise if it left the patterns at the device resolution they'd be hard to

Re: gdi/dib.c GetDIBits

2004-11-04 Thread Huw D M Davies
On Wed, Nov 03, 2004 at 09:24:08PM -0800, Walt Ogburn wrote: Changelog: Take color info from existing hdc instead of creating a new memory HDC. Index: dlls/gdi/dib.c === RCS file: /home/wine/wine/dlls/gdi/dib.c,v

Re: gdi/mfdrv BS_PATTERN brushes

2004-11-30 Thread Huw D M Davies
On Mon, Nov 29, 2004 at 09:16:49PM -0800, Walt Ogburn wrote: This fixes the problem that Emanuele Gisi reported last month in the Aloha problem. With this patch BS_PATTERN brushes get created correctly and don't cause a locking problem. Changelog: Fix creation of BS_PATTERN brushes in

Re: Perform automatic bitmap font configuration based on the current locale

2004-12-13 Thread Huw D M Davies
On Mon, Dec 13, 2004 at 11:39:58PM +0800, Dmitry Timoshkov wrote: Hello, due to a GDI bug new values don't actually work, and that's another thing I'm going to look at. Changelog: Dmitry Timoshkov [EMAIL PROTECTED] Perform automatic bitmap font configuration based on the current

Re: Using fontconfig

2003-09-07 Thread Huw D M Davies
On Sun, Sep 07, 2003 at 02:51:39PM +0100, Mike Hearn wrote: Hi to anybody who knows about fonts, It'd be nice to use fontconfig in future to locate font installation paths. There is a simple API: FcStrList FcConfigGetFontDirs (FcConfig *config); which should let us use a small part of

Re: text edit box not painting text ( on form startup )

2003-09-19 Thread Huw D M Davies
On Thu, Sep 18, 2003 at 08:41:19PM -0700, Doug Herbert wrote: ( I have posted a similiar question in wine-users, don't flame me for doing so, just thinking about this some more, perhaps it may be more a developer question ) Ok, I have a windows app, that runs under wine fine - not quite.

Re: Render strings longer than 128 characters as individual chars

2003-10-08 Thread Huw D M Davies
On Tue, Oct 07, 2003 at 01:03:08PM -0400, [EMAIL PROTECTED] wrote: (See attached file: patch_xrender_long_string.txt) This is most likely due to a buggy version of libxrender which Keith fixed with the attached patch to the XFree86 cvs. I'd suggest upgrading to a newer version of the

Re: Another symbol font fix

2003-10-30 Thread Huw D M Davies
On Wed, Oct 29, 2003 at 08:23:16PM +0100, Rein Klazes wrote: Hi, There are a couple of non-MS TT fonts on my system that only display rectangles in win98's charmap.exe. Wine recognize these to have a SYMBOL character set but Windows (win2k) does not. So libfreetype returning a character

Re: listbox: ownerdraw fix

2003-11-17 Thread Huw D M Davies
On Mon, Nov 17, 2003 at 09:59:20AM -0500, Dimitrie O. Paun wrote: Why not simply invalidate rect always, even when not in owner draw? Works for me. Aric Stewart [EMAIL PROTECTED] invalidate items on setselection. -- Huw Davies [EMAIL PROTECTED] Index: controls/listbox.c

Re: listbox: ownerdraw fix

2003-11-17 Thread Huw D M Davies
On Mon, Nov 17, 2003 at 10:33:33AM -0500, Dimitrie O. Paun wrote: On November 17, 2003 10:16 am, Huw D M Davies wrote: +if (LISTBOX_GetItemRect( descr, index, rect ) == 1) OK, I very sorry to nick pick so much, but this test is not only strange in C, but it's a bit dangerous as well

Re: Can I turn off freetype at runtime

2003-11-17 Thread Huw D M Davies
On Mon, Nov 17, 2003 at 09:14:51PM +0100, Lionel Ulmer wrote: On Mon, Nov 17, 2003 at 11:34:40AM -0800, Bill Medland wrote: Is it possible to turn off the freetype use at runtime, e.g. by changing something in the config file? From the sample config file : ; Use the Render extension to

Re: /dlls/gdi/freetype.c breakage

2004-01-19 Thread Huw D M Davies
On Mon, Jan 19, 2004 at 11:08:09AM +0100, Gerald Pfeifer wrote: The following patch to dlls/gdi/freetype.c revision 1.52 date: 2004/01/18 23:35:13; author: julliard; state: Exp; lines: +3 -4 Use the exported FONTENUMPROCW as parameter in the EnumDeviceFonts driver function

Re: Bug compatible?

2004-02-06 Thread Huw D M Davies
On Fri, Feb 06, 2004 at 02:51:10PM +0100, Fabian Cenedese wrote: Hi Looking for something else I found this in wine/objects/font.c: GetTextExtentPointA/W: TRACE(not bug compatible.); As funny as it is it doesn't say that much. Is this referring to a bug in Windows? And in what way not

Re: LOCAL: Not enough space in GDI heap

2004-02-09 Thread Huw D M Davies
On Mon, Feb 09, 2004 at 05:03:40PM +0100, Fabian Cenedese wrote: I hacked some more and need an advice. I changed font.cpp: CreateFontIndirectW a bit. Instead of always allocating a new gdi object it has a list of already allocated font objects and first tests if there was already a font

Re: Bug compatible?

2004-02-08 Thread Huw D M Davies
On Mon, Feb 09, 2004 at 09:00:45AM +1100, Troy Rollo wrote: On Sat, 7 Feb 2004 00:51, Fabian Cenedese wrote: GetTextExtentPointA/W: TRACE(not bug compatible.); As funny as it is it doesn't say that much. Is this referring to a bug in Windows? Actually, it does say much. Bug

Re: Compatability problem in wineps driver

2004-02-12 Thread Huw D M Davies
On Tue, Feb 10, 2004 at 12:33:46PM -0500, gslink wrote: It appears that a check needs to be made in ps.c. The method PSDRV_WriteSetFont passes the parameter size. In some early Win 95 versions there was a bug that required that parameter to be negative and some early windows programs make

Re: imagelist: convert to dibsections

2004-02-23 Thread Huw D M Davies
On Sun, Feb 22, 2004 at 10:54:31AM +0100, Maxime Bellengé wrote: I have submitted a patch which fixes the regression. Thanks for that Max, I missed that while merging from the CrossOver tree - our imagelist implementation has diverged somewhat from winehq's. Huw. -- Huw Davies [EMAIL

Re: mdi: remove child activate optimization

2004-03-15 Thread Huw D M Davies
On Sun, Mar 14, 2004 at 02:16:42AM +0300, Phil Krylov wrote: Hello Huw, Tuesday, March 9, 2004, 1:46:20 PM, you wrote: HDMD Huw Davies [EMAIL PROTECTED] HDMD We need to at least refresh the window menu in ChildActivate, HDMD so for now remove the 'is already

Re: mdi: remove child activate optimization

2004-03-15 Thread Huw D M Davies
On Mon, Mar 15, 2004 at 06:49:00PM +0300, Phil Krylov wrote: Hello Huw, Monday, March 15, 2004, 2:27:41 PM, you wrote: HDMD Hi Phil, HDMD Could you send me a +relay,+message,+mdi log of this please? It's around 1M in size when bzipped; do you want me to send it to your email at

Re: FONTS: fix Courier font

2006-03-06 Thread Huw D M Davies
On Mon, Mar 06, 2006 at 07:02:47PM +0300, Vitaly Lipatov wrote: В сообщении от 6 марта 2006 17:27 Вы написали: Vitaly Lipatov [EMAIL PROTECTED] wrote: What are you trying to fix? There is screenshot from notepad with Courier font selected in attachment. Do you see the same

Re: GDI32: freetype.c add more font selectinglinking mechanism support.

2006-03-07 Thread Huw D M Davies
As Mike has said the patch is too long to review properly, so please break it down into much smaller pieces. On Tue, Mar 07, 2006 at 04:29:04PM +0900, Byeong-Sik Jeon wrote: and, I add some basic registry value. Tahoma, Gulim, MS UI Gothic, Simsun, PMingLiU. One thing that caught my eye was

Re: GDI32: freetype.c add more font selectinglinking mechanism support.

2006-03-07 Thread Huw D M Davies
On Tue, Mar 07, 2006 at 08:22:36PM +0900, Byeong-Sik Jeon wrote: 2006-03-07 (화), 10:45 +, Huw D M Davies 쓰시길: As Mike has said the patch is too long to review properly, so please break it down into much smaller pieces. Yes. now working... Great. One thing that caught my eye

Re: GDI32: [1/5] freetype.c add more font selectinglinking mechanism support.

2006-03-07 Thread Huw D M Davies
On Tue, Mar 07, 2006 at 09:10:12PM +0900, Byeong-Sik Jeon wrote: ChangeLog: init_system_links support .ttc file. add Tahoma registry value for CJK font link. find_face_from_filename support .ttc file I think you could spilt out the 'add Tahoma registry value' bit from this

Re: GDI32: [4/5] freetype.c add more font selectinglinking mechanism support.

2006-03-07 Thread Huw D M Davies
On Tue, Mar 07, 2006 at 09:29:14PM +0900, Byeong-Sik Jeon wrote: ChangeLog: Improved create_child_font_list(), get_nearest_charset(), more using font-linking mechanism. If lfCharSet == DEFAULT_CHARSET, then ALL font(LOGFONT) can see current locale letter, (have to exist least one font

Re: GDI32: [1/5] freetype.c add more font selectinglinking mechanism support.

2006-03-07 Thread Huw D M Davies
On Tue, Mar 07, 2006 at 11:58:01PM +0900, Byeong-Sik Jeon wrote: 2006-03-07 (화), 14:22 +, Huw D M Davies 쓰시길: Why don't you just use tahoma.ttf in the code where you call find_face_from_filename, there's no point in initializing a char string like this. Yes. will be change

Re: GDI32: [1/5] freetype.c add more font selectinglinking mechanism support.

2006-03-07 Thread Huw D M Davies
On Tue, Mar 07, 2006 at 03:01:34PM +, Huw D M Davies wrote: The def* strings are supposed to be the default fallback names for the various fonts. Here you just want to use the string System, so please leave it as it was. Actually, what you really want to use is SystemW[]. The def

Re: opengl32: make the old code before the sync the dibsection to its pixmap patch be selectable at runtime.

2006-03-15 Thread Huw D M Davies
On Wed, Mar 15, 2006 at 12:21:56AM +, Mike Hearn wrote: On Tue, 14 Mar 2006 17:18:21 +0100, Leon Freitag wrote: I don't see any other way to speed this up the way it's being synced now, the question is however, whether the apps really _should_ modify the bitmap on windows too

Re: opengl32: make the old code before the sync the dibsection to its pixmap patch be selectable at runtime.

2006-03-15 Thread Huw D M Davies
On Wed, Mar 15, 2006 at 01:52:19PM +, Huw D M Davies wrote: On Wed, Mar 15, 2006 at 12:21:56AM +, Mike Hearn wrote: Does this very roughready patch work any better? I'm sure it's much faster, problem is it doesn't work. How do we know if the app has fiddled with the dib section

Re: GDI32: Using the FT_Sfnt_Name for font FamilyName

2006-03-15 Thread Huw D M Davies
On Mon, Mar 13, 2006 at 04:10:36AM +0900, Byeong-Sik Jeon wrote: ChangeLog: Using the FT_Sfnt_Name for font FamilyName Hi, This one could be broken down too. Start off with a patch that moves FontSubst to using the struct list stuff. Then try sending a patch that uses FT_Sfnt_Name. Thanks,

Re: GDI32: using the embeded bitmap in antialias mode

2006-03-15 Thread Huw D M Davies
On Mon, Mar 13, 2006 at 04:10:20AM +0900, Byeong-Sik Jeon wrote: ChangeLog: Using the embeded bitmap in the antialias mode. PS2. FT_Bitmap_Convert() is simple, but I used it. ftbitmap.h is define FT_Bitmap_Embolden(), and I will use it in the furure. Looks like FT_Bitmap_Convert is a

Re: GDI32: Fix logical error of italic,bold determination

2006-03-15 Thread Huw D M Davies
On Mon, Mar 13, 2006 at 04:10:04AM +0900, Byeong-Sik Jeon wrote: ChangeLog: Fix the logical error of the italic, bold determination. Index: dlls/gdi/freetype.c === RCS file: /home/wine/wine/dlls/gdi/freetype.c,v retrieving

Re: file.c:246: Test failed: shouldn't be able to delete a readonly file

2006-03-23 Thread Huw D M Davies
On Thu, Mar 23, 2006 at 06:04:21AM -0600, Tom Spear (Dustin Booker, Dustin Navea) wrote: Umm.. I'm not totally sure this is 100% in conformance with windows. When I try to delete a readonly file, I get a dialog telling me that it is readonly, and asking me if I really want to delete it. If

Re: file.c:246: Test failed: shouldn't be able to delete a readonly file

2006-03-23 Thread Huw D M Davies
On Thu, Mar 23, 2006 at 01:24:53PM -0500, Matt Finnicum wrote: I'm at a windows XP machine right now. I have no trouble deleting read-only files - I get the dialog informing me it's read-only, but then it allows me to delete it. Is it the same on 95/98? How are you trying to delete them?

Re: What is the reason to use GL_FRONT_LEFT in wglMakeCurrent()

2006-03-27 Thread Huw D M Davies
On Sat, Mar 25, 2006 at 02:23:01AM +0100, Tomas Carnecky wrote: GL_FRONT and GL_FRONT_LEFT mean the same unless the drawable is stereo. And I don't think PBuffers or Pixmaps can be stereo, so is there any special reason to use GL_FRONT_LEFT ? Or is it because the spec sais so? See man

Re: What is the reason to use GL_FRONT_LEFT in wglMakeCurrent()

2006-03-27 Thread Huw D M Davies
On Mon, Mar 27, 2006 at 05:32:12PM +0200, Tomas Carnecky wrote: Huw D M Davies wrote: On Sat, Mar 25, 2006 at 02:23:01AM +0100, Tomas Carnecky wrote: GL_FRONT and GL_FRONT_LEFT mean the same unless the drawable is stereo. And I don't think PBuffers or Pixmaps can be stereo, so is there any

Re: What is the reason to use GL_FRONT_LEFT in wglMakeCurrent()

2006-03-27 Thread Huw D M Davies
On Mon, Mar 27, 2006 at 05:05:23PM +0100, Huw D M Davies wrote: Ah right, glDrawBuffer alters the rendering state, that's bad. We should presumably be calling glXSwapBuffers here (but only in the GLXPixmap case). Which of course won't work either. We need to find out what happens

Re: Invisible fonts regression

2006-04-06 Thread Huw D M Davies
On Thu, Apr 06, 2006 at 01:49:52PM +1000, Troy Rollo wrote: On Thursday 06 April 2006 12:31, Troy Rollo wrote: On Thursday 06 April 2006 11:06, Tom Spear (Dustin Booker, Dustin Navea) wrote: I dont know if this will help, but it is worth a shot... Install fontforge from

Re: fonts: Add the Won sign in place of the backslash for Korean fonts

2006-04-06 Thread Huw D M Davies
On Thu, Apr 06, 2006 at 12:45:01PM +0100, Huw D M Davies wrote: Huw Davies [EMAIL PROTECTED] fonts: Add the Won Sign in place of the backslash for Korean fonts Actually could you ignore this for the moment? Dmitry's got a patch that's about to arrive that'll clash with this, and this one

Re: Dogfood gone runny: fonts awful in firefox

2006-04-08 Thread Huw D M Davies
On Fri, Apr 07, 2006 at 08:23:30PM -0700, Dan Kegel wrote: On 4/7/06, Dan Kegel [EMAIL PROTECTED] wrote: Seems like the recent font patches have caused trouble in both Firefox. In Firefox, I have to install corefonts for text to be legible at all lately. Is this expected? I should

Re: Missing fonts

2006-04-10 Thread Huw D M Davies
On Mon, Apr 10, 2006 at 07:19:46AM -0600, Vitaliy Margolen wrote: Monday, April 10, 2006, 6:57:13 AM, Dmitry Timoshkov wrote: Hmm I guess it doesn't work then: font.c:277: Test failed: Courier(13): tm.tmAscent 10 != 11 font.c:278: Test failed: Courier(13): tm.tmDescent 3 != 2 I think Courier

Re: Missing fonts

2006-04-10 Thread Huw D M Davies
On Mon, Apr 10, 2006 at 04:01:55PM +0200, Eric Pouech wrote: Dmitry Timoshkov wrote: Does 'make test' in dlls/gdi pass as well? The test fails if you have some other fonts installed. It shouldn't. Could you debug what's going on? We should only be running the tests if EnumFonts finds these

Re: Missing fonts

2006-04-10 Thread Huw D M Davies
On Mon, Apr 10, 2006 at 04:33:10PM +0200, Eric Pouech wrote: Huw D M Davies wrote: On Mon, Apr 10, 2006 at 04:01:55PM +0200, Eric Pouech wrote: Dmitry Timoshkov wrote: Does 'make test' in dlls/gdi pass as well? The test fails if you have some other fonts installed. It shouldn't

Re: Wine fonts too big for their input fields.

2006-04-12 Thread Huw D M Davies
On Tue, Apr 11, 2006 at 04:53:20PM -0700, Duane Clark wrote: Tony Lambregts wrote: We now have at least three bugs[1] where the program will not accept the all the characters that are required if we do not use native fonts. The latest bug report was reported just today and the reporter

Re: Wine fonts too big for their input fields.

2006-04-12 Thread Huw D M Davies
On Wed, Apr 12, 2006 at 08:55:09AM -0700, Duane Clark wrote: Huw D M Davies wrote: I had some fun with this a month or two ago. See the test_margins_font_change test and calc_min_margin_size in the actual code. The deal seems to be that for 'small' edit controls EC_USEFONTINFO results

Re: Cups printer detection in pre-built packages

2006-04-14 Thread Huw D M Davies
On Thu, Apr 13, 2006 at 03:49:39PM -0400, J.R. Oldroyd wrote: I've been discussing this with the maintainer of the FreeBSD wine port. Right now, detection of libcups.so is done by the configure script at compile time. This means that pre-built packages must either pull in cups as a port

Re: Documentation for CLEANLOCALSTORAGE in OLE Automation

2006-04-19 Thread Huw D M Davies
On Wed, Apr 19, 2006 at 12:24:07AM +0100, Robert Shearman wrote: Hi, I just thought I'd document the CLEANLOCALSTORAGE use in oleaut32 for anyone that wants to implement it, although I can't implement it now for obvious reasons. Great, thanks. I just sent a patch to wine-patches that

Re: Font selection logic defective?

2005-01-18 Thread Huw D M Davies
On Tue, Jan 18, 2005 at 12:08:17PM -0800, Bill Medland wrote: (Huw?) Do I need to dig deeper to understand this or is there a defect in the logic. If there are ttf fonts available does that mean a poor ttf match will be selected even when a better x11drv font is available? Yes that's

Re: Font selection logic defective?

2005-01-20 Thread Huw D M Davies
On Wed, Jan 19, 2005 at 05:58:59PM -0800, Bill Medland wrote: On January 18, 2005 03:00 pm, Huw D M Davies wrote: On Tue, Jan 18, 2005 at 12:08:17PM -0800, Bill Medland wrote: (Huw?) Do I need to dig deeper to understand this or is there a defect in the logic. If there are ttf fonts

Re: load_VDMX - is the check for bCharSet == -1 necessary?

2005-01-21 Thread Huw D M Davies
On Fri, Jan 21, 2005 at 03:49:33PM +1100, Troy Rollo wrote: In dlls/gdi/freetype.c, load_VDMX refuses to process ratio records in which bCharSet is 0. Looking at the meaning of bCharSet and the layout of the VDMX table http://www.microsoft.com/OpenType/OTSpec/vdmx.htm, I can see no rational

Re: Setupapi - (Take 2) implement MyFree, MyMalloc and MyRealloc

2005-01-24 Thread Huw D M Davies
On Sun, Jan 23, 2005 at 08:42:52PM -0800, Steven Edwards wrote: Changelog: Eric Kohl [EMAIL PROTECTED] Implement MyFree, MyMalloc and MyRealloc ... --- /dev/null 2005-01-23 12:40:28.0 -0500 +++ misc.c2005-01-23 18:50:33.0 -0500 +LPVOID WINAPI MyMalloc(DWORD dwSize) +{ +

Re: widl: propget method attr and number of args

2005-02-07 Thread Huw D M Davies
On Sat, Feb 05, 2005 at 12:21:39PM -0500, Vincent Béron wrote: Googling around, I found quite a lot of .idl files with a [propget] method which stated its arg, so I guess widl shouldn't reject them. Huw, could you comment on this please? This should be fixed by widl #36. Huw. -- Huw Davies

Re: Question about TrueType rendering

2005-02-07 Thread Huw D M Davies
On Mon, Feb 07, 2005 at 11:38:05AM -0500, Eric Frias wrote: I'm trying to get winelib working on a platform whose X server doesn't have native support for TrueType fonts. I've configured wine with freetype, but it never seems to display the TrueType fonts. I don't have xfsft or xfstt

Re: Installshield (with Roller Coaster Tycoon demo)

2005-02-21 Thread Huw D M Davies
On Mon, Feb 21, 2005 at 04:57:05PM +0100, Paul Vriens wrote: On Mon, 2005-02-21 at 15:16, Paul Vriens wrote: Hi (again), I've applied OLE#75 and OLE#76 and now I've something that doesn't look right: trace (without OLE75/OLE76 and with native stdole32.tlb):

Re: Add a stdole2 typelib

2005-03-28 Thread Huw D M Davies
On Sun, Mar 27, 2005 at 11:43:34PM -0500, Vincent Béron wrote: Robert, Huw: Do you have something else to add before this one goes in, or is Wine ready for it? Huw: I had to name the enum at line 181, else I'd get a SIGSEGV in widl. Would you mind trying to make it accept typedef enum {

Re: msi:Fix Typelib Registration

2005-03-28 Thread Huw D M Davies
On Mon, Mar 28, 2005 at 10:39:48AM -0600, Aric Stewart wrote: make sure the GUID of the typelib we are registering matches the guid requested from MSI. if not search the given typelib file to find the typelib requested to register. Index: dlls/msi/action.c

Re: winspool: some unicodification

2005-03-29 Thread Huw D M Davies
On Tue, Mar 29, 2005 at 12:26:47AM -0500, Dimitrie O. Paun wrote: ChangeLog Unicodify WINSPOOL_OpenDriverReg(). Index: dlls/winspool/info.c === RCS file: /var/cvs/wine/dlls/winspool/info.c,v retrieving revision 1.101

Re: dlls/dinput/mouse.c - GetDeviceState

2005-05-01 Thread Huw D M Davies
On Sun, May 01, 2005 at 10:32:24AM +0200, Lionel Ulmer wrote: On Wed, Jun 16, 2004 at 08:50:50PM +0200, James Dean Anderson wrote: this patch adds a missing errorcode in GetDeviceState in dlls/dinput/mouse.c which prevented the mouse to work in some game. Well, I finally found the time to

Re: shell32 icon indices and the intialization hack

2005-05-20 Thread Huw D M Davies
On Fri, May 20, 2005 at 11:58:18AM +0200, Michael Jung wrote: Hello, Since the application of this patch http://www.winehq.org/hypermail/wine-cvs/2005/05/0232.html the open folder icon isn't displayed correctly any more in the file dialogs. There's a note in shell32/iconcache.c which

Re: Change Name of Wine Marlett Font

2005-06-20 Thread Huw D M Davies
On Mon, Jun 20, 2005 at 01:10:11PM -0500, Robert Shearman wrote: Changelog: The Wine Marlett font needs to be called Marlett for Steam to pick it up. The font replacement mechanism should make this unnecessary. Why doesn't that work in this case? Huw.

Re: Change Name of Wine Marlett Font

2005-06-20 Thread Huw D M Davies
On Mon, Jun 20, 2005 at 01:37:45PM -0500, Robert Shearman wrote: Huw D M Davies wrote: On Mon, Jun 20, 2005 at 01:10:11PM -0500, Robert Shearman wrote: Changelog: The Wine Marlett font needs to be called Marlett for Steam to pick it up. The font replacement mechanism should

Re: Change Name of Wine Marlett Font

2005-06-21 Thread Huw D M Davies
On Tue, Jun 21, 2005 at 04:13:00PM +0200, Alexandre Julliard wrote: Robert Shearman [EMAIL PROTECTED] writes: Huw D M Davies wrote: You need something like this: [HKCU\Software\Wine\Fonts\Replacements] Marlett=Wine Marlett Thanks, that works. This patch is unnecessary. Except

Re: Change Name of Wine Marlett Font

2005-06-21 Thread Huw D M Davies
On Tue, Jun 21, 2005 at 04:50:50PM +0200, Alexandre Julliard wrote: Can't this be based on the font path, using the first font we find in the path? Then we just have to make sure the Windows dir is searched first. That would work if the Wine fonts end up in the Windows dir, but aren't they

Re: Change Name of Wine Marlett Font

2005-06-21 Thread Huw D M Davies
On Tue, Jun 21, 2005 at 05:42:53PM +0200, Alexandre Julliard wrote: Huw D M Davies [EMAIL PROTECTED] writes: On Tue, Jun 21, 2005 at 04:50:50PM +0200, Alexandre Julliard wrote: Can't this be based on the font path, using the first font we find in the path? Then we just have to make

Re: shell32: Printers folder

2005-07-08 Thread Huw D M Davies
-patches/2005/04/0127.html On 12.04.2005 13:13:27 Huw D M Davies wrote: This depends on 'shell32: Add unicode pidl type' Huw Davies [EMAIL PROTECTED] Add a printers folder. -- Huw Davies [EMAIL PROTECTED] Same Question as before. What's wrong ? I think

Re: Implement GdiGetCharDimensions

2005-07-18 Thread Huw D M Davies
On Mon, Jul 18, 2005 at 05:03:49PM +0200, Alexandre Julliard wrote: Robert Shearman [EMAIL PROTECTED] writes: +LONG WINAPI GdiGetCharDimensions(HDC hdc, LPTEXTMETRICW lptm, LONG *height) +{ +SIZE sz; +static const WCHAR alphabet[] = { +

Re: Implement GdiGetCharDimensions

2005-07-18 Thread Huw D M Davies
On Mon, Jul 18, 2005 at 05:24:42PM +0200, Alexandre Julliard wrote: Huw D M Davies [EMAIL PROTECTED] writes: Actually GetTextExtentPoint returns tm.tmHeight for cy, so there shouldn't be any difference. Ah right, in that case of course it makes no difference. But is that really

Re: File dialogs *should* browse to the directory when a directory name is typed in and the Open button or save button is clicked

2005-07-20 Thread Huw D M Davies
On Wed, Jul 20, 2005 at 04:18:55PM +1000, Troy Rollo wrote: This patch reverses the change made by change set 17928 http://cvs.winehq.org/patch.py?id=17928. Under windows if you type in the name of a directory these dialogs do browse to that directory. As far as I can tell 17928 does

Re: foward declare interfaces in stdole2

2005-07-21 Thread Huw D M Davies
On Thu, Jul 21, 2005 at 12:06:15PM +0530, Vijay Kiran Kamuju wrote: This fixes the below problem, same problem i faced with msxml interfaces and forward declarations fixed it. ChangeLog Forward declare interfaces This isn't what we want anyway, since it changes the order

Re: include/winsplp.h added

2005-08-08 Thread Huw D M Davies
On Sun, Aug 07, 2005 at 08:52:08PM +0200, Detlef Riekenberg wrote: Changelog: - File include/winsplp.h added As this is part of the ddk, it should probably go in include/ddk/winsplp.h Huw. -- Huw Davies [EMAIL PROTECTED]

Re: fontforge 20050729 insists on adding .ttf extension

2005-08-17 Thread Huw D M Davies
On Wed, Aug 17, 2005 at 02:25:29PM -0400, Pavel Roskin wrote: Hello! ChangeLog: fontforge 20050729 insists on adding .ttf extension even if the requested output file name ends with a dot. So let's use names ending with ttf. These are ttf files, and we are not even

Re: winspool: EnumPrinterDrivers

2005-09-10 Thread Huw D M Davies
On Fri, Sep 09, 2005 at 12:53:54AM +0200, Detlef Riekenberg wrote: Am Sonntag, den 07.08.2005, 19:16 +0200 schrieb Detlef Riekenberg: This Patch is not in CVS yet: http://www.winehq.org/pipermail/wine-patches/2005-August/019671.html Changelog: Let EnumPrinterDrivers return the

Re: winspool/tests: New Testsuite

2005-09-10 Thread Huw D M Davies
On Fri, Sep 09, 2005 at 12:50:26AM +0200, Detlef Riekenberg wrote: Am Montag, den 29.08.2005, 00:53 +0200 schrieb Detlef Riekenberg: This Patch in not in the CVS yet. http://www.winehq.org/pipermail/wine-patches/2005-August/020289.html Changelog: - New Testsuite for

Re: Perform automatic bitmap font configuration. Take 4

2005-09-13 Thread Huw D M Davies
On Tue, Sep 13, 2005 at 04:45:30PM +0900, Dmitry Timoshkov wrote: +static const struct nls_update_font_list +{ +UINT ansi_cp; +const char *oem, *fixed, *system; +const char *courier, *serif, *small, *sserif; +} nls_update_font_list[] = Hi Dmitry, I think you also need to

Re: Perform automatic bitmap font configuration. Take 4

2005-09-13 Thread Huw D M Davies
On Tue, Sep 13, 2005 at 06:21:22PM +0900, Dmitry Timoshkov wrote: Huw D M Davies [EMAIL PROTECTED] wrote: I think you also need to take into account the OEM codepage here. For example in the UK the OEM font would be vga850.fon while in the US it would be vgaoem.fon. Once Alexandre

Re: Wine/dlls/GDI/region.c - Optimization

2005-09-25 Thread Huw D M Davies
On Sun, Sep 25, 2005 at 12:35:09AM +, Petr Kobalicek wrote: Hi Wine team, I was reviewed some wine and XOrg code (I was writing a canvas library) and I have used XOrg region API (in wine project it's in /dll/GDI/region.c), I have done some optimizations in round (and elliptic) regions

Re: Stop-ship 0.9 problem

2005-10-03 Thread Huw D M Davies
On Sun, Oct 02, 2005 at 08:19:58AM +0200, Lionel Ulmer wrote: The only problem I see is with people having a self-compiled FreeType library with hinting enabled. Why cripple their configuration too by default ? Is there no way to detect at compile / run-time what kind of FreeType library we

Re: bug 2398: OpenGL, child windows, and wine

2005-10-19 Thread Huw D M Davies
On Wed, Oct 19, 2005 at 11:31:07PM +0200, Lionel Ulmer wrote: On Wed, Oct 19, 2005 at 10:24:32PM +0100, Huw D M Davies wrote: It's going to be used to enable OpenGL to draw on dibsections (ie PFD_DRAW_TO_BITMAP). The deal is that while you can use a Window as a glx drawable you can't use

Re: bug 2398: OpenGL, child windows, and wine

2005-10-21 Thread Huw D M Davies
On Thu, Oct 20, 2005 at 08:25:42PM +0200, Lionel Ulmer wrote: Ah I understand now. Do you know when the 'in DIB section' patch will be sent to wine-patches (maybe after the 0.9 freeze) ? Ok, here's a patch for fun. It has one really nasty hack that needs to be sorted out - that's how to keep

Re: msxml: remove a few guids

2005-11-07 Thread Huw D M Davies
On Mon, Nov 07, 2005 at 12:31:32PM +, Huw D M Davies wrote: Huw Davies [EMAIL PROTECTED] Remove a couple of unnecessary guids. Actually could you ignore this for the time being. The guids are needed to get the crosstests to build as mingw lacks these in its libuuid.a Huw

Re: powerpoint: images upside down

2005-11-28 Thread Huw D M Davies
On Mon, Nov 28, 2005 at 05:58:50PM +1000, Cihan Altinay wrote: Hi, When using MS Powerpoint 2003 images are drawn upside down in fullscreen (presentation) mode but not in design mode. Also, text is drawn correctly as seen on the attachments. I would appreciate a hint on what traces/logs

Re: [msxml] libuuid

2005-12-01 Thread Huw D M Davies
On Thu, Dec 01, 2005 at 10:02:25PM +0100, Raphael wrote: Hi, Changelog: - add needed uuid generation I don't think libuuid should contain the msxml2 uuids; at least the version I have doesn't. Huw.

Re: [msxml] libuuid

2005-12-02 Thread Huw D M Davies
On Thu, Dec 01, 2005 at 10:52:07PM +0100, Raphael wrote: On Thursday 01 December 2005 22:43, Huw D M Davies wrote: On Thu, Dec 01, 2005 at 10:02:25PM +0100, Raphael wrote: Hi, Changelog: - add needed uuid generation I don't think libuuid should contain the msxml2 uuids

Re: fixme:font:load_VDMX Failed to retrieve vTable

2005-12-09 Thread Huw D M Davies
On Fri, Dec 09, 2005 at 10:53:33AM +0100, Curro Amores wrote: hi my reports are not well displayed on my access97 app. fonts are displayed i anora location and separed I got this fixme fixme:font:load_VDMX Failed to retrieve vTable somebdoy knows how to fix it? It just means that the

Re: OpenGL regression

2005-12-09 Thread Huw D M Davies
On Fri, Dec 09, 2005 at 12:26:43AM +0100, Raphael wrote: For Stefan problem i don't understand how it can fail :( My guess is Stefan's XServer is glx version 1.2 (Stefan glxinfo will comfirm this). Looking at libGL, it uses the X_GLXVendorPrivateWithReply request with the vendor code

Re: OpenGL regression

2005-12-09 Thread Huw D M Davies
On Fri, Dec 09, 2005 at 02:25:15PM +, Huw D M Davies wrote: Looking at libGL, it uses the X_GLXVendorPrivateWithReply request with the vendor code X_GLXvop_GetDrawableAttributesSGIX when the server version is 1.3 (otherwise it uses the X_GLXGetDrawableAttributes request). Mesa doesn't

Re: opengl: Add support for rendering on bitmaps

2006-01-03 Thread Huw D M Davies
On Fri, Dec 30, 2005 at 05:51:54PM +, Tomas Carnecky wrote: Huw D M Davies wrote: Huw Davies [EMAIL PROTECTED] Add support for rendering on bitmaps This patch breaks World of Warcraft, reverting this patch makes WoW work again. This is the error: X Error of failed

  1   2   >