/*************************************************************************** * Copyright (C) 2008 by BogDan Vatra * * Copyright (C) 2009 by Robin Stuart * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * * along with this program. If not, see . * ***************************************************************************/ #include #include #include #include #include #include #include "mainwindow.h" #include MainWindow::MainWindow(QWidget* parent, Qt::WFlags fl) : QWidget(parent, fl),m_optionWidget(0) { char bstyle_text[][50] = { "Australia Post Standard Customer", "Australia Post Reply-Paid", "Australia Post Routing Code", "Australia Post Redirect Code", "Aztec Code", "Aztec Runes", "Channel Code", "Codabar", "Codablock-F", "Code 11", "Code 128", "Code 16k", "Code 2 of 5 Data Logic", "Code 2 of 5 IATA", "Code 2 of 5 Industrial", "Code 2 of 5 Interleaved", "Code 2 of 5 Matrix", "Code 32 (Italian Pharmacode)", "Code 39", "Code 39 Extended", "Code 49", "Code 93", "Code One", "Databar", "Databar Expanded", "Databar Expanded Stacked", "Databar Limited", "Databar Stacked", "Databar Stacked Omnidirectional", "Data Matrix", "Deutsche Post Identcode", "Deutsche Post Leitcode", "Dutch Post KIX", "EAN-14", "European Article Number (EAN)", "FIM", "Flattermarken", "ITF-14", "International Standard Book Number (ISBN)", "Japanese Postal Barcode", "Korean Postal Barcode", "LOGMARS", "Maxicode", "MicroPDF417", "Micro QR Code", "MSI Plessey", "NVE-18", "PDF417", "Pharmacode", "Pharmacode 2-track", "Pharma Zentralnummer (PZN)", "PLANET", "Postnet", "QR Code", "Royal Mail 4-state Barcode", "Telepen", "Telepen Numeric", "UK Plessey", "UPC-A", "UPC-E", "USPS One Code" }; /* createActions(); createMenus(); */ setupUi(this); view->setScene(new QGraphicsScene); m_fgcolor=qRgb(0,0,0); m_bgcolor=qRgb(0xff,0xff,0xff); for (int i=0;ienumerator(0).keyCount();i++) { bstyle->addItem(metaObject()->enumerator(0).key(i)); bstyle->setItemText(i,bstyle_text[i]); } bstyle->setCurrentIndex(10); change_options(); update_preview(); view->scene()->addItem(&m_bc); connect(bstyle, SIGNAL(currentIndexChanged( int )), SLOT(change_options())); connect(bstyle, SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(heightb, SIGNAL(valueChanged( int )), SLOT(update_preview())); connect(bwidth, SIGNAL(valueChanged( int )), SLOT(update_preview())); connect(btype, SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(txtData, SIGNAL(textChanged( const QString& )), SLOT(update_preview())); connect(txtComposite, SIGNAL(textChanged()), SLOT(update_preview())); connect(chkComposite, SIGNAL(stateChanged( int )), SLOT(composite_enable())); connect(chkComposite, SIGNAL(stateChanged( int )), SLOT(update_preview())); connect(cmbCompType, SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(rotateSlider, SIGNAL(valueChanged(int)), SLOT(scaleRotate())); connect(scaleSlider, SIGNAL(valueChanged(int)), SLOT(scaleRotate())); connect(spnWhitespace, SIGNAL(valueChanged( int )), SLOT(update_preview())); connect(btnAbout, SIGNAL(clicked( bool )), SLOT(about())); connect(btnSave, SIGNAL(clicked( bool )), SLOT(save())); connect(spnScale, SIGNAL(valueChanged( double )), SLOT(change_print_scale())); connect(btnExit, SIGNAL(clicked( bool )), SLOT(quit_now())); } MainWindow::~MainWindow() { } void MainWindow::scaleRotate() { view->resetTransform(); view->rotate(rotateSlider->value()); view->scale((double)scaleSlider->value()/100,(double)scaleSlider->value()/100); } /* void MainWindow::createActions() { saveAct = new QAction(tr("&Save"), this); saveAct->setShortcut(tr("Ctrl+S")); saveAct->setStatusTip(tr("Save the document to disk")); connect(saveAct, SIGNAL(triggered()), this, SLOT(save())); aboutQtAct = new QAction(tr("About &Qt"), this); aboutQtAct->setStatusTip(tr("Show the Qt library's About box")); connect(aboutQtAct, SIGNAL(triggered()), qApp, SLOT(aboutQt())); } void MainWindow::createMenus() { fileMenu = menuBar()->addMenu(tr("&File")); fileMenu->addAction(saveAct); fileMenu->addAction(exitAction); helpMenu = menuBar()->addMenu(tr("&Help")); helpMenu->addAction(aboutQtAct); } */ bool MainWindow::save() { bool status; /* Does nothing yet! */ QString fileName = QFileDialog::getSaveFileName(this, tr("Save Barcode Image"), ".", tr("Barcode Images (*.png *.eps *.svg)")); if (fileName.isEmpty()) return false; status = m_bc.bc.save_to_file(fileName); if(status == false) { QMessageBox::critical(this,tr("Save Error"),m_bc.bc.error_message()); } return status; } void MainWindow::about() { QMessageBox::about(this, tr("About Zint"), tr("

