Index: ksmserver/shutdowndlg.cpp
===================================================================
--- ksmserver/shutdowndlg.cpp.orig
+++ ksmserver/shutdowndlg.cpp
@@ -126,6 +126,7 @@ KSMShutdownDlg::KSMShutdownDlg( QWidget*
// End session
KPushButton* btnLogout = new KPushButton( KGuiItem( i18n("&End Current Session"), "undo"), frame );
+ QToolTip::add( btnLogout, i18n( "End Current Session
Log out of the current session to login with a different user
" ) );
QFont btnFont = btnLogout->font();
buttonlay->addWidget( btnLogout );
connect(btnLogout, SIGNAL(clicked()), SLOT(slotLogout()));
@@ -134,6 +135,7 @@ KSMShutdownDlg::KSMShutdownDlg( QWidget*
// Shutdown
KPushButton* btnHalt = new KPushButton( KGuiItem( i18n("&Turn Off Computer"), "exit"), frame );
+ QToolTip::add( btnHalt, i18n( "Turn Off Computer
Log out of the current session and turn off the computer
" ) );
btnHalt->setFont( btnFont );
buttonlay->addWidget( btnHalt );
connect(btnHalt, SIGNAL(clicked()), SLOT(slotHalt()));
@@ -142,6 +144,7 @@ KSMShutdownDlg::KSMShutdownDlg( QWidget*
// Reboot
KSMDelayedPushButton* btnReboot = new KSMDelayedPushButton( KGuiItem( i18n("&Restart Computer"), "reload"), frame );
+ QToolTip::add( btnReboot, i18n( "Restart Computer
Log out of the current session and restart the computer
Hold the mouse button or the space bar for a short while to get a list of options what to boot
" ) );
btnReboot->setFont( btnFont );
buttonlay->addWidget( btnReboot );
@@ -168,7 +171,8 @@ KSMShutdownDlg::KSMShutdownDlg( QWidget*
btnReboot->setPopup(targets);
connect( targets, SIGNAL(activated(int)), SLOT(slotReboot(int)) );
- }
+ } else
+ QToolTip::add( btnReboot, i18n( "Restart Computer
Log out of the current session and restart the computer
" ) );
}
buttonlay->addStretch( 1 );