现在的问题,当只有一页时,不能判断滚轮滚动方向:多页的话,可以通过位置变化来判断
print(event.pixelDelta().x(), event.pixelDelta().y())
获取位置:
https://blog.youkuaiyun.com/jacke121/article/details/113697485
pyqt qscrollarea 滚动位置
方法:
qscrollarea.verticalScrollBar ().setValue(int)
setValue(0)即设置到顶端。
获取值:
print(self.verticalScrollBar().value(),
总长度:
self.verticalScrollBar().maximum()
class McrollArea(QScrollArea):
def __init__(self,parent):
QScrollArea.__init__(self,parent)
self.mainUI=parent
def wheelEvent(self, event):
super().wheelEvent(event)
if (not self.mainUI.key_shift) and (not self.mainUI.key_control) and len(self.mainUI.will_changes) > 0:
for will_weight in self.mainUI.will_changes:
if os.path.exists(will_weight.image_path):
save_dir=self.mainUI.get_save_dir()
will_weight.out_path = save_dir + "/" + os.path.basename(will_weight.image_path)
shutil.move(will_weight.image_path, will_weight.out_path)
will_weight.image_path=will_weight.out_path
will_weight.deleteLater()
self.mainUI.will_changes.clear()
else:
# print(event.ActionRemoved, self.mainUI.scroll_ares_images.verticalScrollBar().maximum())
super().wheelEvent(event)
print(self.verticalScrollBar().value(), self.parent().height)
if self.mainUI.gridLayout.count()==0 and self.mainUI.next_page.isEnabled():
self.mainUI.open_next()