Files
sqlitebrowser/src/choosetableform.cpp
Peinthor Rene d51a5f592e Qt3Support was completely removed
While testing some of my changes I noticed
there are a lot of broken things.
So still a lot of work.
2012-01-27 21:23:14 +01:00

50 lines
992 B
C++

#include "choosetableform.h"
#include <qvariant.h>
#include <qimage.h>
#include <qpixmap.h>
/*
* Constructs a chooseTableForm as a child of 'parent', with the
* name 'name' and widget flags set to 'f'.
*
* The dialog will by default be modeless, unless you set 'modal' to
* true to construct a modal dialog.
*/
chooseTableForm::chooseTableForm(QWidget* parent, Qt::WindowFlags fl)
: QDialog(parent, fl)
{
setupUi(this);
}
/*
* Destroys the object and frees any allocated resources
*/
chooseTableForm::~chooseTableForm()
{
// no need to delete child widgets, Qt does it all for us
}
/*
* Sets the strings of the subwidgets using the current
* language.
*/
void chooseTableForm::languageChange()
{
retranslateUi(this);
}
void chooseTableForm::editPressed()
{
option = comboOptions->currentText();
accept();
}
void chooseTableForm::populateOptions(QStringList entries)
{
comboOptions->clear();
comboOptions->addItems(entries);
}