Hi all,
I am trying to build an animated version of the QStackedLayout where the requested widget pushes the previous one out of frame. I got it all working so far but the one thing I don't know how to do is to restrict the widgets's visibility to the layout's geometry, so that when they animate away, they get cropped and disappear from view, rather than just being drawn on top of everything else around the parent layout. Below is a very simple example of what I'm trying to "fix". The button is manually moved but somehow I need it to not be visible where it's outside the layout. Any ideas? Cheers, frank The actual code is here: http://pastebin.com/p64hG1VS import sys from PySide.QtGui import * from PySide.QtCore import * app = QApplication( sys.argv ) mainWidget = QWidget() frame = QFrame() frame.setFrameStyle( QFrame.Box ) label = QPushButton( 'this should only be visible inside the layout geo' ) label.setParent( mainWidget ) label.resize( 500, 50 ) layout = QVBoxLayout() mainWidget.setLayout( layout ) layout.addWidget( frame ) mainWidget.resize( 500, 200 ) mainWidget.show() sys.exit( app.exec_() ) _______________________________________________ PySide mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/pyside
