TextOut text removed if hbrBackground is set

2003-09-11 Thread Igor Grahek
I have problem with following example. If wc.hbrBackground is set (line 16) text printed with TextOut is overpainted with that color. If I comment out that line everything is OK. Under windows this works fine. - code begin --- WNDCLASS wc; HWND hWineTest2Wnd; HD

RE: TreeView control - set correct hwndNotify

2003-09-11 Thread Igor Grahek
fy == HWND_MESSAGE) +infoPtr->hwndNotify = GetParent(hwnd); but not removed. Igor > -Original Message- > From: Alexandre Julliard [mailto:[EMAIL PROTECTED] > Sent: September 10, 2003 6:31 PM > To: Igor Grahek > Cc: [EMAIL PROTECTED] > Subject: Re: TreeView control

RE: TreeView control - set correct hwndNotify

2003-09-09 Thread Igor Grahek
replaced. Luckily most of control implementations are already forwarding lpcs to *_Create functions. Igor > -Original Message- > From: Dimitrie O. Paun [mailto:[EMAIL PROTECTED] > Sent: September 9, 2003 10:35 AM > To: Igor Grahek > Cc: [EMAIL PROTECTED] > Subject: RE:

RE: TreeView control - set correct hwndNotify

2003-09-09 Thread Igor Grahek
EMAIL PROTECTED]; Igor Grahek > Subject: Re: TreeView control - set correct hwndNotify > > > On September 8, 2003 03:52 pm, Igor Grahek wrote: > > ChangeLog: - TreeView control set Notify window correctly > in case that > > window style is WS_POPUP. > > Please

RE: TreeView & WM_NOTIFY

2003-09-08 Thread Igor Grahek
CREATESTRUCT. I fixed this for TreeView control (patch sent to wine-patches) but same problem can be expected for other controls which use WS_POPUP style and then set notify window handler to GetParent(hwnd) Igor > -Original Message- > From: Igor Grahek [mailto:[EMAIL PROTECTED]

RE: TreeView & WM_NOTIFY

2003-09-05 Thread Igor Grahek
c I tried to figure out what is going on with hooks but I don't have much experience with windows hooks so I will appreciate any help. Thanks, Igor > -Original Message- > From: Igor Grahek [mailto:[EMAIL PROTECTED] > Sent: September 5, 2003 11:29 AM > To: '[EMAIL

RE: TreeView & WM_NOTIFY

2003-09-04 Thread Igor Grahek
c (I'm currently examining SWP_DoOwnedPopups function) and why it is working with --dll comctl32=n - no problems with Z order there?! BTW I'm working with 20030618 build. Igor > -Original Message- > From: Dimitrie O. Paun [mailto:[EMAIL PROTECTED] > Sent: September 2

TreeView & WM_NOTIFY

2003-09-02 Thread Igor Grahek
Hi :) My problem is very similar to bug 1227 (http://bugs.winehq.org/show_bug.cgi?id=1227) Treeview in application is sending WM_NOTIFY on double click (NM_DBLCLK) to the wrong Window handle. GetParent() function returns handle to the root window and root window is not forwarding/broadcasting that