Launchpad has imported 32 comments from the remote bug at
http://bugs.winehq.org/show_bug.cgi?id=1236.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.

------------------------------------------------------------------------
On 2004-07-25T15:39:31+00:00 Marcus Meissner wrote:

empty comment. shachar, can you try to reproduce and if possible open a new 
bug. 

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/0

------------------------------------------------------------------------
On 2004-07-25T16:42:08+00:00 Shachar Shemesh wrote:

The comment was not present because there is nothing to say beyond the subject
line. If a combo-box has the "RTL" flag set, it should be right aligned in
Hebrew and Arabic supporting environments.

I opened this bug so that I have a "todo" list (that's why it depends on the
BiDi meta bug). I left it "unconfirmed" because I hadn't had a chance to write a
proper test case, or to figure out the exact Windows behaviour.

I really think "unconfirmed" is the right status for it, for the time
being.

Shachar

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/1

------------------------------------------------------------------------
On 2004-08-31T00:57:17+00:00 Tony-lambregts wrote:

What is the status of this bug?


Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/2

------------------------------------------------------------------------
On 2004-08-31T04:32:05+00:00 Shachar Shemesh wrote:

This bug is still open. I currently have no resources to handle it. If you think
you do have them, you are more than welcome to submit a patch.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/3

------------------------------------------------------------------------
On 2005-10-03T19:39:20+00:00 Marcus Meissner wrote:

likely still open.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/4

------------------------------------------------------------------------
On 2007-03-16T13:26:07+00:00 Speeddymon wrote:

Just pinging, no response needed as I am sure you developers are going to work
on this *some* day :)

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/5

------------------------------------------------------------------------
On 2007-12-19T12:09:15+00:00 Winehacker wrote:

This needs a retest

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/6

------------------------------------------------------------------------
On 2007-12-23T20:35:59+00:00 Vektuz wrote:

Created attachment 9777
Possible reproduction of the bug w/ wine 0.9.51

This is a screenshots of same test windows exe compiled with GCC/mingw.
I will attach the source for the test exe also

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/7

------------------------------------------------------------------------
On 2007-12-23T20:37:23+00:00 Vektuz wrote:

Created attachment 9778
compact Source code to create a RTL combo box

Hope this helps some.  Compiles with mingw under windows
$ gcc -c combotest.c
$ gcc -o combotest combotest.o -mwindows
$ combotest.exe

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/8

------------------------------------------------------------------------
On 2008-04-07T17:53:07+00:00 Joshua-pedrick wrote:

Hi, I'm trying to get into wine development and this bug looked like a good 
start. I had no trouble compiling wine. I'm having some trouble getting the 
test case to run. Maybe this isn't the right place to post, but the answer 
might be helpful for others trying to fix this who are new to wine. I can also 
compile combotest.exe, but I get the following error when I try to run it with 
wine:
../wine ./combotest
wine: could not load L"H:\\wine\\rtl_combo_test\\combotest.": Bad EXE format for
fixme:advapi:RegisterEventSourceA ((null),"MDM"): stub
fixme:advapi:RegisterEventSourceW (L"",L"MDM"): stub
fixme:advapi:ReportEventA 
(0xcafe4242,0x0001,0x0000,0xc0001002,(nil),0x0000,0x00000000,(nil),0x7e0c39d0): 
stub
fixme:advapi:DeregisterEventSource (0xcafe4242) stub

I use the following commands to build and link:
 gcc -m32 -I ../include -c combotest.c
gcc -m32 -o combotest combotest.o ../libs/wine/libwine.so.1.0 
../dlls/ole32/ole32.dll.so ../dlls/comdlg32/comdlg32.dll.so 
../dlls/user32/user32.dll.so ../dlls/winecrt0/libwinecrt0.a 
../dlls/kernel32/kernel32.dll.so

I built wine using Fedora Core 8 x86_64, basic ./configure && make depend && 
make
everything was compiled with the -m32 flag

I also tried to compile this using MSVC and was unable to because "WNDCLASSEX 
wc;" is somehow illegal. 
 

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/9

------------------------------------------------------------------------
On 2008-04-08T06:26:08+00:00 Dmitry-baikal wrote:

You either need to add the test to existing ones in dlls/user32/tests/combo.c,
or compile your test with a cross compiler as a PE exe.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/10

------------------------------------------------------------------------
On 2008-04-08T08:07:50+00:00 Shachar Shemesh wrote:

