On Sun Jun 10 22:46:30 BST 2007, S James S Stapleton wrote: > I'm closer to where I want/need to be, but I'm down one step I think. > > What function do I override if I want to intercept a tab selection even (in > a QTabWidget wrapper)? > > I.E. it will be called if a tab is clicked.
You can connect the QTabWidget's currentChanged(int) signal to a method in your wrapper. I don't think there's a clean way to do the same thing just by reimplementing event handlers. David _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