Zint Barcode Studio 0.3

" "

A simple barcode generator" "

Requires libzint 2.1.3 or greater." "

Visit the Zint Project Homepage for more information." "

Copyright © 2009 Robin Stuart & Bogdan Vatra.
" "QR Code support by Kentaro Fukuchi.
" "Released under the GNU General Public License ver. 3" "

\"QR Code\" is a Registered Trademark of Denso Corp." )); } void MainWindow::on_fgcolor_clicked() { m_fgcolor=QColorDialog::getColor(m_fgcolor,this); update_preview(); } void MainWindow::on_bgcolor_clicked() { m_bgcolor=QColorDialog::getColor(m_bgcolor,this); update_preview(); } void MainWindow::change_print_scale() { /* This value is only used when printing (saving) to file */ m_bc.bc.setScale((float)spnScale->value()); } void MainWindow::quit_now() { close(); } void MainWindow::change_options() { QUiLoader uiload; if (tabMain->count()==3) tabMain->removeTab(1); if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_CODE128) { QFile file(":/grpC128.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Code 128")); chkComposite->setText(tr("Add 2D Component (GS1-128 only)")); connect(m_optionWidget->findChild("radC128EAN"), SIGNAL(toggled( bool )), SLOT(composite_ean_check())); connect(m_optionWidget->findChild("radC128Stand"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radC128CSup"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radC128EAN"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radC128HIBC"), SIGNAL(clicked( bool )), SLOT(update_preview())); } else chkComposite->setText(tr("Add 2D Component")); if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_PDF417) { QFile file(":/grpPDF417.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("PDF417")); connect(m_optionWidget->findChild("codewords"), SIGNAL(valueChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbPDFECC"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbPDFCols"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("radPDFTruncated"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radPDFStand"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radPDFHIBC"), SIGNAL(clicked( bool )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_MICROPDF417) { QFile file(":/grpMicroPDF.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Micro PDF417")); connect(m_optionWidget->findChild("cmbMPDFCols"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("radMPDFStand"), SIGNAL(toggled( bool )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_AZTEC) { QFile file(":/grpAztec.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Aztec Code")); connect(m_optionWidget->findChild("radAztecAuto"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radAztecSize"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radAztecECC"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbAztecSize"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbAztecECC"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("chkAztecMode"), SIGNAL(stateChanged( int )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_MSI_PLESSEY) { QFile file(":/grpMSICheck.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("MSI Plessey")); connect(m_optionWidget->findChild("cmbMSICheck"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); } if((metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_CODE39) || (metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_EXCODE39)) { QFile file(":/grpC39.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Code 39")); connect(m_optionWidget->findChild("radC39Stand"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radC39Check"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radC39HIBC"), SIGNAL(clicked( bool )), SLOT(update_preview())); if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_EXCODE39) { if(m_optionWidget->findChild("radC39HIBC")->isChecked() == true) { m_optionWidget->findChild("radC39HIBC")->setChecked(false); m_optionWidget->findChild("radC39Stand")->setChecked(true); } m_optionWidget->findChild("radC39HIBC")->setEnabled(false); } else m_optionWidget->findChild("radC39HIBC")->setEnabled(true); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_CODABLOCKF) { QFile file(":/grpCodablock.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Codablock-F")); connect(m_optionWidget->findChild("radCodaStand"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radCodaGS1"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radCodaHIBC"), SIGNAL(clicked( bool )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_CODE16K) { QFile file(":/grpC16k.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Code 16K")); connect(m_optionWidget->findChild("radC16kStand"), SIGNAL(toggled( bool )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_DATAMATRIX) { QFile file(":/grpDM.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Data Matrix")); connect(m_optionWidget->findChild("cmbDMMode"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbDMMode"), SIGNAL(currentIndexChanged( int )), SLOT(datamatrix_options())); connect(m_optionWidget->findChild("radDM200Stand"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radDM200GS1"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radDM200HIBC"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbDM200Size"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbDMNon200Size"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); datamatrix_options(); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_QRCODE) { QFile file(":/grpQR.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("QR Code")); connect(m_optionWidget->findChild("radQRAuto"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radQRSize"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radQRECC"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbQRSize"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbQRECC"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("chkQRHIBC"), SIGNAL(stateChanged( int )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_MICROQR) { QFile file(":/grpMQR.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Micro QR Code")); connect(m_optionWidget->findChild("radMQRAuto"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radMQRSize"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("radMQRECC"), SIGNAL(clicked( bool )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbMQRSize"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbMQRECC"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_MAXICODE) { QFile file(":/grpMaxicode.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Maxicode")); connect(m_optionWidget->findChild("cmbMaxiMode"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); connect(m_optionWidget->findChild("cmbMaxiMode"), SIGNAL(currentIndexChanged( int )), SLOT(maxi_primary())); connect(m_optionWidget->findChild("txtMaxiPrimary"), SIGNAL(textChanged( const QString& )), SLOT(update_preview())); } if(metaObject()->enumerator(0).value(bstyle->currentIndex()) == BARCODE_CHANNEL) { QFile file(":/grpChannel.ui"); if (!file.open(QIODevice::ReadOnly)) return; m_optionWidget=uiload.load(&file); file.close(); tabMain->insertTab(1,m_optionWidget,tr("Channel Code")); connect(m_optionWidget->findChild("cmbChannel"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview())); } switch(metaObject()->enumerator(0).value(bstyle->currentIndex())) { case BARCODE_CODE128: case BARCODE_EANX: case BARCODE_UPCA: case BARCODE_UPCE: case BARCODE_RSS14: case BARCODE_RSS_LTD: case BARCODE_RSS_EXP: case BARCODE_RSS14STACK: case BARCODE_RSS14STACK_OMNI: case BARCODE_RSS_EXPSTACK: grpComposite->show(); break; default: chkComposite->setChecked(false); grpComposite->hide(); break; } tabMain->setCurrentIndex(0); } void MainWindow::composite_enable() { if(chkComposite->isChecked() == true) { lblCompType->setEnabled(true); cmbCompType->setEnabled(true); lblComposite->setEnabled(true); txtComposite->setEnabled(true); if (metaObject()->enumerator(0).value(bstyle->currentIndex())==BARCODE_CODE128) m_optionWidget->findChild("radC128EAN")->setChecked(true); } else { lblCompType->setEnabled(false); cmbCompType->setEnabled(false); lblComposite->setEnabled(false); txtComposite->setEnabled(false); } } void MainWindow::composite_ean_check() { if (metaObject()->enumerator(0).value(bstyle->currentIndex())!=BARCODE_CODE128) return; if(!m_optionWidget->findChild("radC128EAN")->isChecked()) chkComposite->setChecked(false); } void MainWindow::datamatrix_options() { if (metaObject()->enumerator(0).value(bstyle->currentIndex())!=BARCODE_DATAMATRIX) return; if(m_optionWidget->findChild("cmbDMMode")->currentIndex() == 0) { m_optionWidget->findChild("grpDMNon200")->hide(); m_optionWidget->findChild("grpDM200")->show(); } else { m_optionWidget->findChild("grpDM200")->hide(); m_optionWidget->findChild("grpDMNon200")->show(); } } void MainWindow::maxi_primary() { if (metaObject()->enumerator(0).value(bstyle->currentIndex())!=BARCODE_MAXICODE) return; if(m_optionWidget->findChild("cmbMaxiMode")->currentIndex() == 0) { m_optionWidget->findChild("lblMaxiPrimary")->setEnabled(true); m_optionWidget->findChild("txtMaxiPrimary")->setEnabled(true); } else { m_optionWidget->findChild("lblMaxiPrimary")->setEnabled(false); m_optionWidget->findChild("txtMaxiPrimary")->setEnabled(false); } } void MainWindow::update_preview() { QString error; m_bc.ar=(Zint::QZint::AspectRatioMode)1; if(chkComposite->isChecked() == true) { m_bc.bc.setPrimaryMessage(txtData->text()); m_bc.bc.setText(txtComposite->toPlainText()); } else { m_bc.bc.setText(txtData->text()); /*m_bc.bc.setPrimaryMessage(txtComposite->text());*/ } m_bc.bc.setSecurityLevel(0); m_bc.bc.setWidth(0); m_bc.bc.setInputMode(UNICODE_MODE); switch(metaObject()->enumerator(0).value(bstyle->currentIndex())) { case BARCODE_CODE128: if(m_optionWidget->findChild("radC128Stand")->isChecked()) m_bc.bc.setSymbol(BARCODE_CODE128); if(m_optionWidget->findChild("radC128CSup")->isChecked()) m_bc.bc.setSymbol(BARCODE_CODE128B); if(m_optionWidget->findChild("radC128EAN")->isChecked()) { if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_EAN128_CC); else m_bc.bc.setSymbol(BARCODE_EAN128); } if(m_optionWidget->findChild("radC128HIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_128); break; case BARCODE_EANX: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_EANX_CC); else m_bc.bc.setSymbol(BARCODE_EANX); break; case BARCODE_UPCA: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_UPCA_CC); else m_bc.bc.setSymbol(BARCODE_UPCA); break; case BARCODE_UPCE: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_UPCE_CC); else m_bc.bc.setSymbol(BARCODE_UPCE); break; case BARCODE_RSS14: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_RSS14_CC); else m_bc.bc.setSymbol(BARCODE_RSS14); break; case BARCODE_RSS_LTD: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_RSS_LTD_CC); else m_bc.bc.setSymbol(BARCODE_RSS_LTD); break; case BARCODE_RSS_EXP: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_RSS_EXP_CC); else m_bc.bc.setSymbol(BARCODE_RSS_EXP); break; case BARCODE_RSS14STACK: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_RSS14STACK_CC); else m_bc.bc.setSymbol(BARCODE_RSS14STACK); break; case BARCODE_RSS14STACK_OMNI: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_RSS14_OMNI_CC); else m_bc.bc.setSymbol(BARCODE_RSS14STACK_OMNI); break; case BARCODE_RSS_EXPSTACK: if(chkComposite->isChecked()) m_bc.bc.setSymbol(BARCODE_RSS_EXPSTACK_CC); else m_bc.bc.setSymbol(BARCODE_RSS_EXPSTACK); break; case BARCODE_PDF417: m_bc.bc.setWidth(m_optionWidget->findChild("cmbPDFCols")->currentIndex()); m_bc.bc.setSecurityLevel(m_optionWidget->findChild("cmbPDFECC")->currentIndex()-1); m_bc.bc.setPdf417CodeWords(m_optionWidget->findChild("codewords")->value()); if(m_optionWidget->findChild("radPDFStand")->isChecked()) m_bc.bc.setSymbol(BARCODE_PDF417); if(m_optionWidget->findChild("radPDFTruncated")->isChecked()) m_bc.bc.setSymbol(BARCODE_PDF417TRUNC); if(m_optionWidget->findChild("radPDFHIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_PDF); break; case BARCODE_MICROPDF417: m_bc.bc.setWidth(m_optionWidget->findChild("cmbMPDFCols")->currentIndex()); if(m_optionWidget->findChild("radMPDFStand")->isChecked()) m_bc.bc.setSymbol(BARCODE_MICROPDF417); if(m_optionWidget->findChild("radMPDFHIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_MICPDF); break; case BARCODE_AZTEC: m_bc.bc.setSymbol(BARCODE_AZTEC); if(m_optionWidget->findChild("radAztecSize")->isChecked()) m_bc.bc.setWidth(m_optionWidget->findChild("cmbAztecSize")->currentIndex() + 1); if(m_optionWidget->findChild("radAztecECC")->isChecked()) m_bc.bc.setSecurityLevel(m_optionWidget->findChild("cmbAztecECC")->currentIndex() + 1); if(m_optionWidget->findChild("chkAztecMode")->isChecked()) m_bc.bc.setInputMode(GS1_MODE); break; case MSI_PLESSEY: m_bc.bc.setSymbol(BARCODE_MSI_PLESSEY); m_bc.bc.setWidth(m_optionWidget->findChild("cmbMSICheck")->currentIndex()); break; case BARCODE_CODE39: if(m_optionWidget->findChild("radC39HIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_39); else { m_bc.bc.setSymbol(BARCODE_CODE39); if(m_optionWidget->findChild("radC39Check")->isChecked()) m_bc.bc.setWidth(1); } break; case BARCODE_EXCODE39: m_bc.bc.setSymbol(BARCODE_EXCODE39); if(m_optionWidget->findChild("radC39Check")->isChecked()) m_bc.bc.setWidth(1); break; case BARCODE_CODE16K: m_bc.bc.setSymbol(BARCODE_CODE16K); if(m_optionWidget->findChild("radC16kStand")->isChecked()) m_bc.bc.setInputMode(UNICODE_MODE); else m_bc.bc.setInputMode(GS1_MODE); break; case BARCODE_CODABLOCKF: if(m_optionWidget->findChild("radCodaGS1")->isChecked()) m_bc.bc.setInputMode(GS1_MODE); if(m_optionWidget->findChild("radCodaHIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_BLOCKF); else m_bc.bc.setSymbol(BARCODE_CODABLOCKF); break; case BARCODE_DATAMATRIX: m_bc.bc.setSecurityLevel(m_optionWidget->findChild("cmbDMMode")->currentIndex() + 1); if(m_optionWidget->findChild("cmbDMMode")->currentIndex() == 0) { /* ECC 200 */ if(m_optionWidget->findChild("radDM200HIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_DM); else m_bc.bc.setSymbol(BARCODE_DATAMATRIX); if(m_optionWidget->findChild("radDM200GS1")->isChecked()) m_bc.bc.setInputMode(GS1_MODE); m_bc.bc.setWidth(m_optionWidget->findChild("cmbDM200Size")->currentIndex()); } else { /* Not ECC 200 */ m_bc.bc.setSymbol(BARCODE_DATAMATRIX); m_bc.bc.setWidth(m_optionWidget->findChild("cmbDMNon200Size")->currentIndex()); } break; case BARCODE_QRCODE: if(m_optionWidget->findChild("chkQRHIBC")->isChecked()) m_bc.bc.setSymbol(BARCODE_HIBC_QR); else m_bc.bc.setSymbol(BARCODE_QRCODE); if(m_optionWidget->findChild("radQRSize")->isChecked()) m_bc.bc.setWidth(m_optionWidget->findChild("cmbQRSize")->currentIndex() + 1); if(m_optionWidget->findChild("radQRECC")->isChecked()) m_bc.bc.setSecurityLevel(m_optionWidget->findChild("cmbQRECC")->currentIndex() + 1); break; case BARCODE_MICROQR: m_bc.bc.setSymbol(BARCODE_MICROQR); if(m_optionWidget->findChild("radMQRSize")->isChecked()) m_bc.bc.setWidth(m_optionWidget->findChild("cmbMQRSize")->currentIndex() + 1); if(m_optionWidget->findChild("radMQRECC")->isChecked()) m_bc.bc.setSecurityLevel(m_optionWidget->findChild("cmbMQRECC")->currentIndex() + 1); break; case BARCODE_MAXICODE: m_bc.bc.setSymbol(BARCODE_MAXICODE); if(m_optionWidget->findChild("cmbMaxiMode")->currentIndex() == 0) { m_bc.bc.setSecurityLevel(2); m_bc.bc.setPrimaryMessage(m_optionWidget->findChild("txtMaxiPrimary")->text()); } else m_bc.bc.setSecurityLevel(m_optionWidget->findChild("cmbMaxiMode")->currentIndex() + 3); break; case BARCODE_CHANNEL: m_bc.bc.setSymbol(BARCODE_CHANNEL); if(m_optionWidget->findChild("cmbChannel")->currentIndex() == 0) m_bc.bc.setWidth(0); else m_bc.bc.setWidth(m_optionWidget->findChild("cmbChannel")->currentIndex() + 2); break; default: m_bc.bc.setSymbol(metaObject()->enumerator(0).value(bstyle->currentIndex())); break; } if(chkComposite->isChecked()) m_bc.bc.setSecurityLevel(cmbCompType->currentIndex()); m_bc.bc.setBorderType((Zint::QZint::BorderType)(btype->currentIndex()*2)); m_bc.bc.setBorderWidth(bwidth->value()); m_bc.bc.setHeight(heightb->value()); m_bc.bc.setWhitespace(spnWhitespace->value()); m_bc.bc.setFgColor(m_fgcolor); m_bc.bc.setBgColor(m_bgcolor); m_bc.update(); view->scene()->update(); }