http://bugs.winehq.org/show_bug.cgi?id=2695
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 10:05 -------
Here is the offending DIFF:
diff -urN wine-20040916/dlls/user/edit.c wine-20040917/dlls/user/edit.c
--- wine-20040916/dlls/user/edit.c Fri Feb 4 11:21:16 2005
+++ wine-20040917/dlls/user/edit.c Fri Feb 4 14:41:11 2005
@@ -4423,13 +4423,18 @@
/*
* In Win95 look and feel, the WS_BORDER style is replaced by the
* WS_EX_CLIENTEDGE style for the edit control. This gives the edit
- * control a non client area. Not always. This coordinates in some
- * way with the window creation code in dialog.c When making
- * modifications please ensure that the code still works for edit
- * controls created directly with style 0x50800000, exStyle 0 (
- * which should have a single pixel border)
+ * control a nonclient area so we don't need to draw the border.
+ * If WS_BORDER without WS_EX_CLIENTEDGE is specified we shouldn't have
+ * a nonclient area and we should handle painting the border ourselves.
+ *
+ * When making modifications please ensure that the code still works
+ * for edit controls created directly with style 0x50800000, exStyle 0
+ * (which should have a single pixel border)
*/
- es->style &= ~WS_BORDER;
+ if (lpcs->dwExStyle & WS_EX_CLIENTEDGE)
+ es->style &= ~WS_BORDER;
+ else if (es->style & WS_BORDER)
+ SetWindowLongW(hwnd, GWL_STYLE, es->style & ~WS_BORDER);
return TRUE;
}
A patch which reverts this change is attacched
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2698
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=50
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |gabriele.giorgetti(a)teamfab.i
| |t
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:28 -------
*** Bug 2698 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2698
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:28 -------
*** This bug has been marked as a duplicate of 50 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2698
Summary: Text alignment bug in editbox
Product: Wine
Version: 20050111
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriele.giorgetti(a)teamfab.it
It looks like there is a problem with the text alignment in edit boxes.
A simple C program (with sources) that shows the wrong behaviour is attached.
Regards.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=50
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:20 -------
Here is a simple program written in C that you can use as testbed.
Just run it in Windows and the with Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=50
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:13 -------
The problem is still there.
EG: run calc.exe in Windows and pay attention at where the digits are shown.
Now run calc.exe with Wine and see the digits in the opposite side.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.