#include "CustomQtDialog.h"
#include <QMessageBox>
//
//##############################################################################
//                          CustomQtDialog.cpp
//##############################################################################
//
// Implementation of the CustomQtDialog class. 
//
// Math 157                                                       March 6, 2009
//
CustomQtDialog::CustomQtDialog(QWidget *parent): QDialog(parent)
{
     setupUi(this);
}

//
// This member function overrides the QDialog::exec() member
// function and one can place code here to load any input
// widgets of the user interface with the current values 
// of class data. 
//

int CustomQtDialog::exec()
{
// Custom code follows



//call base class implementation

	return QDialog::exec();
}

//
// This member function overrides the QDialog::accept() member
// function and processes the contents/states of the user interface
// widgets when "OK" is hit. 
//

void CustomQtDialog::accept()
{
// Custom code follows

//call base class implementation

	QDialog::accept();
}

//
// This member function overrides the QDialog::reject() member
// function and processes the contents/states of the user interface
// widgets when "Cancel" is hit. 
//

void CustomQtDialog::reject()
{
// Custom code follows


//call base class implementation

	QDialog::reject();
}





