void MainWindow::on_actionAbout_triggered()
{
    QString msg = "We want to teach Qt Framework. ";
    msg += "\n it is a smart framework";
    QMessageBox::information(this, "About", msg );
}