Qt Code:
  1. void MainWindow::get_started_info()
  2. {
  3. QMessageBox::information(this,"About","message");// dont forget to include QMessageBox
  4. }
To copy to clipboard, switch view to plain text mode 
this works, when I click on Get Started, this message box appears

Qt Code:
  1. get_started *one; //in your mainwindow under private
To copy to clipboard, switch view to plain text mode 
like this :
Qt Code:
  1. private:
  2. Ui::MainWindow *ui;
  3. //! Create the menu classes
  4. void createActions();
  5. void createMenus();
  6. //! Menu Items
  7. QMenu *home;
  8. QMenu *help;
  9. QAction *quit;
  10. QAction *start;
  11. QAction *about;
  12. get_started *one;
To copy to clipboard, switch view to plain text mode 
but I get an error 'get_started' does not name a type