00001 #include "createdatabase.h" 00002 #include "ui_createdatabase.h" 00003 //-------------------------------------------------------------------------------- 00004 CreateDatabase::CreateDatabase(QWidget *parent) : 00005 QDialog(parent), 00006 ui(new Ui::CreateDatabase) 00007 { 00008 ui->setupUi(this); 00009 } 00010 //-------------------------------------------------------------------------------- 00011 CreateDatabase::~CreateDatabase() 00012 { 00013 delete ui; 00014 } 00015 //-------------------------------------------------------------------------------- 00016 void CreateDatabase::on_lineEdit_lostFocus() 00017 { 00018 dbName = ui->lineEdit->text(); 00019 } 00020 //--------------------------------------------------------------------------------