#include "about_widget.h"
#include "main_window.h"
void MainWindow::errorInvalidDBFile(QString parentFunction, QString fileName)
{
QMessageBox::critical(this, parentFunction, tr("Invalid database file %1").arg(fileName));
this->setEnabled(true);
}
void MainWindow::setProgress(int progress)
{
if (progress < 0) {
QTimer::singleShot(2500, this, SLOT(setNullProgress()));
} else { progressBar->setVisible(true); progressBar->setValue(progress); }
}
void MainWindow::setNullProgress()
{
progressBar->setValue(0); progressBar->setVisible(false);
}
void MainWindow::clearCurrentValues()
{
current_db_file.clear();
current_db_name.clear();
current_db_date.clear();
current_db_comments.clear();
current_db_question.clear();
for (int i = 0; i < 20; ++i) {current_db_fe[i] = false;}
for (int i = 0; i < 20; ++i) {current_db_f[i].clear();}
QMapIterator<QListWidgetItem *, QuestionItem *> i(current_db_questions);
while (i.hasNext()) { i.next(); delete i.value(); }
current_db_questions.clear();
current_db_students.clear();
QMapIterator<QDateTime, Session *> n(current_db_sessions);
while (n.hasNext()) { n.next(); if (n.value()) delete n.value(); }
current_db_sessions.clear();
QMapIterator<QDateTime, ArchivedSession *> a(current_db_archivedsessions);
while (a.hasNext()) { a.next(); if (a.value()) delete a.value(); }
current_db_archivedsessions.clear();
current_db_flagentries.clear();
current_db_queued_sessions.clear();
}
void MainWindow::clearSQ()
{
SQFlagComboBox->clear();
LQFlagComboBox->clear();
clearSQNoFlags();
}
void MainWindow::clearSQNoFlags()
{
SQQuestionNameLineEdit->clear();
SQGroupLineEdit->clear();
SQDifficultyComboBox->setCurrentIndex(0);
SQQuestionTextEdit->clear();
for (int i = 0; SQSVGListWidget->count();) {
delete SQSVGListWidget->takeItem(i);
}
SQAnswerALineEdit->clear();
SQAnswerBLineEdit->clear();
SQAnswerCLineEdit->clear();
SQAnswerDLineEdit->clear();
SQCorrectACheckBox->setChecked(false);
SQCorrectBCheckBox->setChecked(false);
SQCorrectCCheckBox->setChecked(false);
SQCorrectDCheckBox->setChecked(false);
SQStatisticsLabel->setVisible(false);
}
void MainWindow::clearDBI()
{
DBIDatabaseNameLineEdit->clear();
DBIDateEdit->setDateTime(QDateTime::QDateTime(QDate::QDate(2006, 12, 1), QTime::QTime(0, 0)));
DBIUseLastSaveDateCheckBox->setChecked(true);
}
void MainWindow::enableAll()
{
actionSave->setEnabled(true);
actionSave_as->setEnabled(true);
actionSave_a_copy->setEnabled(true);
actionSave_a_backup->setEnabled(true);
actionClose->setEnabled(true);
actionEdit_questions->setEnabled(true);
actionEdit_test->setEnabled(true);
actionEdit_flags->setEnabled(true);
actionEdit_comments->setEnabled(true);
actionSaved_sessions->setEnabled(true);
actionShow_DBI->setEnabled(true);
DBIDatabaseNameLineEdit->setEnabled(true);
DBIUseLastSaveDateCheckBox->setEnabled(true);
LQListWidget->setEnabled(true);
LQFlagComboBox->setEnabled(true);
LQSearchLineEdit->setEnabled(true);
btnAdd->setEnabled(true);
actionAdd->setEnabled(true);
menuDatabase->setEnabled(true);
menuQuestion->setEnabled(true);
menuServer->setEnabled(true);
menuSession->setEnabled(true);
}
void MainWindow::enableEQTools()
{
menuQuestion->setEnabled(true);
actionAdd->setEnabled(true);
menuSort_questions->setEnabled(true);
menuFilter_LQ->setEnabled(true);
if (LQListWidget->currentIndex().isValid()) {enableLQTools(); enableSQ();}
}
void MainWindow::enableSQ()
{
actionApply->setEnabled(true);
actionDiscard->setEnabled(true);
SQGroupBox->setEnabled(true);
menuAttachments->setEnabled(true);
}
void MainWindow::disableAll()
{
actionSave->setEnabled(false);
actionSave_as->setEnabled(false);
actionSave_a_copy->setEnabled(false);
actionSave_a_backup->setEnabled(false);
actionClose->setEnabled(false);
actionEdit_questions->setEnabled(false);
actionEdit_test->setEnabled(false);
actionEdit_flags->setEnabled(false);
actionEdit_comments->setEnabled(false);
actionSaved_sessions->setEnabled(false);
actionShow_DBI->setEnabled(false);
DBIDatabaseNameLineEdit->setEnabled(false);
DBIDateEdit->setEnabled(false);
DBIUseLastSaveDateCheckBox->setEnabled(false);
LQListWidget->setEnabled(false);
LQFlagComboBox->setEnabled(false);
LQSearchLineEdit->setEnabled(false);
btnAdd->setEnabled(false);
actionAdd->setEnabled(false);
menuDatabase->setEnabled(false);
menuQuestion->setEnabled(false);
menuServer->setEnabled(false);
menuSession->setEnabled(false);
disableSQ();
disableLQTools();
}
void MainWindow::disableEQTools()
{
menuQuestion->setEnabled(false);
actionAdd->setEnabled(false);
menuSort_questions->setEnabled(false);
menuFilter_LQ->setEnabled(false);
disableLQTools(); disableSQ();
}
void MainWindow::disableSQ()
{
actionApply->setEnabled(false);
actionDiscard->setEnabled(false);
SQGroupBox->setEnabled(false);
menuAttachments->setEnabled(false);
}
void MainWindow::enableLQTools()
{
actionMove_up->setEnabled(true);
actionMove_down->setEnabled(true);
btnMoveUp->setEnabled(true);
btnMoveDown->setEnabled(true);
actionMove_to_top->setEnabled(true);
actionMove_to_bottom->setEnabled(true);
actionDelete->setEnabled(true);
btnDelete->setEnabled(true);
actionDuplicate->setEnabled(true);
btnDuplicate->setEnabled(true);
actionHide->setEnabled(true);
}
void MainWindow::disableLQTools()
{
actionMove_up->setEnabled(false);
actionMove_down->setEnabled(false);
btnMoveUp->setEnabled(false);
btnMoveDown->setEnabled(false);
actionMove_to_top->setEnabled(false);
actionMove_to_bottom->setEnabled(false);
actionDelete->setEnabled(false);
btnDelete->setEnabled(false);
actionDuplicate->setEnabled(false);
btnDuplicate->setEnabled(false);
actionHide->setEnabled(false);
}
void MainWindow::clearAll()
{
clearCurrentValues();
clearDBI();
clearLQ();
clearSQ();
ECTextEdit->clear();
loadFlags();
updateFlagQnums();
clearSM();
clearVSS();
}
void MainWindow::clearLQ()
{
LQAllRadioButton->setChecked(true);
LQListWidget->clear();
}
MainWindow::MainWindow()
{
setupUi(this);
http = new QHttp(this);
http_buffer = new QBuffer(this);
default_printer = NULL;
#ifdef Q_WS_MAC
this->setUnifiedTitleAndToolBarOnMac(true);
#endif
SQQuestionTextEdit->setMinimumSize(0, 30);
SQSVGListWidget->setMinimumSize(0, 30);
progressBar = new QProgressBar(this);
progressBar->setTextVisible(false);
progressBar->resize(QSize(30, 10));
statusBar()->addPermanentWidget(progressBar, 0);
statusBar()->setFixedHeight(20);
progressBar->setFixedWidth(150);
progressBar->setFixedHeight(15);
progressBar->setVisible(false);
LQFlagComboBox->setVisible(false);
SQStatisticsLabel->setVisible(false);
currentSvgChanged();
btnApply = SQButtonBox->button(QDialogButtonBox::Apply);
btnApply->setText(tr("Apply"));
btnApply->setStatusTip(tr("Apply any changes you have made to the question"));
btnApply->setIcon(QIcon(QString::fromUtf8(":/images/images/button_ok.png")));
btnDiscard = SQButtonBox->button(QDialogButtonBox::Discard);
btnDiscard->setText(tr("Discard"));
btnDiscard->setStatusTip(tr("Discard any changes you have made to the question"));
btnDiscard->setIcon(QIcon(QString::fromUtf8(":/images/images/button_cancel.png")));
EFButtonBox->button(QDialogButtonBox::Apply)->setText(tr("Apply"));
EFButtonBox->button(QDialogButtonBox::Apply)->setStatusTip(tr("Apply any changes you have made to the flags"));
EFButtonBox->button(QDialogButtonBox::Apply)->setIcon(QIcon(QString::fromUtf8(":/images/images/button_ok.png")));
EFButtonBox->button(QDialogButtonBox::Discard)->setText(tr("Discard"));
EFButtonBox->button(QDialogButtonBox::Discard)->setStatusTip(tr("Discard any changes you have made to the flags"));
EFButtonBox->button(QDialogButtonBox::Discard)->setIcon(QIcon(QString::fromUtf8(":/images/images/button_cancel.png")));
varinit();
QObject::connect(btnAdd, SIGNAL(released()), this, SLOT(addQuestion()));
QObject::connect(actionAdd, SIGNAL(triggered()), this, SLOT(addQuestion()));
QObject::connect(btnDelete, SIGNAL(released()), this, SLOT(deleteQuestion()));
QObject::connect(actionDelete, SIGNAL(triggered()), this, SLOT(deleteQuestion()));
QObject::connect(btnDuplicate, SIGNAL(released()), this, SLOT(duplicateQuestion()));
QObject::connect(actionDuplicate, SIGNAL(triggered()), this, SLOT(duplicateQuestion()));
QObject::connect(btnApply, SIGNAL(released()), this, SLOT(applyQuestionChanges()));
QObject::connect(actionApply, SIGNAL(triggered()), this, SLOT(applyQuestionChanges()));
QObject::connect(btnDiscard, SIGNAL(released()), this, SLOT(discardQuestionChanges()));
QObject::connect(actionDiscard, SIGNAL(triggered()), this, SLOT(discardQuestionChanges()));
QObject::connect(actionNew, SIGNAL(triggered()), this, SLOT(newDB()));
QObject::connect(btnNew, SIGNAL(released()), this, SLOT(newDB()));
QObject::connect(actionOpen, SIGNAL(triggered()), this, SLOT(open()));
QObject::connect(btnOpenOther, SIGNAL(released()), this, SLOT(open()));
QObject::connect(btnOpenSelected, SIGNAL(released()), this, SLOT(openRecent()));
QObject::connect(actionSave, SIGNAL(triggered()), this, SLOT(save()));
QObject::connect(actionSave_as, SIGNAL(triggered()), this, SLOT(saveAs()));
QObject::connect(actionSave_a_copy, SIGNAL(triggered()), this, SLOT(saveCopy()));
QObject::connect(actionSave_a_backup, SIGNAL(triggered()), this, SLOT(saveBackup()));
QObject::connect(actionClose, SIGNAL(triggered()), this, SLOT(closeDB()));
QObject::connect(btnClose, SIGNAL(released()), this, SLOT(closeDB()));
QObject::connect(actionQuit, SIGNAL(triggered()), this, SLOT(quit()));
QObject::connect(actionAbout, SIGNAL(triggered()), this, SLOT(about()));
QObject::connect(recentDBsListWidget, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(openRecent(QListWidgetItem *)));
QObject::connect(LQListWidget, SIGNAL(currentTextChanged(QString)), this, SLOT(setCurrentQuestion()));
QObject::connect(showInfoCheckBox, SIGNAL(toggled(bool)), this, SLOT(onInfoDisplayChange(bool)));
QObject::connect(actionShow_DBI, SIGNAL(toggled(bool)), this, SLOT(onInfoDisplayChange(bool)));
QObject::connect(actionUse_last_save_date, SIGNAL(toggled(bool)), DBIUseLastSaveDateCheckBox, SLOT(setChecked(bool)));
QObject::connect(DBIUseLastSaveDateCheckBox, SIGNAL(toggled(bool)), actionUse_last_save_date, SLOT(setChecked(bool)));
QObject::connect(DBIUseLastSaveDateCheckBox, SIGNAL(toggled(bool)), DBIDateEdit, SLOT(setDisabled(bool)));
QObject::connect(actionFrom_A_to_Z, SIGNAL(triggered()), this, SLOT(sortQuestionsAscending()));
QObject::connect(actionFrom_Z_to_A, SIGNAL(triggered()), this, SLOT(sortQuestionsDescending()));
tbtnAddSVG->setDefaultAction(actionAdd_SVG);
tbtnRemoveSVG->setDefaultAction(actionRemove_SVG);
tbtnEditSVG->setDefaultAction(actionEdit_SVG);
tbtnExportSVG->setDefaultAction(actionExport_SVG);
QObject::connect(actionAdd_SVG, SIGNAL(triggered()), this, SLOT(addSvg()));
QObject::connect(actionRemove_SVG, SIGNAL(triggered()), this, SLOT(removeSvg()));
QObject::connect(actionEdit_SVG, SIGNAL(triggered()), this, SLOT(editSvg()));
QObject::connect(actionExport_SVG, SIGNAL(triggered()), this, SLOT(exportSvg()));
QObject::connect(SQSVGListWidget, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(previewSvg(QListWidgetItem *)));
QObject::connect(SQSVGListWidget, SIGNAL(currentTextChanged(QString)), this, SLOT(currentSvgChanged()));
QObject::connect(actionMove_up, SIGNAL(triggered()), this, SLOT(moveUp()));
QObject::connect(actionMove_down, SIGNAL(triggered()), this, SLOT(moveDown()));
QObject::connect(btnMoveUp, SIGNAL(released()), this, SLOT(moveUp()));
QObject::connect(btnMoveDown, SIGNAL(released()), this, SLOT(moveDown()));
QObject::connect(actionMove_to_top, SIGNAL(triggered()), this, SLOT(moveToTop()));
QObject::connect(actionMove_to_bottom, SIGNAL(triggered()), this, SLOT(moveToBottom()));
QObject::connect(actionHide, SIGNAL(triggered()), this, SLOT(hideQuestion()));
QObject::connect(actionShow_hidden, SIGNAL(triggered()), this, SLOT(filterLQSearch()));
rbtngrpFilterLQ = new QButtonGroup (this);
rbtngrpFilterLQ->addButton(LQAllRadioButton);
rbtngrpFilterLQ->addButton(LQEasyRadioButton);
rbtngrpFilterLQ->addButton(LQMediumRadioButton);
rbtngrpFilterLQ->addButton(LQDifficultRadioButton);
rbtngrpFilterLQ->addButton(LQFlagRadioButton);
actgrpFilterLQ = new QActionGroup (this);
actgrpFilterLQ->addAction(actionShow_all);
actgrpFilterLQ->addAction(actionShow_easy);
actgrpFilterLQ->addAction(actionShow_medium);
actgrpFilterLQ->addAction(actionShow_difficult);
actgrpFilterLQ->addAction(actionShow_flag);
QObject::connect(rbtngrpFilterLQ, SIGNAL(buttonReleased(QAbstractButton *)), this, SLOT(filterLQ(QAbstractButton *)));
QObject::connect(actgrpFilterLQ, SIGNAL(triggered(QAction *)), this, SLOT(filterLQAction(QAction *)));
QObject::connect(LQFlagComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(filterLQFlagChanged()));
QObject::connect(LQSearchLineEdit, SIGNAL(textEdited(const QString &)), this, SLOT(filterLQSearch()));
QObject::connect(tbtnSearchByGroup, SIGNAL(released()), this, SLOT(searchByGroup()));
actgrpPage = new QActionGroup (this);
actgrpPage->addAction(actionEdit_questions);
actgrpPage->addAction(actionEdit_comments);
actgrpPage->addAction(actionEdit_flags);
actgrpPage->addAction(actionEdit_test);
actgrpPage->addAction(actionSaved_sessions);
QObject::connect(actgrpPage, SIGNAL(triggered(QAction *)), this, SLOT(setPage(QAction *)));
QObject::connect(actionUse_last_save_date, SIGNAL(triggered()), this, SLOT(setDatabaseModified()));
QObject::connect(DBIUseLastSaveDateCheckBox, SIGNAL(released()), this, SLOT(setDatabaseModified()));
QObject::connect(ECTextEdit, SIGNAL(textChanged()), this, SLOT(setDatabaseModified()));
QObject::connect(DBIDatabaseNameLineEdit, SIGNAL(textEdited(const QString &)), this, SLOT(setDatabaseModified()));
QObject::connect(DBIDateEdit, SIGNAL(dateTimeChanged(const QDateTime &)), this, SLOT(setDatabaseModified()));
QObject::connect(actionCheck_for_updates, SIGNAL(triggered()), this, SLOT(checkForUpdates()));
QObject::connect(http, SIGNAL(done(bool)), this, SLOT(httpRequestFinished(bool)));
QObject::connect(actionDocumentation, SIGNAL(triggered()), this, SLOT(openDocumentation()));
QObject::connect(SQStatisticsLabel, SIGNAL(linkActivated(QString)), this, SLOT(adjustQuestionDifficulty()));
QObject::connect(actionPrint_questions, SIGNAL(triggered()), this, SLOT(showPrintQuestionsDialogue()));
QObject::connect(actionOverall_statistics, SIGNAL(triggered()), this, SLOT(overallStatistics()));
QObject::connect(actionChange_language, SIGNAL(triggered()), this, SLOT(changeLanguage()));
QObject::connect(mainStackedWidget, SIGNAL(currentChanged(int)), this, SLOT(togglePrintEnabled()));
disableAll();
loadSettings();
setupTextEdits();
setupFlagsPage();
setFlagLineEditPalettes();
search_active_palette.setColor(QPalette::Active, QPalette::Base, QColor::QColor(255, 251, 0));
search_active_palette.setColor(QPalette::Active, QPalette::Text, QColor::QColor(0, 0, 0));
search_active_palette.setColor(QPalette::Inactive, QPalette::Base, QColor::QColor(255, 251, 0));
search_active_palette.setColor(QPalette::Inactive, QPalette::Text, QColor::QColor(0, 0, 0));
search_noresults_palette.setColor(QPalette::Active, QPalette::Base, QColor::QColor(255, 0, 0));
search_noresults_palette.setColor(QPalette::Active, QPalette::Text, QColor::QColor(0, 0, 0));
search_noresults_palette.setColor(QPalette::Inactive, QPalette::Base, QColor::QColor(255, 0, 0));
search_noresults_palette.setColor(QPalette::Inactive, QPalette::Text, QColor::QColor(0, 0, 0));
setupServer();
setupSessionViewer();
statusBar()->showMessage(tr("Ready"), 10000);
if (qApp->arguments().count() > 1) {
QFileInfo file_info (qApp->arguments().at(1));
if (file_info.exists()) {
addRecent(file_info.absoluteFilePath());
openDB(file_info.absoluteFilePath());
}
}
}
void MainWindow::quit()
{
bool cancelled = saveChangesBeforeProceeding(tr("Quit iTest"), true);
if (!cancelled) {
saveSettings();
this->close();
}
}
void MainWindow::loadSettings()
{
QSettings settings("Michal Tomlein", "iTest");
QStringList recent = settings.value("editor/recentDatabases").toStringList();
if (!recent.isEmpty()) { recentDBsListWidget->addItems(recent); }
this->move(settings.value("editor/pos", this->pos()).toPoint());
this->resize(settings.value("editor/size", this->size()).toSize());
onInfoDisplayChange(settings.value("editor/showDBI", false).toBool());
actionShow_hidden->setChecked(settings.value("editor/showHidden", false).toBool());
SQSplitter->restoreState(settings.value("editor/SQSplitterState").toByteArray());
VSSSplitter->restoreState(settings.value("editor/VSSSplitterState").toByteArray());
TSCustomServerPortSpinBox->setValue(settings.value("editor/customServerPort", 7777).toInt());
}
void MainWindow::saveSettings()
{
QSettings settings("Michal Tomlein", "iTest");
QStringList recent;
for (int i = 0; i < recentDBsListWidget->count(); ++i)
{ recent << recentDBsListWidget->item(i)->text(); }
settings.setValue("editor/recentDatabases", recent);
settings.setValue("editor/pos", this->pos());
settings.setValue("editor/size", this->size());
settings.setValue("editor/showDBI", showInfoCheckBox->isChecked());
settings.setValue("editor/showHidden", actionShow_hidden->isChecked());
settings.setValue("editor/SQSplitterState", SQSplitter->saveState());
settings.setValue("editor/VSSSplitterState", VSSSplitter->saveState());
settings.setValue("editor/customServerPort", TSCustomServerPortSpinBox->value());
}
void MainWindow::addRecent(QString name)
{
for (int i = 0; i < recentDBsListWidget->count();) {
if (recentDBsListWidget->item(i)->text() == name) {
delete recentDBsListWidget->item(i);
} else {i++;}
}
recentDBsListWidget->insertItem(0, name);
recentDBsListWidget->setCurrentRow(0);
}
void MainWindow::setPage(QAction * act)
{
if (act == actionEdit_questions) {
mainStackedWidget->setCurrentIndex(1); togglePrintEnabled();
enableEQTools();
} else if (act == actionEdit_comments) {
mainStackedWidget->setCurrentIndex(2); togglePrintEnabled();
disableEQTools();
} else if (act == actionEdit_flags) {
mainStackedWidget->setCurrentIndex(3); togglePrintEnabled();
disableEQTools(); updateFlagQnums();
} else if (act == actionEdit_test) {
mainStackedWidget->setCurrentIndex(4); togglePrintEnabled();
disableEQTools(); reloadAvailableItems();
} else if (act == actionSaved_sessions) {
mainStackedWidget->setCurrentIndex(6); togglePrintEnabled();
disableEQTools();
}
}
void MainWindow::onInfoDisplayChange(bool show)
{
DBIGroupBox->setVisible(show);
actionShow_DBI->setChecked(show); showInfoCheckBox->setChecked(show);
}
void MainWindow::closeEvent(QCloseEvent *event)
{
if (mainStackedWidget->currentIndex() == 5) {event->ignore(); return;}
bool cancelled = saveChangesBeforeProceeding(tr("Quit iTest"), true);
if (!cancelled) {
saveSettings();
event->accept();
} else {event->ignore();}
}
void MainWindow::setDatabaseModified() { this->setWindowModified(true); }
QString MainWindow::removeLineBreaks(QString str) { return str.remove("\n"); }
void MainWindow::checkForUpdates()
{
delete http_buffer; http_buffer = new QBuffer(this);
http->setHost(itest_url);
http->get("/current-version", http_buffer);
}
void MainWindow::httpRequestFinished(bool error)
{
httpRequestFinished_start:
if (error) {
switch (QMessageBox::critical(this, tr("iTest"), tr("Failed to check for updates."), tr("&Try again"), tr("Cancel"), 0, 1)) {
case 0: checkForUpdates(); return; break;
case 1: return; break;
}
}
QString str(http_buffer->data()); QTextStream in(&str);
if (in.readLine() != "[iTest.current-version]") { error = true; goto httpRequestFinished_start; }
QString current_ver = in.readLine();
if (in.readLine() != "[iTest.current-version.float]") { error = true; goto httpRequestFinished_start; }
float f_current_ver = in.readLine().toFloat();
if (in.readLine() != "[iTest.release-notes]") { error = true; goto httpRequestFinished_start; }
QString release_notes;
while (!in.atEnd()) { release_notes.append(in.readLine()); }
if (f_current_ver <= f_ver) {
QMessageBox::information(this, tr("iTest"), tr("Your iTest is up-to-date."));
} else {
QString info; QTextStream out(&info);
out << "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">p, li { white-space: pre-wrap; }</style></head><body><p>" << endl;
out << "<b>" << tr("iTest %1 is available now.").arg(current_ver) << "</b><br><br>" << endl;
out << release_notes << endl << "</p></body></html>";
QMessageBox::information(this, tr("iTest"), info);
}
}
void MainWindow::openDocumentation()
{
QDesktopServices::openUrl(docs_url);
}
uint MainWindow::searchListWidgetItems(QString keyword, QListWidget * lw, QLineEdit * le)
{
if (keyword.isEmpty()) {
le->setPalette(qApp->palette());
} else {
le->setPalette(search_active_palette);
}
uint n = 0;
for (int i = 0; i < lw->count(); ++i) {
if (lw->item(i)->text().contains(keyword, Qt::CaseInsensitive)) {
lw->item(i)->setHidden(false); n++;
} else { lw->item(i)->setHidden(true); }
}
if ((!keyword.isEmpty()) && lw->count() != 0 && n == 0) {
le->setPalette(search_noresults_palette);
}
return n;
}
uint MainWindow::searchTableWidgetItems(QString keyword, QTableWidget * tw, QLineEdit * le)
{
if (keyword.isEmpty()) {
le->setPalette(qApp->palette());
} else {
le->setPalette(search_active_palette);
}
uint n = 0;
for (int i = 0; i < tw->rowCount(); ++i) {
if (tw->item(i, 0)->text().contains(keyword, Qt::CaseInsensitive)) {
tw->showRow(i); n++;
} else { tw->hideRow(i); }
}
if ((!keyword.isEmpty()) && tw->rowCount() != 0 && n == 0) {
le->setPalette(search_noresults_palette);
}
return n;
}
void MainWindow::overallStatistics()
{
QuestionItem * q_item; QTableWidgetItem * tw_item;
QWidget * stats_widget = new QWidget(this, Qt::Dialog );
stats_widget->setWindowModality(Qt::WindowModal);
stats_widget->setAttribute(Qt::WA_DeleteOnClose);
stats_widget->setWindowTitle(tr("%1 - Overall statistics - iTest").arg(current_db_name));
stats_widget->setMinimumSize(QSize(300, 200));
QGridLayout * stats_glayout = new QGridLayout(stats_widget);
QLabel * stats_label = new QLabel(stats_widget);
stats_glayout->addWidget(stats_label, 0, 0);
QHBoxLayout * stats_hlayout_search = new QHBoxLayout(stats_widget);
QLabel * stats_label_search = new QLabel(stats_widget);
stats_label_search->setText(tr("Search:"));
stats_hlayout_search->addWidget(stats_label_search);
stats_search = new ExtendedLineEdit(stats_widget);
QObject::connect(stats_search, SIGNAL(textChanged(const QString &)), this, SLOT(searchStatistics(const QString &)));
stats_hlayout_search->addWidget(stats_search);
stats_glayout->addLayout(stats_hlayout_search, 1, 0);
stats_tw = new QTableWidget(stats_widget);
stats_glayout->addWidget(stats_tw, 2, 0);
QHBoxLayout * stats_hlayout = new QHBoxLayout(stats_widget);
stats_hlayout->setMargin(0); stats_hlayout->setSpacing(6);
stats_hlayout->addStretch();
stats_btn_adjustall = new QPushButton (tr("Adjust all"), stats_widget);
QObject::connect(stats_btn_adjustall, SIGNAL(released()), this, SLOT(statsAdjustAll()));
stats_btn_adjustall->setEnabled(false);
stats_hlayout->addWidget(stats_btn_adjustall);
QPushButton * stats_btn_close = new QPushButton (tr("Close"), stats_widget);
QObject::connect(stats_btn_close, SIGNAL(released()), stats_widget, SLOT(close()));
QObject::connect(stats_widget, SIGNAL(destroyed()), this, SLOT(statsWidgetClosed()));
stats_hlayout->addWidget(stats_btn_close);
stats_glayout->addLayout(stats_hlayout, 3, 0);
stats_glayout->setMargin(6); stats_glayout->setSpacing(6);
btngrpStatsAdjust = new QButtonGroup(stats_widget);
QObject::connect(btngrpStatsAdjust, SIGNAL(buttonReleased(QAbstractButton *)), this, SLOT(statsAdjust(QAbstractButton *)));
int rows = 0; int row = 0;
for (int i = 0; i < LQListWidget->count(); ++i) {
if (current_db_questions.value(LQListWidget->item(i))->recommendedDifficulty() != -1) { rows++; }
}
stats_label->setText(tr("<b>%1 questions with statistics found</b>").arg(rows));
if (rows == 0) { stats_widget->show(); return; }
stats_tw->setRowCount(rows);
stats_tw->setColumnCount(6);
tw_item = new QTableWidgetItem(tr("Question name"));
stats_tw->setHorizontalHeaderItem(0, tw_item);
tw_item = new QTableWidgetItem(tr("Difficulty"));
stats_tw->setHorizontalHeaderItem(1, tw_item);
tw_item = new QTableWidgetItem(tr("Calculated difficulty"));
stats_tw->setHorizontalHeaderItem(2, tw_item);
tw_item = new QTableWidgetItem(tr("Number of correct answers"));
stats_tw->setHorizontalHeaderItem(3, tw_item);
tw_item = new QTableWidgetItem(tr("Number of incorrect answers"));
stats_tw->setHorizontalHeaderItem(4, tw_item);
tw_item = new QTableWidgetItem(tr("Adjust difficulty"));
stats_tw->setHorizontalHeaderItem(5, tw_item);
stats_tw->verticalHeader()->hide();
QFont font; font.setBold(true);
for (int i = 0; i < LQListWidget->count(); ++i) {
q_item = current_db_questions.value(LQListWidget->item(i));
if (q_item->recommendedDifficulty() == -1) { continue; }
tw_item = new QTableWidgetItem(q_item->group().isEmpty() ? q_item->name() : QString("[%1] %2").arg(q_item->group()).arg(q_item->name()));
tw_item->setBackground(QBrush::QBrush(backgroundColourForFlag(q_item->flag())));
tw_item->setForeground(QBrush::QBrush(foregroundColourForFlag(q_item->flag())));
tw_item->setFont(font);
stats_tw->setItem(row, 0, tw_item);
tw_item = new QTableWidgetItem;
switch (q_item->difficulty()) {
case -1: tw_item->setText(tr("Unknown")); break;
case 0: tw_item->setText(tr("Easy"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(197, 255, 120)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
case 1: tw_item->setText(tr("Medium"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(255, 251, 0)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
case 2: tw_item->setText(tr("Difficult"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(204, 109, 0)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
default: tw_item->setText(tr("Unknown")); break;
}
stats_tw->setItem(row, 1, tw_item);
tw_item = new QTableWidgetItem;
switch (q_item->recommendedDifficulty()) {
case -1: tw_item->setText(tr("Unknown")); break;
case 0: tw_item->setText(tr("Easy"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(197, 255, 120)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
case 1: tw_item->setText(tr("Medium"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(255, 251, 0)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
case 2: tw_item->setText(tr("Difficult"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(204, 109, 0)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
default: tw_item->setText(tr("Unknown")); break;
}
stats_tw->setItem(row, 2, tw_item);
tw_item = new QTableWidgetItem(QString("%1").arg(q_item->correctAnsCount()));
tw_item->setFont(font); tw_item->setForeground(QBrush::QBrush(QColor::QColor(92, 163, 0)));
stats_tw->setItem(row, 3, tw_item);
tw_item = new QTableWidgetItem(QString("%1").arg(q_item->incorrectAnsCount()));
tw_item->setFont(font); tw_item->setForeground(QBrush::QBrush(QColor::QColor(204, 109, 0)));
stats_tw->setItem(row, 4, tw_item);
tw_item = new QTableWidgetItem;
QPushButton * stats_btn_adjust = new QPushButton(tr("Adjust difficulty"), stats_tw);
stats_btn_adjust->setEnabled(false);
stats_tw->setCellWidget(row, 5, stats_btn_adjust);
stats_qmap.insert(stats_btn_adjust, q_item);
stats_twmap.insert(stats_btn_adjust, row);
stats_lwmap.insert(stats_btn_adjust, i);
btngrpStatsAdjust->addButton(stats_btn_adjust);
if (q_item->difficulty() != q_item->recommendedDifficulty()) {
stats_btn_adjustall->setEnabled(true);
stats_btn_adjust->setEnabled(true);
}
row++;
}
stats_tw->resizeColumnsToContents(); stats_tw->resizeRowsToContents();
stats_widget->resize(stats_tw->columnWidth(0) + stats_tw->columnWidth(1) + stats_tw->columnWidth(2) + stats_tw->columnWidth(3) + stats_tw->columnWidth(4) + stats_tw->columnWidth(5) + 40, 400);
stats_widget->show();
}
void MainWindow::statsAdjustAll()
{
if (stats_tw == NULL) { return; }
QAbstractButton * btn;
for (int i = 0; i < stats_tw->rowCount(); ++i) {
btn = (QAbstractButton *)stats_tw->cellWidget(i, 5);
if (btn == NULL) { continue; }
if (!btn->isEnabled()) { continue; }
statsAdjust(btn);
}
if (stats_btn_adjustall == NULL) { return; }
stats_btn_adjustall->setEnabled(false);
}
void MainWindow::statsAdjust(QAbstractButton * btn)
{
QuestionItem * q_item = stats_qmap.value(btn);
if (q_item == NULL) { return; }
if (stats_tw == NULL) { return; }
int row = stats_twmap.value(btn, -1);
if (row == -1) { return; }
QTableWidgetItem * tw_item = stats_tw->item(row, 1);
if (tw_item == NULL) { return; }
int rdif = q_item->recommendedDifficulty();
switch (rdif) {
case -1: break;
case 0: tw_item->setText(tr("Easy"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(197, 255, 120)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
case 1: tw_item->setText(tr("Medium"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(255, 251, 0)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
case 2: tw_item->setText(tr("Difficult"));
tw_item->setBackground(QBrush::QBrush(QColor::QColor(204, 109, 0)));
tw_item->setForeground(QBrush::QBrush(QColor::QColor(0, 0, 0)));
break;
default: break;
}
if (rdif >= 0 && rdif <= 2) {
q_item->setDifficulty(rdif);
if (current_db_questions.value(LQListWidget->currentItem()) == q_item)
{ SQDifficultyComboBox->setCurrentIndex(rdif); }
setDatabaseModified(); btn->setEnabled(false);
int i = stats_lwmap.value(btn, -1);
if (i == -1) { return; }
QListWidgetItem * lw_item = LQListWidget->item(i);
if (lw_item == NULL) { return; }
setQuestionItemIcon(lw_item, rdif);
}
}
void MainWindow::statsWidgetClosed()
{
stats_qmap.clear();
stats_twmap.clear();
stats_lwmap.clear();
}
void MainWindow::searchStatistics(const QString & keyword)
{
searchTableWidgetItems(keyword, stats_tw, stats_search);
}
void MainWindow::showPrintQuestionsDialogue()
{
QWidget * printq_widget = new QWidget(this, Qt::Dialog );
printq_widget->setWindowModality(Qt::WindowModal);
printq_widget->setAttribute(Qt::WA_DeleteOnClose);
printq_widget->setWindowTitle(tr("%1 - Print questions - iTest").arg(current_db_name));
printq_widget->setMinimumSize(QSize(400, 300));
rbtngrpPrintqSelect = new QButtonGroup(printq_widget);
QObject::connect(rbtngrpPrintqSelect, SIGNAL(buttonReleased(QAbstractButton *)), this, SLOT(togglePrintSelection(QAbstractButton *)));
QGridLayout * printq_glayout = new QGridLayout(printq_widget);
QHBoxLayout * printq_hlayout0 = new QHBoxLayout(printq_widget);
printq_hlayout0->setMargin(0); printq_hlayout0->setSpacing(6);
QLabel * printq_label = new QLabel(printq_widget);
printq_label->setText(tr("Select:"));
printq_hlayout0->addWidget(printq_label);
QRadioButton * printq_rbtn_flags = new QRadioButton(printq_widget);
printq_rbtn_flags->setText(tr("Flags"));
printq_rbtn_flags->setChecked(true);
rbtngrpPrintqSelect->addButton(printq_rbtn_flags);
printq_hlayout0->addWidget(printq_rbtn_flags);
QRadioButton * printq_rbtn_questions = new QRadioButton(printq_widget);
printq_rbtn_questions->setText(tr("Questions"));
printq_rbtn_flags->setChecked(false);
rbtngrpPrintqSelect->addButton(printq_rbtn_questions);
printq_hlayout0->addWidget(printq_rbtn_questions);
printq_hlayout0->addStretch();
printq_glayout->addLayout(printq_hlayout0, 0, 0);
QHBoxLayout * printq_hlayout1 = new QHBoxLayout(printq_widget);
printq_hlayout1->setMargin(0); printq_hlayout1->setSpacing(6);
QVBoxLayout * printq_vlayout1 = new QVBoxLayout(printq_widget);
QLabel * printq_label_do_not_print = new QLabel(printq_widget);
printq_label_do_not_print->setText(tr("<b>Do not print:</b>"));
printq_vlayout1->addWidget(printq_label_do_not_print);
QHBoxLayout * printq_hlayout1_1 = new QHBoxLayout(printq_widget);
QLabel * printq_label_search_excluded = new QLabel(printq_widget);
printq_label_search_excluded->setText(tr("Search:"));
printq_hlayout1_1->addWidget(printq_label_search_excluded);
printq_search_excluded = new ExtendedLineEdit(printq_widget);
QObject::connect(printq_search_excluded, SIGNAL(textChanged(const QString &)), this, SLOT(searchQuestionsNotToPrint(const QString &)));
printq_hlayout1_1->addWidget(printq_search_excluded);
printq_vlayout1->addLayout(printq_hlayout1_1);
printq_excludelist = new QListWidget(printq_widget);
QObject::connect(printq_excludelist, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(addQuestionToPrint()));
QObject::connect(printq_excludelist, SIGNAL(currentTextChanged(QString)), this, SLOT(toggleAddRemoveQuestionToPrintEnabled()));
printq_vlayout1->addWidget(printq_excludelist);
printq_hlayout1->addLayout(printq_vlayout1);
QVBoxLayout * printq_vlayout2 = new QVBoxLayout(printq_widget);
printq_vlayout2->addStretch();
printq_add = new QPushButton(printq_widget);
printq_add->setIcon(QIcon(QString::fromUtf8(":/images/images/forward.png")));
QObject::connect(printq_add, SIGNAL(released()), this, SLOT(addQuestionToPrint()));
printq_vlayout2->addWidget(printq_add);
printq_remove = new QPushButton(printq_widget);
printq_remove->setIcon(QIcon(QString::fromUtf8(":/images/images/back.png")));
QObject::connect(printq_remove, SIGNAL(released()), this, SLOT(removeQuestionToPrint()));
printq_vlayout2->addWidget(printq_remove);
printq_vlayout2->addStretch();
printq_hlayout1->addLayout(printq_vlayout2);
QVBoxLayout * printq_vlayout3 = new QVBoxLayout(printq_widget);
QLabel * printq_label_print = new QLabel(printq_widget);
printq_label_print->setText(tr("<b>Print:</b>"));
printq_vlayout3->addWidget(printq_label_print);
QHBoxLayout * printq_hlayout1_2 = new QHBoxLayout(printq_widget);
QLabel * printq_label_search_included = new QLabel(printq_widget);
printq_label_search_included->setText(tr("Search:"));
printq_hlayout1_2->addWidget(printq_label_search_included);
printq_search_included = new ExtendedLineEdit(printq_widget);
QObject::connect(printq_search_included, SIGNAL(textChanged(const QString &)), this, SLOT(searchQuestionsToPrint(const QString &)));
printq_hlayout1_2->addWidget(printq_search_included);
printq_vlayout3->addLayout(printq_hlayout1_2);
printq_includelist = new QListWidget(printq_widget);
QObject::connect(printq_includelist, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(removeQuestionToPrint()));
QObject::connect(printq_includelist, SIGNAL(currentTextChanged(QString)), this, SLOT(toggleAddRemoveQuestionToPrintEnabled()));
printq_vlayout3->addWidget(printq_includelist);
printq_hlayout1->addLayout(printq_vlayout3);
printq_glayout->addLayout(printq_hlayout1, 1, 0);
QHBoxLayout * printq_hlayout2 = new QHBoxLayout(printq_widget);
printq_hlayout2->setMargin(0); printq_hlayout2->setSpacing(6);
QPushButton * printq_btn_add_all = new QPushButton(printq_widget);
printq_btn_add_all->setText(tr("&Add all"));
QObject::connect(printq_btn_add_all, SIGNAL(released()), this, SLOT(addAllQuestionsToPrint()));
printq_hlayout2->addWidget(printq_btn_add_all);
printq_hlayout2->addStretch();
printq_btn_print = new QPushButton(tr("&Print"), printq_widget);
QObject::connect(printq_btn_print, SIGNAL(released()), this, SLOT(printQuestions()));
printq_btn_print->setEnabled(false);
printq_hlayout2->addWidget(printq_btn_print);
QPushButton * printq_btn_close = new QPushButton(tr("&Close"), printq_widget);
QObject::connect(printq_btn_close, SIGNAL(released()), printq_widget, SLOT(close()));
printq_hlayout2->addWidget(printq_btn_close);
printq_glayout->addLayout(printq_hlayout2, 2, 0);
MTAdvancedGroupBox * printq_advanced = new MTAdvancedGroupBox(printq_widget);
printq_advanced_statistics = new QCheckBox(tr("Print statistics"), printq_widget);
printq_advanced_statistics->setChecked(true);
printq_advanced->addWidget(printq_advanced_statistics, 0, 0);
printq_advanced_formatting = new QCheckBox(tr("Print formatted questions"), printq_widget);
printq_advanced_formatting->setChecked(true);
printq_advanced->addWidget(printq_advanced_formatting, 1, 0);
printq_advanced_test = new QCheckBox(tr("Print a test (do not highlight the correct answers)"), printq_widget);
printq_advanced_test->setChecked(false);
QObject::connect(printq_advanced_test, SIGNAL(toggled(bool)), printq_advanced_statistics, SLOT(setDisabled(bool)));
QObject::connect(printq_advanced_test, SIGNAL(toggled(bool)), printq_advanced_formatting, SLOT(setDisabled(bool)));
printq_advanced->addWidget(printq_advanced_test, 2, 0);
printq_advanced_graphics = new QCheckBox(tr("Print graphics"), printq_widget);
printq_advanced_graphics->setChecked(false);
printq_advanced->addWidget(printq_advanced_graphics, 3, 0);
printq_glayout->addWidget(printq_advanced, 3, 0);
printq_glayout->setMargin(6); printq_glayout->setSpacing(6);
toggleAddRemoveQuestionToPrintEnabled();
QListWidgetItem * item;
for (int i = 0; i < 20; ++i) {
if (current_db_fe[i]) {
item = new QListWidgetItem(QString("%1 - %2").arg(i+1).arg(current_db_f[i]), printq_excludelist);
item->setData(Qt::UserRole, i);
setQuestionItemColour(item, i);
}
}
printq_widget->show();
}
void MainWindow::togglePrintSelection(QAbstractButton * rbtn)
{
if (rbtn->text() == tr("Flags")) {
printq_excludelist->clear();
printq_includelist->clear();
printq_btn_print->setEnabled(false);
QListWidgetItem * item;
for (int i = 0; i < 20; ++i) {
if (current_db_fe[i]) {
item = new QListWidgetItem(QString("%1 - %2").arg(i+1).arg(current_db_f[i]), printq_excludelist);
item->setData(Qt::UserRole, i);
setQuestionItemColour(item, i);
}
}
} else if (rbtn->text() == tr("Questions")) {
printq_excludelist->clear();
printq_includelist->clear();
printq_btn_print->setEnabled(false);
QListWidgetItem * item;
for (int i = 0; i < LQListWidget->count(); ++i) {
if (!current_db_questions.value(LQListWidget->item(i))->isHidden() || actionShow_hidden->isChecked()) {
item = new QListWidgetItem(*LQListWidget->item(i));
item->setData(Qt::UserRole, i);
printq_excludelist->addItem(item);
}
}
}
}
void MainWindow::addQuestionToPrint()
{
if (printq_excludelist->currentIndex().isValid()) {
printq_includelist->addItem(printq_excludelist->takeItem(printq_excludelist->currentRow()));
printq_btn_print->setEnabled(true);
toggleAddRemoveQuestionToPrintEnabled();
}
}
void MainWindow::removeQuestionToPrint()
{
if (printq_includelist->currentIndex().isValid()) {
printq_excludelist->addItem(printq_includelist->takeItem(printq_includelist->currentRow()));
if (printq_includelist->count() <= 0) printq_btn_print->setEnabled(false);
toggleAddRemoveQuestionToPrintEnabled();
}
}
void MainWindow::addAllQuestionsToPrint()
{
for (int i = 0; i < printq_excludelist->count();) {
printq_includelist->addItem(printq_excludelist->takeItem(i));
printq_btn_print->setEnabled(true);
}
toggleAddRemoveQuestionToPrintEnabled();
}
void MainWindow::searchQuestionsNotToPrint(const QString & keyword)
{
searchListWidgetItems(keyword, printq_excludelist, printq_search_excluded);
}
void MainWindow::searchQuestionsToPrint(const QString & keyword)
{
searchListWidgetItems(keyword, printq_includelist, printq_search_included);
}
void MainWindow::toggleAddRemoveQuestionToPrintEnabled()
{
if (printq_excludelist->currentIndex().isValid()) {
printq_add->setEnabled(true);
} else { printq_add->setEnabled(false); }
if (printq_includelist->currentIndex().isValid()) {
printq_remove->setEnabled(true);
} else { printq_remove->setEnabled(false); }
}
void MainWindow::changeLanguage()
{
QWidget * lang_widget = new QWidget(this, Qt::Dialog);
lang_widget->setWindowModality(Qt::WindowModal);
lang_widget->setAttribute(Qt::WA_DeleteOnClose);
lang_widget->setWindowTitle(tr("Change language - iTest"));
QGridLayout * lang_glayout = new QGridLayout(lang_widget);
lang_glayout->setMargin(6); lang_glayout->setSpacing(6);
QLabel * lang_label = new QLabel(lang_widget);
lang_label->setText(tr("Select your preferred language"));
lang_glayout->addWidget(lang_label, 0, 0);
langComboBox = new QComboBox(lang_widget);
QStringList langs(itest_i18n.values()); langs.sort();
for (int i = 0; i < langs.count(); ++i) {
langComboBox->addItem(tr(QByteArray().append(langs.at(i)).constData()), lang_widget);
if (langs.at(i) == "English") { langComboBox->setCurrentIndex(i); }
}
lang_glayout->addWidget(langComboBox, 1, 0);
QDialogButtonBox * lang_buttonbox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, lang_widget);
QObject::connect(lang_buttonbox, SIGNAL(accepted()), this, SLOT(langChanged()));
QObject::connect(lang_buttonbox, SIGNAL(rejected()), lang_widget, SLOT(close()));
lang_glayout->addWidget(lang_buttonbox, 2, 0);
lang_widget->show();
}
void MainWindow::langChanged()
{
if (langComboBox == NULL) { return; }
QString lang = itest_i18n.value(langComboBox->currentText(), langComboBox->currentText());
QSettings settings("Michal Tomlein", "iTest");
QString current_lang = settings.value("lang", "English").toString();
if (current_lang != lang) {
settings.setValue("lang", lang);
QMessageBox::information(this, tr("iTest"), tr("You need to restart iTest for the changes to apply."));
}
if (langComboBox->parent() == NULL) { return; }
QWidget * lang_widget = (QWidget *)langComboBox->parent();
lang_widget->close();
}
void MainWindow::previewSvg(QListWidgetItem * item)
{
SvgItem * svg_item = (SvgItem *)item;
if (!svg_item->isValid()) { return; }
QSvgWidget * svg_widget = new QSvgWidget;
svg_widget->setAttribute(Qt::WA_DeleteOnClose);
svg_widget->setWindowTitle(svg_item->text());
QSize minimum_size = svg_widget->sizeHint();
minimum_size.scale(128, 128, Qt::KeepAspectRatioByExpanding);
svg_widget->setMinimumSize(minimum_size);
svg_widget->load(svg_item->svg().toUtf8());
svg_widget->show();
}
void MainWindow::about()
{
AboutWidget * itest_about = new AboutWidget(ver, QString("4.3.2"), QString("2007"));
itest_about->setParent(this);
itest_about->setWindowFlags(Qt::Dialog | Qt::WindowStaysOnTopHint);
itest_about->show();
}