|
|
|
@ -39,7 +39,6 @@ |
|
|
|
#include <kprocess.h> |
|
|
|
#include <kprocess.h> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "dviwin.h" |
|
|
|
#include "dviwin.h" |
|
|
|
#include "fontpool.h" |
|
|
|
#include "fontpool.h" |
|
|
|
#include "fontprogress.h" |
|
|
|
#include "fontprogress.h" |
|
|
|
@ -753,10 +752,12 @@ void dviWindow::mouseMoveEvent ( QMouseEvent * e ) |
|
|
|
if ( e->state() == 0 ) { |
|
|
|
if ( e->state() == 0 ) { |
|
|
|
for(int i=0; i<num_of_used_hyperlinks; i++) { |
|
|
|
for(int i=0; i<num_of_used_hyperlinks; i++) { |
|
|
|
if (hyperLinkList[i].box.contains(e->pos())) { |
|
|
|
if (hyperLinkList[i].box.contains(e->pos())) { |
|
|
|
|
|
|
|
emit setStatusBarText( hyperLinkList[i].linkText ); |
|
|
|
setCursor(pointingHandCursor); |
|
|
|
setCursor(pointingHandCursor); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
emit setStatusBarText( QString::null ); |
|
|
|
setCursor(arrowCursor); |
|
|
|
setCursor(arrowCursor); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|