(In reply to comment #9)
> Hi, I'm trying to get into wine development and this bug looked like a good
> start. I had no trouble compiling wine. I'm having some trouble getting the
> test case to run. Maybe this isn't the right place to post, but the answer
> might be helpful for others trying to fix this who are new to wine.

Nevertheless, I believe it's best to solve this issue through the
mailing lists.

(In reply to comment #10)
> You either need to add the test to existing ones in dlls/user32/tests/combo.c

I am not aware that it is possible to perform interactive tests in that
area, and I cannot think of a non-interactive way to test whether the
problem still exists. If both are correct, this bug is a poor candidate
for the automatic tests.

Shachar

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/11

------------------------------------------------------------------------
On 2008-04-19T05:41:02+00:00 Lei Zhang wrote:

Created attachment 12292
quick hack for WS_EX_LAYOUTRTL

I haven't looked too much at WS_EX_LAYOUTRTL, but is this the behavior
you want from the edit box inside the combo box?

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/12

------------------------------------------------------------------------
On 2008-10-20T21:30:55+00:00 Austin English wrote:

Still present in git. Lei's patch fixes it. Someone should add that
testcase to the testsuite...

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/13

------------------------------------------------------------------------
On 2008-10-20T21:31:22+00:00 Austin English wrote:

Created attachment 16764
compiled testcase

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/14

------------------------------------------------------------------------
On 2009-01-14T17:57:17+00:00 Austin English wrote:

Please retest in current git. If still present, update version field to
earliest known version of wine that had this bug. Thanks!

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/15

------------------------------------------------------------------------
On 2009-01-29T05:47:09+00:00 Diaa Sami wrote:

I tried the patch on the current git head, it aligns the text properly but the 
combobox handle should be at the left, not the right, as shown in the image I 
will attach.
I'm ready to work on this, is there someone else working on it?

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/16

------------------------------------------------------------------------
On 2009-01-29T05:48:02+00:00 Diaa Sami wrote:

Created attachment 19069
How RTL combobox looks on Windows XP

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/17

------------------------------------------------------------------------
On 2009-01-31T04:59:11+00:00 Diaa Sami wrote:

Created attachment 19118
Adds partial RTL support to combobox and listbox

This patch modifies the layout of RTL comboboxes to match that on
Windows(see attachment #19069, the button is to the left), as well as
RTL listbox(because it's used within comboboxes), along with the
alignment patch for the combobox edit, this should look exactly like
Windows.

I sent this early version of the patch to let you know I'm working on
this, it's not done yet, please have a look and comment.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/18

------------------------------------------------------------------------
On 2009-01-31T06:39:22+00:00 Shachar Shemesh wrote:

In the last "ExtTextOutW" of the patch, you probably want to add
ETO_RTLREADING to the flags.

RTL text needs to not only be right aligned, it also need to be marked
as an RTL paragraph, or the reordering algorithm gets things
catastrophically wrong when mixed languages are used.

Shachar

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/19

------------------------------------------------------------------------
On 2009-10-09T14:41:35+00:00 mr.larch wrote:

Combos and Listboxes aren't common controls, but belong to user32.

Feel free to open new bugs for comctl32 controls - one for a
problem/control.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/24

------------------------------------------------------------------------
On 2009-12-14T07:33:28+00:00 Shahar Or wrote:

Ping?

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/25

------------------------------------------------------------------------
On 2009-12-20T16:44:57+00:00 Diaa Sami wrote:

I'm working on a fix for this, should be done soon.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/26

------------------------------------------------------------------------
On 2010-04-10T00:48:05+00:00 Austin English wrote:

Removing tasklet keyword.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/27

------------------------------------------------------------------------
On 2010-09-13T23:14:45+00:00 rusivi2 wrote:

Does this occur in newest WINE?

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/29

------------------------------------------------------------------------
On 2010-09-14T11:20:44+00:00 Shahar Or wrote:

Dear friends,

1.2 still has it using the attached compiled test case.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/31

------------------------------------------------------------------------
On 2010-09-14T14:24:58+00:00 Paul-vriens-wine wrote:

Created attachment 30752
Screenshot

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/32

------------------------------------------------------------------------
On 2010-09-14T14:26:04+00:00 Paul-vriens-wine wrote:

Current Git gives me a right aligned box (see screenshot)

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/33

------------------------------------------------------------------------
On 2010-09-14T14:33:01+00:00 Shahar Or wrote:

Dear ones,

Then this is probably fixed.

Blessings,
Shahar

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/34

------------------------------------------------------------------------
On 2010-09-14T17:04:34+00:00 Austin English wrote:

Reported fixed.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/35

------------------------------------------------------------------------
On 2010-09-18T18:04:39+00:00 Alexandre Julliard wrote:

Closing bugs fixed in 1.3.3.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/36

------------------------------------------------------------------------
On 2012-02-23T21:21:09+00:00 Austin English wrote:

Removing deprecated 'All' OS.

Reply at: https://bugs.launchpad.net/wine/+bug/367371/comments/37

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/367371

Title:
  Contents of window should be aligned RTL

To manage notifications about this bug go to:
https://bugs.launchpad.net/wine/+bug/367371/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to