00001 #include "mainwindow.h" 00002 #include "ui_mainwindow.h" 00003 #include "form.h" 00004 00005 MainWindow::MainWindow(QWidget *parent) : 00006 QMainWindow(parent), 00007 ui(new Ui::MainWindow) 00008 { 00009 ui->setupUi(this); 00010 00011 connect(ui->actionQuit, SIGNAL(triggered()), this, SLOT(close())); 00012 00013 m_pForm = new Form(this); 00014 setCentralWidget(m_pForm); 00015 00016 00017 00018 00019 } 00020 00021 MainWindow::~MainWindow() 00022 { 00023 delete ui; 00024 }