I've committed a new widget to KOffice which is a combobox-like widget consisting of a numeric input and a slider that pops up. The really neat thing about this new widget is that it's themeable right out of the box because I've reused QStyle to draw it.
For the API I've tried to do thins like in QDoubleSpinBox. It still needs to mature a bit, but it's already usable. If people are interested I would be more than willing to move it to kdelibs


double border
Hi Casper.
I noted 2 borders around the white area of the widget. An editable combobox is typically a line edit with a button next to it. So you avoid having 2 borders like your screenshots above have. One border around the widget and one around the line edit is one too many
Maybe that's a way to remove that double border?
Also; I suggest you inherit from a similar widget instead of from plain QWidget since now you still have to implement full accessibility support.
Thanks