Category Archives: Qt

Qt related stuff

[Qt] How to customise QSlider

QSlider with with rounded ends can be done only via stylesheet. Additionally added subpage for qSlider to change color of slider.   QSlider::groove:horizontal { border: 1px solid #999999; height: 18px; border-radius: 9px; } QSlider::handle:horizontal { width: 18px; background-image: url(:/slider-knob.png) } … Continue reading

Posted in Qt | Tagged , , , , | 7 Comments

[Qt] How to set QLineEdit with numbers only

Qt has rather indirect way to control input type. “setInputMethodHints” is available, but QLine Widget ignores it. We need to use QReqExp class for defining “Regular Expressions” , below  is example of regular expression where QLineEdit only takes input in … Continue reading

Posted in Qt | 1 Comment