Hi All
i need a help. I wrote an application to lock the keyboard and mouse input. Its working fine, but ALT+CTRL+DEL key is working i need to disable this also. can any body help me. Below i've posted the code.

Qt Code:
  1. MainWindow::MainWindow(QWidget *parent)
  2. : QMainWindow(parent), ui(new Ui::MainWindow)
  3. {
  4. ui->setupUi(this);
  5.  
  6. }
  7.  
  8. MainWindow::~MainWindow()
  9. {
  10. delete ui;
  11. }
  12.  
  13. void MainWindow::lock()
  14. {
  15. QApplication::setOverrideCursor();
  16. QWidget::grabMouse();
  17. QWidget::grabKeyboard();
  18.  
  19. }
To copy to clipboard, switch view to plain text mode 

NB: i'm calling lock() inside main() function. Plz help me.