Hello,

I'm developing an application that uses a touchscreen. I'm finding that radio buttons are difficult to press using the touchscreen because they are small. What is the best way to make the radio buttons larger? I thought of creating my own derivative of QWindowsXPStyle and implement the control drawing there. Or, implementing my own QRadioButton derivative that would implement the sizehint and paint methods. It seems to me that hte QStyle approach would work better because it will cause all radio buttons to be drawn larger without having to change that class type on every instance of a radio button.

Are there other approaches that are better?

Thanks!