@ -35,13 +35,11 @@ class MessageView(QtGui.QTextBrowser):
super ( MessageView , self ) . mousePressEvent ( event )
def wheelEvent ( self , event ) :
if ( QtGui . QApplication . queryKeyboardModifiers ( ) & QtCore . Qt . ControlModifier ) == QtCore . Qt . ControlModifier and event . orientation ( ) == QtCore . Qt . Vertical :
numDegrees = event . delta ( ) / 8
numSteps = numDegrees / 15
zoomDiff = numSteps + self . currentFont ( ) . pointSize ( ) - self . defaultFontPointSize
QtGui . QApplication . activeWindow ( ) . statusBar ( ) . showMessage ( QtGui . QApplication . translate ( " MainWindow " , " Zoom level % 1 " ) . arg ( str ( zoomDiff ) ) )
# super will actually automatically take care of zooming
super ( MessageView , self ) . wheelEvent ( event )
if ( QtGui . QApplication . queryKeyboardModifiers ( ) & QtCore . Qt . ControlModifier ) == QtCore . Qt . ControlModifier and event . orientation ( ) == QtCore . Qt . Vertical :
zoom = self . currentFont ( ) . pointSize ( ) * 100 / self . defaultFontPointSize
QtGui . QApplication . activeWindow ( ) . statusBar ( ) . showMessage ( QtGui . QApplication . translate ( " MainWindow " , " Zoom level %1% " ) . arg ( str ( zoom ) ) )
def confirmURL ( self , link ) :
reply = QtGui . QMessageBox . warning ( self ,