c++ - detect if the arrow button from QScrollBar is pressed -


is there signal can emit if arrow button of qscrollbar pressed? far know there sliderpressed() signal. want, if exists, solution valuechanged() signal.

all signals qscrollbar emits (inherited qabstractslider) related o slider/value changed:

void    actiontriggered ( int action ) void    rangechanged ( int min, int max ) void    slidermoved ( int value ) void    sliderpressed () void    sliderreleased () void    valuechanged ( int value ) 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -