Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Vincent Povirk
This doesn't have to be so hard. As far as I know, all any real application needs here is a stub. The stub has to claim success, but the values it gives do not have to be meaningful. If a real implementation were trivial, I would go ahead and write one anyway. It isn't so I won't. I'm not going t

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread James Hawkins
On Sun, Dec 7, 2008 at 11:50 PM, Vincent Povirk <[EMAIL PROTECTED]> wrote: >> You know, there is the only one way to figure it out: write a test case. > > That's not the answer to everything, you know. > > If I have a windows machine that does not have a taskbar, I can call > SHAppBarMessage to see

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Vincent Povirk
> You know, there is the only one way to figure it out: write a test case. That's not the answer to everything, you know. If I have a windows machine that does not have a taskbar, I can call SHAppBarMessage to see how I should report this to the app. But how do I get a windows machine without a t

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Dmitry Timoshkov
"Vincent Povirk" <[EMAIL PROTECTED]> wrote: > Does returning FALSE mean there's no taskbar? I have no idea. I can > think of only a few reasons the taskbar might be missing from Windows > machine that has an SHAppBarMessage implementation: > * explorer.exe is not running. > * You're using Windows

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Vincent Povirk
>> 3. If workarea == screen rect, lie. > > No, report that there is no a taskbar. > There's no clean way to do that. The MSDN documentation for ABM_GETTASKBARPOS says that it returns a bounding rectangle for the taskbar and a boolean. MSDN gives no indication of what the boolean result means, but

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Dmitry Timoshkov
"Vincent Povirk" <[EMAIL PROTECTED]> wrote: > I'll assume you mean something like this: > > 1. Look for a difference between the workarea bottom and the screen > bottom. If there is one, assume the taskbar is there. > 2. Check the other sides similarly. Yes, I ment something like that. > 3. If

Re: WineHQ - web development and graphics help

2008-12-07 Thread Andrew Fenn
> I am interested in working on the WINE website. I am an 18 years old > pre-med student currently employed as a web dev and graphics designer > in a small company. You should check out the mailing list last month. A new design is already being worked on.

WineHQ - web development and graphics help

2008-12-07 Thread Guillaume Pelletier
To whom it may concern, Hello! I am interested in working on the WINE website. I am an 18 years old pre-med student currently employed as a web dev and graphics designer in a small company. I was thinking of making a few aesthetic changes to the current WINE website. I am also skilled at graphi

Re: oleaut32: Fix OleLoadPicturePath behavior on wrong path (bug 14710)

2008-12-07 Thread Nikolay Sivov
Jeremy Drake wrote: > On Sun, 7 Dec 2008, Nikolay Sivov wrote: > > >> Changelog: >> - fix OleLoadPicturePath behavior on wrong path >> - some cosmetic changes on module and test (spaces, tabs, ..) >> > > Cool, this is related to what I was trying to get done. Please take a > look a

Re: oleaut32: Fix OleLoadPicturePath behavior on wrong path (bug 14710)

2008-12-07 Thread Jeremy Drake
On Sun, 7 Dec 2008, Nikolay Sivov wrote: > Changelog: > - fix OleLoadPicturePath behavior on wrong path > - some cosmetic changes on module and test (spaces, tabs, ..) Cool, this is related to what I was trying to get done. Please take a look at the more complete tests for OleLoadPicutre

comdlg32: includeobject needs to notify window with CDN_INCLUDEITEM

2008-12-07 Thread ricardo filipe
this is related to http://bugs.winehq.org/show_bug.cgi?id=8072 so... i decided to investigate why didn't media player classic show the files when browsing... i've been debugging this for some days but found the problem, although it's not quite solved, so if anyone has any idea please share. the

winecfg: Updated Swedish translation

2008-12-07 Thread Daniel Nylander
>From 59c3be5d897a901e2086781f090a036006f47296 Mon Sep 17 00:00:00 2001 From: Daniel Nylander <[EMAIL PROTECTED]> Date: Sun, 7 Dec 2008 20:52:55 +0100 Subject: winecfg: Swedish translation updated To: wine-patches <[EMAIL PROTECTED]> --- programs/winecfg/Sv.rc | 44 ++--

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Vincent Povirk
I'll assume you mean something like this: 1. Look for a difference between the workarea bottom and the screen bottom. If there is one, assume the taskbar is there. 2. Check the other sides similarly. 3. If workarea == screen rect, lie. That will often be wrong, and there's no clear benefit to doi

Re: d3d9 : do not proceed reset or release from another thread than the one which created the device.

2008-12-07 Thread Jérôme Gardou
Jérôme Gardou a écrit : > Henri Verbeet a écrit : > >> 2008/12/6 Jérôme Gardou <[EMAIL PROTECTED]>: >> >> >>> According to d3d9_private.h , ref is a LONG. >>> >>> >>> >> ref is not defined in d3d9_private.h. >> >> > Taken from d3d9_private.h : > > typedef struct IDire

Re: explorer: improve ABM_GETTASKBARPOS stub

2008-12-07 Thread Dmitry Timoshkov
"Vincent Povirk" <[EMAIL PROTECTED]> wrote: > Implement what? > > Linux doesn't have any concept of this "taskbar" thing. (Please bottom post). You can make a good guess where taskbar(s) present using monitor info. -- Dmitry.