void MainWindow::get_started_info()
{
QMessageBox::information(this,
"About",
"message");
// dont forget to include QMessageBox }
void MainWindow::get_started_info()
{
QMessageBox::information(this,"About","message");// dont forget to include QMessageBox
}
To copy to clipboard, switch view to plain text mode
this works, when I click on Get Started, this message box appears
get_started *one; //in your mainwindow under private
get_started *one; //in your mainwindow under private
To copy to clipboard, switch view to plain text mode
like this :
private:
Ui::MainWindow *ui;
//! Create the menu classes
void createActions();
void createMenus();
//! Menu Items
get_started *one;
private:
Ui::MainWindow *ui;
//! Create the menu classes
void createActions();
void createMenus();
//! Menu Items
QMenu *home;
QMenu *help;
QAction *quit;
QAction *start;
QAction *about;
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
Bookmarks