@ -420,6 +420,7 @@ void PageView::setupActions( KActionCollection * ac )
ac - > addAction ( " mouse_drag " , d - > aMouseNormal ) ;
connect ( d - > aMouseNormal , SIGNAL ( triggered ( ) ) , this , SLOT ( slotSetMouseNormal ( ) ) ) ;
d - > aMouseNormal - > setCheckable ( true ) ;
d - > aMouseNormal - > setShortcut ( Qt : : CTRL + Qt : : Key_1 ) ;
d - > aMouseNormal - > setActionGroup ( actGroup ) ;
d - > aMouseNormal - > setChecked ( true ) ;
@ -427,18 +428,21 @@ void PageView::setupActions( KActionCollection * ac )
ac - > addAction ( " mouse_zoom " , mz ) ;
connect ( mz , SIGNAL ( triggered ( ) ) , this , SLOT ( slotSetMouseZoom ( ) ) ) ;
mz - > setCheckable ( true ) ;
mz - > setShortcut ( Qt : : CTRL + Qt : : Key_2 ) ;
mz - > setActionGroup ( actGroup ) ;
d - > aMouseSelect = new KAction ( KIcon ( " frame-edit " ) , i18n ( " &Select Tool " ) , this ) ;
ac - > addAction ( " mouse_select " , d - > aMouseSelect ) ;
connect ( d - > aMouseSelect , SIGNAL ( triggered ( ) ) , this , SLOT ( slotSetMouseSelect ( ) ) ) ;
d - > aMouseSelect - > setCheckable ( true ) ;
d - > aMouseSelect - > setShortcut ( Qt : : CTRL + Qt : : Key_3 ) ;
d - > aMouseSelect - > setActionGroup ( actGroup ) ;
d - > aMouseTextSelect = new KAction ( KIcon ( " text " ) , i18n ( " &Text Selection Tool " ) , this ) ;
ac - > addAction ( " mouse_textselect " , d - > aMouseTextSelect ) ;
connect ( d - > aMouseTextSelect , SIGNAL ( triggered ( ) ) , this , SLOT ( slotSetMouseTextSelect ( ) ) ) ;
d - > aMouseTextSelect - > setCheckable ( true ) ;
d - > aMouseTextSelect - > setShortcut ( Qt : : CTRL + Qt : : Key_4 ) ;
d - > aMouseTextSelect - > setActionGroup ( actGroup ) ;
d - > aToggleAnnotator = new KToggleAction ( KIcon ( " pencil " ) , i18n ( " &Review " ) , this ) ;