I'm trying to use a QFileDialog::getOpenFileName with an xml filter defined tr("XML Files (*.xml)") to ask the user to select an XML file.

However, in case there's a file in the directory that has japanese characters in its name ( e.g: ラドクリフ.xml ), the file is shown to be disabled, so the user can't select it. Other files, such as a.xml, b.xml are shown to be select-able.

Why is this happening ? Is there a way to fix this ?

Thanks!

link|improve this question

75% accept rate
1  
That's a typo, right ? It should be tr("XML files (*.xml)") – koan Aug 3 '11 at 14:46
yup, you're right. – Anonymous Aug 3 '11 at 18:25
I think you're going to need to post the whole of your file dialog code for us to get further with your problem – koan Aug 3 '11 at 19:05
feedback

1 Answer

The file is not "ラドクリフ.xml" it is "ラドクリフ.xml" note the xml at the end of the filename is not ASCII; they are full width Roman letters i.e. UniCode codepoints 0xFF00-0xFFEF.

The fix is for your users to switch back to ASCII input when typing the .xml at the end, or if your software is localised for Japanese add full width "*.xml" to your list of filters.

link|improve this answer
Clever!! Thanks a lot, but I will confirm this as the answer shortly after trying it :) – Anonymous Aug 3 '11 at 6:12
Unfortunately, it's not this - I changed the encoding of my terminal to ASCII and re-checked. The filename part in katakana was displayed weirdly( as expected in ASCII ), but the .xml remained .xml , so this must mean that the .xml is not full width .xml. – Anonymous Aug 3 '11 at 13:28
Also, to confirm your answer, i'd passed ("*.*", "*" ) as filters, and also not passed any filter ( in which case, all the files should be shown according to QFileDialog ), but to no avail. These files were STILL not selectable ! Looks like a Qt Bug on mac to me. – Anonymous Aug 3 '11 at 13:30
I would 1. double check that these are xml files and not directories with an extension. 2. get a QDir object on the directory and go through all the strings in the entryList() – koan Aug 3 '11 at 14:29
I am using a filter in one of my projects on MacOS X and I already made a test case of a Japanese name with ASCII extension and I'm using a QFileDialog with a filter so I can confirm that if it's a bug it doesn't affect my project. – koan Aug 3 '11 at 14:50
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.