You are right, I can provide my own icons that way, but then they do not reflect the software situation on my user's machine.
But shouldn't QFileIconProvider return bigger icons by default? I've tried to find the answer in the Qt sources, but I don't understand too much of the code there.
The actual work seems to be done in qwindowstheme.cpp, and at least I've found this snippet here:
enum { // Shell image list ids
sHIL_EXTRALARGE = 0x2, // 48x48 or user-defined
sHIL_JUMBO = 0x4 // 256x256 (Vista or later)
};
enum { // Shell image list ids
sHIL_EXTRALARGE = 0x2, // 48x48 or user-defined
sHIL_JUMBO = 0x4 // 256x256 (Vista or later)
};
To copy to clipboard, switch view to plain text mode
So it doesn't seem to be a deliberate omission after all.
Bookmarks