Revert "Rename a number of old tq methods that are no longer tq specific"

This reverts commit 64e14d1bc3.
pull/1/head
Timothy Pearson 13 years ago
parent 64e14d1bc3
commit abb955bc2a

@ -25,7 +25,7 @@
// TQt includes
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqregexp.h>
#include <tqstring.h>
#include <ktextedit.h>

@ -33,9 +33,9 @@
#include <kpushbutton.h>
// TQt includes
#include <clipboard.h>
#include <tqclipboard.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
#include <tqpicture.h>
@ -208,7 +208,7 @@ void BarCodeDialog::copy()
DocumentItemDrag* drag = new DocumentItemDrag();
drag->setDocumentItem( &list );
kapp->clipboard()->setData( drag, TQClipboard::Clipboard );
kapp->tqclipboard()->setData( drag, TQClipboard::Clipboard );
}
#include "barcodedialog.moc"

@ -25,7 +25,7 @@
#include <tqcheckbox.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqmap.h>
#include <tqradiobutton.h>
#include <tqtooltip.h>
@ -103,14 +103,14 @@ void AdvancedBarcodeDialog::getData( Barkode* b )
TBarcodeDlg::TBarcodeDlg(TQWidget *parent, const char *name )
: TQWidget( parent, name )
{
TQVBoxLayout* layout = new TQVBoxLayout( this, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
TQGroupBox* gb = new TQGroupBox( i18n("TBarcode"), this );
gb->setColumnLayout(0, Qt::Vertical );
gb->layout()->setSpacing( 6 );
gb->layout()->setMargin( 11 );
gb->tqlayout()->setSpacing( 6 );
gb->tqlayout()->setMargin( 11 );
gb->setEnabled( Barkode::haveTBarcode() || Barkode::haveTBarcode2() );
TQVBoxLayout* gbLayout = new TQVBoxLayout( gb->layout() );
TQVBoxLayout* gbLayout = new TQVBoxLayout( gb->tqlayout() );
spinModule = new KDoubleNumInput( gb );
spinModule->setLabel( i18n("Module width (mm):"), AlignLeft | AlignVCenter );
@ -144,7 +144,7 @@ TBarcodeDlg::TBarcodeDlg(TQWidget *parent, const char *name )
"tbarcode documentation for details. Normaly you do not want to change "
"this value.</qt>") );
layout->addWidget( gb );
tqlayout->addWidget( gb );
}
void TBarcodeDlg::setData( Barkode* b )
@ -253,14 +253,14 @@ void TBarcodeDlg::getData( Barkode* b ) const
PDF417BarcodeDlg::PDF417BarcodeDlg(TQWidget *parent, const char *name )
: TQWidget( parent, name )
{
TQVBoxLayout* layout = new TQVBoxLayout( this, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
TQGroupBox* gpdf = new TQGroupBox( i18n("PDF417"), this );
gpdf->setColumnLayout(0, Qt::Vertical );
gpdf->layout()->setSpacing( 6 );
gpdf->layout()->setMargin( 11 );
gpdf->tqlayout()->setSpacing( 6 );
gpdf->tqlayout()->setMargin( 11 );
gpdf->setEnabled( Barkode::haveTBarcode() || Barkode::havePDFBarcode() );
TQVBoxLayout* gpdfLayout = new TQVBoxLayout( gpdf->layout() );
TQVBoxLayout* gpdfLayout = new TQVBoxLayout( gpdf->tqlayout() );
spinRow = new KIntNumInput( gpdf );
spinRow->setLabel( i18n("Rows:"), AlignLeft | AlignVCenter );
@ -277,7 +277,7 @@ PDF417BarcodeDlg::PDF417BarcodeDlg(TQWidget *parent, const char *name )
gpdfLayout->addWidget( spinRow );
gpdfLayout->addWidget( spinCol );
gpdfLayout->addWidget( spinErr );
layout->addWidget( gpdf );
tqlayout->addWidget( gpdf );
}
void PDF417BarcodeDlg::setData( Barkode* b )
@ -365,9 +365,9 @@ SequenceDlg::SequenceDlg( TQWidget *parent, const char *name )
TQButtonGroup* group = new TQButtonGroup( i18n("Sequence"), this );
group->setColumnLayout(0, Qt::Vertical );
group->layout()->setSpacing( 6 );
group->layout()->setMargin( 11 );
TQVBoxLayout* layout = new TQVBoxLayout( group->layout() );
group->tqlayout()->setSpacing( 6 );
group->tqlayout()->setMargin( 11 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( group->tqlayout() );
checkSequence = new TQCheckBox( i18n("&Enable sequence"), group );
@ -383,12 +383,12 @@ SequenceDlg::SequenceDlg( TQWidget *parent, const char *name )
spinStart->setLabel( i18n("Start:"), AlignLeft | AlignVCenter );
spinStart->setRange( -100000, 100000, 1, false );
layout->addWidget( checkSequence );
layout->addWidget( radioNumbers );
layout->addWidget( radioAlpha );
layout->addWidget( radioAlphaNum );
layout->addWidget( spinStep );
layout->addWidget( spinStart );
tqlayout->addWidget( checkSequence );
tqlayout->addWidget( radioNumbers );
tqlayout->addWidget( radioAlpha );
tqlayout->addWidget( radioAlphaNum );
tqlayout->addWidget( spinStep );
tqlayout->addWidget( spinStart );
main->addWidget( group );
@ -443,10 +443,10 @@ ColorDlg::ColorDlg(TQWidget *parent, const char *name)
{
TQGroupBox* gb = new TQGroupBox( i18n("Colors"), this );
gb->setColumnLayout(0, Qt::Vertical );
gb->layout()->setSpacing( 6 );
gb->layout()->setMargin( 11 );
gb->tqlayout()->setSpacing( 6 );
gb->tqlayout()->setMargin( 11 );
gb->setEnabled( Barkode::havePurePostscriptBarcode() );
TQGridLayout* gbLayout = new TQGridLayout( gb->layout() );
TQGridLayout* gbLayout = new TQGridLayout( gb->tqlayout() );
buttonBarColor = new KColorButton( gb );
buttonBackColor = new KColorButton( gb );

@ -213,13 +213,13 @@ void BarcodeItem::drawIpl( TQTextStream* stream, IPLUtils* utils )
}
int counter = utils->counter();
TQString s = TQString("B%1;").arg( counter ); // field number
TQString s = TQString("B%1;").tqarg( counter ); // field number
s += utils->fieldOrigin( rect().x(), rect().y() );
s += TQString("c%1;").arg( encoding ); // encoding type
s += TQString("h%1;").arg( rect().height() ); // height of barcode
s += TQString("w%1;").arg( 3 ); // width of barcode (per line)
s += TQString("d0,%1;").arg( value().length() ); // max length of data
s += TQString("c%1;").tqarg( encoding ); // encoding type
s += TQString("h%1;").tqarg( rect().height() ); // height of barcode
s += TQString("w%1;").tqarg( 3 ); // width of barcode (per line)
s += TQString("d0,%1;").tqarg( value().length() ); // max length of data
*stream << utils->field( s );
utils->addValue( value() );
@ -235,11 +235,11 @@ void BarcodeItem::drawEPcl( TQTextStream* stream )
}
// Coordinates cannot start at zero
TQString s = TQString("B %1").arg( rect().x()+1 );
s += TQString(" %1 0").arg( rect().y() + rect().height() );
s += TQString(" %1 1 4").arg( encoding );
s += TQString(" %1 1").arg( rect().height() );
s += TQString(" %1").arg( value() );
TQString s = TQString("B %1").tqarg( rect().x()+1 );
s += TQString(" %1 0").tqarg( rect().y() + rect().height() );
s += TQString(" %1 1 4").tqarg( encoding );
s += TQString(" %1 1").tqarg( rect().height() );
s += TQString(" %1").tqarg( value() );
*stream << EPCLUtils::field( s );
}

@ -24,14 +24,14 @@
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqvbuttongroup.h>
BarcodePrinterDlg::BarcodePrinterDlg(TQWidget *parent, const char *name)
: KDialogBase( KDialogBase::Plain, i18n("Barcode Printer"),
KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, parent,name)
{
TQGridLayout* layout = new TQGridLayout( plainPage(), 6, 6 );
TQGridLayout* tqlayout = new TQGridLayout( plainPage(), 6, 6 );
TQLabel* label = new TQLabel( i18n("&Output Format:"), plainPage() );
comboFormat = new KComboBox( false, plainPage() );
@ -47,13 +47,13 @@ BarcodePrinterDlg::BarcodePrinterDlg(TQWidget *parent, const char *name)
comboDevice = new KComboBox( true, plainPage() );
label3->setBuddy( comboDevice );
layout->addWidget( label, 0, 0 );
layout->addMultiCellWidget( comboFormat, 0, 0, 1, 2 );
layout->addMultiCellWidget( checkFile, 1, 1, 1, 2 );
layout->addWidget( label2, 2, 0 );
layout->addWidget( requester, 2, 1 );
layout->addWidget( label3, 3, 0 );
layout->addMultiCellWidget( comboDevice, 3, 3, 1, 2 );
tqlayout->addWidget( label, 0, 0 );
tqlayout->addMultiCellWidget( comboFormat, 0, 0, 1, 2 );
tqlayout->addMultiCellWidget( checkFile, 1, 1, 1, 2 );
tqlayout->addWidget( label2, 2, 0 );
tqlayout->addWidget( requester, 2, 1 );
tqlayout->addWidget( label3, 3, 0 );
tqlayout->addMultiCellWidget( comboDevice, 3, 3, 1, 2 );
comboFormat->insertItem( i18n("TEC Printer (TEC)") );
comboFormat->insertItem( i18n("Zebra Printer (ZPL)") );

@ -300,7 +300,7 @@ void BatchPrinter::startImages()
else
name += m_image_custom_filename;
TQString filename = name + TQString("_%1.").arg( i ) + KImageIO::suffix( m_image_format );
TQString filename = name + TQString("_%1.").tqarg( i ) + KImageIO::suffix( m_image_format );
unsigned int c = 0;
while( TQFile::exists( filename ) ) {
@ -334,7 +334,7 @@ void BatchPrinter::startBCP()
TQFile file( m_path );
if( !file.open( IO_WriteOnly ) ) // | IO_Raw ) )
{
KMessageBox::error( parent, TQString( i18n("<qt>Can't open the file or device <b>%1</b></qt>.") ).arg( m_path ) );
KMessageBox::error( parent, TQString( i18n("<qt>Can't open the file or device <b>%1</b></qt>.") ).tqarg( m_path ) );
return;
}

@ -31,12 +31,12 @@
#include <tqbuffer.h>
#include <tqcheckbox.h>
#include <clipboard.h>
#include <tqclipboard.h>
#include <tqcursor.h>
#include <tqdom.h>
#include <tqheader.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqradiobutton.h>
#include <tqsqlselectcursor.h>
#include <tqtooltip.h>
@ -394,7 +394,7 @@ void BatchWizard::setupStackPage4()
TQFrame* buttons = new TQFrame( stack4 );
buttons->setMargin( 10 );
TQVBoxLayout* layout = new TQVBoxLayout( buttons );
TQVBoxLayout* tqlayout = new TQVBoxLayout( buttons );
TQSpacerItem* spacer1 = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );
TQSpacerItem* spacer2 = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );
@ -413,12 +413,12 @@ void BatchWizard::setupStackPage4()
TQToolTip::add( buttonRemoveAddress, i18n("Remove selected contacts from the list of contacts which will be printed.") );
TQToolTip::add( buttonRemoveAllAddress, i18n("Remove all contacts from the list of contacts which will be printed.") );
layout->addItem( spacer1 );
layout->addWidget( buttonAddAllAddress );
layout->addWidget( buttonAddAddress );
layout->addWidget( buttonRemoveAddress );
layout->addWidget( buttonRemoveAllAddress );
layout->addItem( spacer2 );
tqlayout->addItem( spacer1 );
tqlayout->addWidget( buttonAddAllAddress );
tqlayout->addWidget( buttonAddAddress );
tqlayout->addWidget( buttonRemoveAddress );
tqlayout->addWidget( buttonRemoveAllAddress );
tqlayout->addItem( spacer2 );
mainLayout->addWidget( list1 );
mainLayout->addWidget( buttons );
@ -558,7 +558,7 @@ void BatchWizard::printNow( const TQString & printer, bool bUserInteraction )
// let's check if the label file does even exist!
if( !TQFile::exists( m_url->url() ) )
{
KMessageBox::error( this, TQString( i18n("The label file %1 was not found") ).arg( m_url->url()) );
KMessageBox::error( this, TQString( i18n("The label file %1 was not found") ).tqarg( m_url->url()) );
return;
}
@ -747,7 +747,7 @@ bool BatchWizard::addItem( const TQString & article, const TQString & group, int
TQString temp;
temp.sprintf("%0*i", 5, sqlList->childCount() + 1 );
KListViewItem* item = new KListViewItem( sqlList, temp, TQString( "%1" ).arg( count ),
KListViewItem* item = new KListViewItem( sqlList, temp, TQString( "%1" ).tqarg( count ),
article, group );
sqlList->insertItem( item );
@ -873,7 +873,7 @@ void BatchWizard::loadFromFile()
void BatchWizard::loadFromClipboard()
{
TQClipboard *cb = KApplication::clipboard();
TQClipboard *cb = KApplication::tqclipboard();
loadData( cb->text() );
}
@ -1076,7 +1076,7 @@ bool BatchWizard::fillVarTable()
file.setCSVFile(true);
if( !file.isValid() )
{
KMessageBox::error( this, TQString( i18n("Can't open file: %1") ).arg( importCsvFile->url() ) );
KMessageBox::error( this, TQString( i18n("Can't open file: %1") ).tqarg( importCsvFile->url() ) );
return false;
}

@ -23,7 +23,7 @@
#include <tqbuttongroup.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpaintdevicemetrics.h>
#include <tqradiobutton.h>
#include <tqsqldatabase.h>
@ -64,13 +64,13 @@ ConfigDialog::~ConfigDialog()
void ConfigDialog::setupTab1( )
{
TQFrame* box = addPage( i18n("SQL Settings"), "", BarIcon("connect_no") );
TQVBoxLayout* layout = new TQVBoxLayout( box, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( box, 6, 6 );
TQSpacerItem* spacer = new TQSpacerItem( 0, 0, TQSizePolicy::Expanding, TQSizePolicy::Expanding );
sqlwidget = new SqlWidget( false, box, "sqlwidget" );
layout->addWidget( sqlwidget );
layout->addItem( spacer );
tqlayout->addWidget( sqlwidget );
tqlayout->addItem( spacer );
}
void ConfigDialog::setupTab2()
@ -218,9 +218,9 @@ void ConfigDialog::setupTab5()
TQButtonGroup* bg = new TQButtonGroup( i18n("On New Article"), box );
bg->setColumnLayout(0, Qt::Vertical );
bg->layout()->setSpacing( 6 );
bg->layout()->setMargin( 11 );
TQGridLayout* bgLayout = new TQGridLayout( bg->layout() );
bg->tqlayout()->setSpacing( 6 );
bg->tqlayout()->setMargin( 11 );
TQGridLayout* bgLayout = new TQGridLayout( bg->tqlayout() );
TQStringList alist, glist;
alist.append( i18n("No Line Break") );
@ -259,9 +259,9 @@ void ConfigDialog::setupTab5()
TQButtonGroup* bg2 = new TQButtonGroup( i18n("On New Group"), box );
bg2->setColumnLayout(0, Qt::Vertical );
bg2->layout()->setSpacing( 6 );
bg2->layout()->setMargin( 11 );
TQGridLayout* bg2Layout = new TQGridLayout( bg2->layout() );
bg2->tqlayout()->setSpacing( 6 );
bg2->tqlayout()->setMargin( 11 );
TQGridLayout* bg2Layout = new TQGridLayout( bg2->tqlayout() );
onNewGroup1 = new KComboBox( false, bg2 );
onNewGroup2 = new KComboBox( false, bg2 );
@ -345,7 +345,7 @@ void ConfigDialog::accept()
void ConfigDialog::updateDatePreview()
{
labelDate->setText( i18n("Preview: ") + TQDateTime::currentDateTime().toString( date->text() ) );
labelDate->setText( i18n("Preview: ") + TQDateTime::tqcurrentDateTime().toString( date->text() ) );
}
#include "configdialog.moc"

@ -24,11 +24,11 @@
#include <tqbuttongroup.h>
#include <tqcheckbox.h>
#include <tqcursor.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqsqldatabase.h>
#include <tqradiobutton.h>
#include <tqprinter.h>
#include <textbrowser.h>
#include <tqtextbrowser.h>
// KDE includes
#include <kapplication.h>
@ -151,7 +151,7 @@ void ConfWizard::setupPage3()
TextLabel1_2 = new TQLabel( page_3, "TextLabel1_2" );
TextLabel1_2->setText( i18n( "KBarcode can create the required SQL tables for you.<br>KBarcode will add also some Label Definitions to the tables.<br>After that you can fill the tables with some example data." ) );
TextLabel1_2->setAlignment( int( TQLabel::WordBreak | TQLabel::AlignVCenter ) );
TextLabel1_2->tqsetAlignment( int( TQLabel::WordBreak | TQLabel::AlignVCenter ) );
pageLayout_3->addWidget( TextLabel1_2 );
Layout5_2 = new TQVBoxLayout( 0, 0, 6, "Layout5_2");

@ -20,7 +20,7 @@
#include "printersettings.h"
#include <tqbuffer.h>
#include <textcodec.h>
#include <tqtextcodec.h>
CSVFile::CSVFile( const TQString & filename )
{
@ -55,18 +55,18 @@ CSVFile::CSVFile( TQBuffer & buf )
CSVFile::~CSVFile()
{
if( m_stream.device() && m_stream.device()->isOpen() )
m_stream.device()->close();
if( m_stream.tqdevice() && m_stream.tqdevice()->isOpen() )
m_stream.tqdevice()->close();
}
TQStringList CSVFile::readNextLine()
{
TQString line;
if( !m_stream.device() )
if( !m_stream.tqdevice() )
return TQStringList();
if( !m_stream.device()->isOpen() )
if( !m_stream.tqdevice()->isOpen() )
return TQStringList();
// walk through the lines until a line containing valid data

@ -20,7 +20,7 @@
#include <tqfile.h>
#include <tqstringlist.h>
#include <textstream.h>
#include <tqtextstream.h>
class TQBuffer;
@ -106,10 +106,10 @@ class CSVFile {
bool CSVFile::isValid() const
{
if( !m_stream.device() )
if( !m_stream.tqdevice() )
return false;
return m_stream.device()->isOpen();
return m_stream.tqdevice()->isOpen();
}
bool CSVFile::isEof() const

@ -29,13 +29,13 @@
#include <tqhbuttongroup.h>
#include <tqheader.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqlistbox.h>
#include <tqprogressdialog.h>
#include <tqsqlquery.h>
#include <tqtable.h>
#include <tqradiobutton.h>
#include <textstream.h>
#include <tqtextstream.h>
#include <tqvbox.h>
// KDE includes
@ -91,7 +91,7 @@ CSVImportDlg::~CSVImportDlg()
void CSVImportDlg::createPage1()
{
TQFrame* box = addPage( i18n("&Import Data") );
TQVBoxLayout* layout = new TQVBoxLayout( box, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( box, 6, 6 );
TQGridLayout* grid = new TQGridLayout( 2 );
requester = new KURLRequester( box );
@ -114,7 +114,7 @@ void CSVImportDlg::createPage1()
table->setReadOnly( true );
frame = new TQFrame( box );
TQHBoxLayout* layout2 = new TQHBoxLayout( frame, 6, 6 );
TQHBoxLayout* tqlayout2 = new TQHBoxLayout( frame, 6, 6 );
spinCol = new KIntNumInput( frame );
spinCol->setLabel( i18n("Column:"), AlignLeft | AlignVCenter );
@ -123,10 +123,10 @@ void CSVImportDlg::createPage1()
comboField = new KComboBox( false, frame );
buttonSet = new KPushButton( i18n("Set"), frame );
layout2->addWidget( spinCol );
layout2->addWidget( new TQLabel( i18n("Database field to use for this column:"), frame ) );
layout2->addWidget( comboField );
layout2->addWidget( buttonSet );
tqlayout2->addWidget( spinCol );
tqlayout2->addWidget( new TQLabel( i18n("Database field to use for this column:"), frame ) );
tqlayout2->addWidget( comboField );
tqlayout2->addWidget( buttonSet );
grid->addWidget( new TQLabel( i18n("File to import:"), box ), 0, 0 );
grid->addWidget( requester, 0, 1 );
@ -139,17 +139,17 @@ void CSVImportDlg::createPage1()
grid->addWidget( checkLoadAll, 4, 0 );
grid->addWidget( spinLoadOnly, 4, 1 );
layout->addLayout( grid );
layout->addWidget( table );
layout->setStretchFactor( table, 2 );
layout->addWidget( frame );
tqlayout->addLayout( grid );
tqlayout->addWidget( table );
tqlayout->setStretchFactor( table, 2 );
tqlayout->addWidget( frame );
}
void CSVImportDlg::createPage2()
{
labelprinterdata* lb = PrinterSettings::getInstance()->getData();
TQFrame* mainBox = addPage( i18n("&Import Settings") );
TQVBoxLayout* layout = new TQVBoxLayout( mainBox, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( mainBox, 6, 6 );
TQSpacerItem* spacer1 = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
TQSpacerItem* spacer2 = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
@ -163,10 +163,10 @@ void CSVImportDlg::createPage2()
groupFixed = new TQGroupBox( i18n("Fixed Field Width File"), hboxFrame );
groupCSV->setColumnLayout(0, Qt::Vertical );
groupCSV->layout()->setSpacing( 6 );
groupCSV->layout()->setMargin( 11 );
groupCSV->tqlayout()->setSpacing( 6 );
groupCSV->tqlayout()->setMargin( 11 );
TQVBoxLayout* vbox = new TQVBoxLayout( groupCSV->layout() );
TQVBoxLayout* vbox = new TQVBoxLayout( groupCSV->tqlayout() );
TQGridLayout* grid = new TQGridLayout( 2, 2 );
grid->setSpacing( 6 );
grid->setMargin( 11 );
@ -196,10 +196,10 @@ void CSVImportDlg::createPage2()
vbox->addItem( spacer1 );
groupFixed->setColumnLayout(0, Qt::Horizontal );
groupFixed->layout()->setSpacing( 6 );
groupFixed->layout()->setMargin( 11 );
TQHBoxLayout* groupFixedLayout = new TQHBoxLayout( groupFixed->layout() );
groupFixedLayout->setAlignment( TQt::AlignTop );
groupFixed->tqlayout()->setSpacing( 6 );
groupFixed->tqlayout()->setMargin( 11 );
TQHBoxLayout* groupFixedLayout = new TQHBoxLayout( groupFixed->tqlayout() );
groupFixedLayout->tqsetAlignment( TQt::AlignTop );
listWidth = new KListBox( groupFixed );
@ -214,17 +214,17 @@ void CSVImportDlg::createPage2()
spinNumber->setValue( 1 );
spinNumber->setFocus();
TQVBoxLayout* layout2 = new TQVBoxLayout( 0, 6, 6 );
layout2->addWidget( buttonAdd );
layout2->addWidget( buttonRemove );
layout2->addWidget( spinNumber );
layout2->addItem( spacer2 );
TQVBoxLayout* tqlayout2 = new TQVBoxLayout( 0, 6, 6 );
tqlayout2->addWidget( buttonAdd );
tqlayout2->addWidget( buttonRemove );
tqlayout2->addWidget( spinNumber );
tqlayout2->addItem( spacer2 );
groupFixedLayout->addWidget( listWidth );
groupFixedLayout->addLayout( layout2 );
groupFixedLayout->addLayout( tqlayout2 );
layout->addWidget( buttonGroup );
layout->addWidget( hboxFrame );
tqlayout->addWidget( buttonGroup );
tqlayout->addWidget( hboxFrame );
radioCSVFile->setChecked( true );
}
@ -386,7 +386,7 @@ void CSVImportDlg::accept()
void CSVImportDlg::addWidth()
{
listWidth->insertItem( TQString("%1").arg(spinNumber->value()), -1 );
listWidth->insertItem( TQString("%1").tqarg(spinNumber->value()), -1 );
settingsChanged();
}

@ -22,7 +22,7 @@
#include "csvimportdlg.h"
// TQt includes
#include <clipboard.h>
#include <tqclipboard.h>
// KDE includes
#include <kaction.h>

@ -19,7 +19,7 @@
#include "sqltables.h"
// TQt includes
#include <textstream.h>
#include <tqtextstream.h>
#include <tqsqlquery.h>
#include <tqregexp.h>
@ -136,7 +136,7 @@ Definition::Definition( TQWidget* parent )
Definition::Definition( int label_def_id, TQWidget* parent )
: m_parent( parent )
{
init( TQString("%1").arg( label_def_id ) );
init( TQString("%1").tqarg( label_def_id ) );
}
Definition::Definition( const TQString & label_def_id, TQWidget* parent )
@ -224,7 +224,7 @@ void Definition::setId( const TQString & label_def_id )
void Definition::setId( int label_def_id )
{
init( TQString("%1").arg( label_def_id ) );
init( TQString("%1").tqarg( label_def_id ) );
}
void Definition::init( const TQString & label_def_id )

@ -24,7 +24,7 @@
#include <kpushbutton.h>
#include <krestrictedline.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
// KDE includes
@ -80,7 +80,7 @@ DefinitionDialog::DefinitionDialog( TQWidget* parent, const char* name, bool mo
{
resize( 465, 345 );
setCaption( i18n( "Add Label Definition" ) );
TQHBoxLayout* layout = new TQHBoxLayout( this, 6, 6 );
TQHBoxLayout* tqlayout = new TQHBoxLayout( this, 6, 6 );
DefinitionDialogLayout = new TQVBoxLayout( 0, 11, 6, "DefinitionDialogLayout");
Layout17 = new TQHBoxLayout( 0, 0, 6, "Layout17");
@ -96,11 +96,11 @@ DefinitionDialog::DefinitionDialog( TQWidget* parent, const char* name, bool mo
Layout13->addWidget( TextLabel2 );
TextLabel3 = new TQLabel( this, "TextLabel3" );
TextLabel3->setText( TQString( i18n( "Width (in %1):" ) ).arg( Measurements::system() ) );
TextLabel3->setText( TQString( i18n( "Width (in %1):" ) ).tqarg( Measurements::system() ) );
Layout13->addWidget( TextLabel3 );
TextLabel4 = new TQLabel( this, "TextLabel4" );
TextLabel4->setText( TQString( i18n( "Height (in %1):" ) ).arg( Measurements::system() ) );
TextLabel4->setText( TQString( i18n( "Height (in %1):" ) ).tqarg( Measurements::system() ) );
Layout13->addWidget( TextLabel4 );
TextLabel5 = new TQLabel( this, "TextLabel5" );
@ -202,8 +202,8 @@ DefinitionDialog::DefinitionDialog( TQWidget* parent, const char* name, bool mo
DefinitionDialogLayout->addLayout( Layout16 );
preview = new LabelPreview( this );
layout->addLayout( DefinitionDialogLayout );
layout->addWidget( preview );
tqlayout->addLayout( DefinitionDialogLayout );
tqlayout->addWidget( preview );
l = new TQLabel( this );
setExtension( l );
@ -335,7 +335,7 @@ void DefinitionDialog::updatePreview()
preview->setRect( TQRect( (int)m.gapLeftMM(), (int)m.gapTopMM(), (int)m.widthMM(), (int)m.heightMM() ) );
preview->setMeasurements( m );
preview->repaint();
preview->tqrepaint();
}
void DefinitionDialog::drawGraphic()

@ -22,7 +22,7 @@
#include <tqobject.h>
#include <tqsortedlist.h>
#include <tqstring.h>
#include <textstream.h>
#include <tqtextstream.h>
#include <tqcolor.h>
#include <tqpen.h>

@ -25,7 +25,7 @@
// TQt includes
#include <tqcheckbox.h>
#include <textbrowser.h>
#include <tqtextbrowser.h>
#include <tqsqldatabase.h>
// KDE includes

@ -74,11 +74,11 @@ DSRichText::~DSRichText()
{
}
void DSRichText::initFormat( formated_word* f, int alignment )
void DSRichText::initFormat( formated_word* f, int tqalignment )
{
f->text = TQString();
f->line = false;
f->alignment = alignment;
f->tqalignment = tqalignment;
f->font = m_base;
f->color = m_color;
}
@ -147,7 +147,7 @@ void DSRichText::draw( TQPainter* p )
for( unsigned int i = 0; i < lines.count(); i++ ) {
formated_line l = lines[i];
if( l.formats.count() && l.formats[0].alignment == TQt::AlignJustify && i != lines.count() - 1 ) {
if( l.formats.count() && l.formats[0].tqalignment == TQt::AlignJustify && i != lines.count() - 1 ) {
// last line in a paragraph is not justified (in blocksatz mode)!
drawJustified( &l );
} else {
@ -157,7 +157,7 @@ void DSRichText::draw( TQPainter* p )
painter->setFont( f.font );
painter->setPen( TQPen( f.color ) );
int a = f.alignment;
int a = f.tqalignment;
if( a == TQt::AlignRight ) {
a = TQt::AlignLeft;
if( !x )
@ -208,7 +208,7 @@ void DSRichText::drawJustified( formated_line* line )
bool DSRichText::parseParagraph()
{
int alignment = 0;
int tqalignment = 0;
formated_word f;
TQString d = parse( text, "<p", "</p>", pos );
//qDebug("D=" + d );
@ -218,11 +218,11 @@ bool DSRichText::parseParagraph()
if( d.isNull() )
return false;
d = parseParagraphTag( d, &alignment );
d = parseParagraphTag( d, &tqalignment );
WordList words;
TQString data;
initFormat( &f, alignment );
initFormat( &f, tqalignment );
if( d.isEmpty() ) {
// found empty paragraph
@ -237,7 +237,7 @@ bool DSRichText::parseParagraph()
data.append( d[i] );
parseWords( data, &f, &words );
initFormat( &f, alignment );
initFormat( &f, tqalignment );
data = TQString();
// bail out now, otherwise there is
@ -250,7 +250,7 @@ bool DSRichText::parseParagraph()
i += span.length();
if( span.startsWith( "<span " ) ) {
initFormat( &f, alignment );
initFormat( &f, tqalignment );
f.font = parseStyle( parse( span, "style=\"", "\"", 0 ), &f.color );
}
}
@ -403,13 +403,13 @@ TQString DSRichText::replaceEscapeSequences( const TQString & t )
return tmp;
}
TQString DSRichText::parseParagraphTag( const TQString &t, int* alignment )
TQString DSRichText::parseParagraphTag( const TQString &t, int* tqalignment )
{
TQString d = TQString( t );
if( d.startsWith("<p>") ) {
d = d.mid( 3, d.length() - 3 );
} else if( d.startsWith("<p ") ) {
*alignment = parseAlignment( parse( d, "align=\"", "\"", 0 ) );
*tqalignment = parseAlignment( parse( d, "align=\"", "\"", 0 ) );
if( d.contains( ">" ) ) {
int x = d.find(">" ) + 1;
d = d.mid( x, d.length() - x );

@ -31,13 +31,13 @@ class DSRichText;
/** This class represents one word,
* formated with a font, a color and an
* alignment.
* tqalignment.
*/
struct formated_word {
TQString text;
TQFont font;
TQColor color;
int alignment;
int tqalignment;
bool line;
};
@ -138,10 +138,10 @@ class DSRichText {
bool parseParagraph();
/** remove <p> and </p> from the TQString @p t and return it.
* This function is also responsible for getting the
* correct alignment of the paragraph.
* correct tqalignment of the paragraph.
*/
TQString parseParagraphTag( const TQString & t, int* alignment );
/** parse the align attribute of a <p> tag and return the corresponding TQt alignment value.
TQString parseParagraphTag( const TQString & t, int* tqalignment );
/** parse the align attribute of a <p> tag and return the corresponding TQt tqalignment value.
*/
int parseAlignment( const TQString & align );
/** parse the css style attribute of a <span> tag and return a matching TQFont for these
@ -150,7 +150,7 @@ class DSRichText {
TQFont parseStyle( const TQString & s, TQColor* color );
TQString parse( const TQString & t, const TQString & find, const TQString & end, int start );
void parseWords( const TQString & t, formated_word* w, WordList* words );
void initFormat( formated_word* f, int alignment );
void initFormat( formated_word* f, int tqalignment );
void initLine( TQValueList<formated_line>* l );
void updateSpacing( TQValueList<formated_line>* l, TQFontMetrics* fm );
/** draw the line @p line justified as blockquote

@ -30,7 +30,7 @@ void DSTextEdit::fixParagraphs()
struct {
TQFont font;
TQColor color;
int alignment;
int tqalignment;
} tFormattings;
TQString t;
@ -57,7 +57,7 @@ void DSTextEdit::fixParagraphs()
t = this->text();
tFormattings.font = this->currentFont();
tFormattings.color = this->color();
tFormattings.alignment = this->alignment();
tFormattings.tqalignment = this->tqalignment();
while( pos != -1 )
{
@ -101,7 +101,7 @@ void DSTextEdit::fixParagraphs()
this->setCursorPosition( 0, index );
this->setCurrentFont( tFormattings.font );
this->setColor( tFormattings.color );
this->setAlignment( tFormattings.alignment );
this->tqsetAlignment( tFormattings.tqalignment );
this->setSelection( paraFrom, indexFrom, paraTo, indexTo );

@ -20,7 +20,7 @@
#include <kcharsets.h>
#include <kglobal.h>
#include <klocale.h>
#include <textcodec.h>
#include <tqtextcodec.h>
EncodingCombo::EncodingCombo( TQWidget* parent )
: KComboBox( parent )

@ -102,7 +102,7 @@ void ImageItem::drawEPcl( TQTextStream* stream )
for( int buf=0; buf < 3; buf++ ){
*stream << TQString("GS %1 32 %1 %1 %1 %1 ")
.arg(buf).arg(rect().x()).arg(rect().y()).arg(width).arg(height);
.tqarg(buf).tqarg(rect().x()).tqarg(rect().y()).tqarg(width).tqarg(height);
for( int i=width-1; i >= 0; i-- ){
for( int j=0; j < height; j++ ){

@ -19,7 +19,7 @@
#include <tqimage.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqmenubar.h>
#include <tqmenudata.h>
#include <tqpixmap.h>
@ -67,14 +67,14 @@ public:
}
void paintCell( TQPainter *p, const TQColorGroup &cg,
int column, int width, int alignment )
int column, int width, int tqalignment )
{
TQColorGroup _cg( cg );
TQColor c = _cg.text();
if( m_action && !m_action->isEnabled() )
_cg.setColor( TQColorGroup::Text, TQt::gray );
KListViewItem::paintCell( p, _cg, column, width, alignment );
KListViewItem::paintCell( p, _cg, column, width, tqalignment );
_cg.setColor( TQColorGroup::Text, c );
}
@ -106,7 +106,7 @@ void KActionMapDlg::updateEnabledState()
KActionMap::KActionMap( KActionCollection* actions, TQWidget* parent, const char* name )
: TQWidget( parent, name ), m_actions( actions ), m_showMenuTree( true ), m_grayOutItems( false )
{
TQVBoxLayout* layout = new TQVBoxLayout( this );
TQVBoxLayout* tqlayout = new TQVBoxLayout( this );
m_listView = new KListView( this );
#if TDE_VERSION >= 0x030500
@ -123,9 +123,9 @@ KActionMap::KActionMap( KActionCollection* actions, TQWidget* parent, const char
m_listView->setAllColumnsShowFocus( true );
#if TDE_VERSION >= 0x030500
layout->addWidget( m_searchLine );
tqlayout->addWidget( m_searchLine );
#endif
layout->addWidget( m_listView );
tqlayout->addWidget( m_listView );
connect( m_listView, TQT_SIGNAL( executed( TQListViewItem* ) ), this, TQT_SLOT( slotExecuteAction( TQListViewItem* ) ) );
connect( actions, TQT_SIGNAL( inserted( KAction* ) ), this, TQT_SLOT( slotActionCollectionChanged() ) );

@ -27,7 +27,7 @@
// TQt includes
#include <tqgroupbox.h>
#include <layout.h>
#include <tqlayout.h>
// KDE includes
#include <kaction.h>
@ -45,7 +45,7 @@ KBarcode::KBarcode( TQWidget *parent, const char *name, WFlags f)
{
TQGroupBox* w = new TQGroupBox( this );
w->setColumnLayout(0, Qt::Vertical );
TQVBoxLayout* layout = new TQVBoxLayout( w->layout() );
TQVBoxLayout* tqlayout = new TQVBoxLayout( w->tqlayout() );
setCentralWidget( w );
buttonSingle = new KPushButton( i18n("Barcode &Generator..."), w );
@ -59,10 +59,10 @@ KBarcode::KBarcode( TQWidget *parent, const char *name, WFlags f)
buttonEditor->setIconSet( BarIconSet( "edit" ) );
buttonBatch->setIconSet( BarIconSet( "fileprint" ) );
layout->addWidget( buttonSingle );
layout->addWidget( buttonEditor );
layout->addWidget( buttonBatch );
layout->addWidget( buttonData );
tqlayout->addWidget( buttonSingle );
tqlayout->addWidget( buttonEditor );
tqlayout->addWidget( buttonBatch );
tqlayout->addWidget( buttonData );
connect( buttonSingle, TQT_SIGNAL( clicked() ), TQT_TQOBJECT(this), TQT_SLOT( startBarcode() ) );
connect( buttonEditor, TQT_SIGNAL( clicked() ), TQT_TQOBJECT(this), TQT_SLOT( startLabelEditor() ) );
@ -176,7 +176,7 @@ bool KBarcode::parseCmdLine()
eFormat = BatchPrinter::POSTSCRIPT;
else
{
KMessageBox::error( this, i18n("%1 is no valid output format for --output. Valid values are POSTSCRIPT, IMAGE and BARCODE.").arg( format ) );
KMessageBox::error( this, i18n("%1 is no valid output format for --output. Valid values are POSTSCRIPT, IMAGE and BARCODE.").tqarg( format ) );
}
if( args->isSet("barcode") )

@ -54,7 +54,7 @@
#include <tqbuffer.h>
#include <tqcanvas.h>
#include <tqcheckbox.h>
#include <clipboard.h>
#include <tqclipboard.h>
#include <tqdockarea.h>
#include <tqdom.h>
#include <tqdragobject.h>
@ -62,7 +62,7 @@
#include <tqimage.h>
#include <tqinputdialog.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqmap.h>
#include <tqmime.h>
#include <tqpainter.h>
@ -71,7 +71,7 @@
#include <tqpoint.h>
#include <tqprogressdialog.h>
#include <tqsqlquery.h>
#include <textbrowser.h>
#include <tqtextbrowser.h>
#include <tqtooltip.h>
#include <tqvalidator.h>
#include <tqxml.h>
@ -382,7 +382,7 @@ bool LabelEditor::openUrl( const TQString & url )
if( !d || d->getId() == -1 )
{
KMessageBox::error( this, TQString( i18n("<qt>The file <b>%1</b> cannot be loaded as the label definition is missing.</qt>") ).arg( filename ) );
KMessageBox::error( this, TQString( i18n("<qt>The file <b>%1</b> cannot be loaded as the label definition is missing.</qt>") ).tqarg( filename ) );
return false;
}
@ -696,15 +696,15 @@ void LabelEditor::changeSize()
// TODO: make sure that all items are redrawn.
// Otherwise barcodes might become invisible when changing the label
c->update();
cv->repaint();
cv->tqrepaint();
delete nl;
}
void LabelEditor::updateInfo()
{
statusBar()->changeItem( i18n("Size: ") + TQString("%1%2 x %3%4").arg(
d->getMeasurements().width() ).arg( Measurements::system()
).arg( d->getMeasurements().height() ).arg( Measurements::system() ), STATUS_ID_SIZE );
statusBar()->changeItem( i18n("Size: ") + TQString("%1%2 x %3%4").tqarg(
d->getMeasurements().width() ).tqarg( Measurements::system()
).tqarg( d->getMeasurements().height() ).tqarg( Measurements::system() ), STATUS_ID_SIZE );
statusBar()->changeItem( i18n("Label Template: ") + d->getProducer() + " - " + d->getType(), STATUS_ID_TEMPLATE );
}
@ -978,12 +978,12 @@ void LabelEditor::copy()
DocumentItemDrag* drag = new DocumentItemDrag();
drag->setDocumentItem( &items );
kapp->clipboard()->setData( drag, TQClipboard::Clipboard );
kapp->tqclipboard()->setData( drag, TQClipboard::Clipboard );
}
void LabelEditor::paste()
{
TQMimeSource* data = TQApplication::clipboard()->data();
TQMimeSource* data = TQApplication::tqclipboard()->data();
if ( DocumentItemDrag::canDecode( data ) )
DocumentItemDrag::decode( data, cv, m_token, history );
}
@ -1005,7 +1005,7 @@ void LabelEditor::startBarcodeGen()
void LabelEditor::startLoadRecentEditor( const KURL& url )
{
if( !TQFile::exists( url.path() ) ) {
KMessageBox::information( this, i18n("The file %1 does not exist.").arg( url.path() ) );
KMessageBox::information( this, i18n("The file %1 does not exist.").tqarg( url.path() ) );
recentAct->removeURL( url );
return;
}

@ -88,7 +88,7 @@ bool DocumentItemDrag::canDecode( TQMimeSource* e )
bool DocumentItemDrag::decode( TQMimeSource* mime, MyCanvasView* cv, TokenProvider* token, KCommandHistory* history )
{
TQByteArray data = mime->encodedData( DocumentItemDrag::mimeType() );
TQByteArray data = mime->tqencodedData( DocumentItemDrag::mimeType() );
TQDomDocument doc( "KBarcodeClipboard" );
if( !doc.setContent( data ) )
return false;

@ -36,7 +36,7 @@
MultiLineEditor::MultiLineEditor( TokenProvider* token, TQWidget *parent, const char *name )
: TQWidget( parent, name ), m_token( token )
{
TQVBoxLayout* layout = new TQVBoxLayout( this, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
// ksc = new KSpellConfig( this );
@ -52,8 +52,8 @@ MultiLineEditor::MultiLineEditor( TokenProvider* token, TQWidget *parent, const
setupActions();
layout->addWidget( area );
layout->addWidget( editor );
tqlayout->addWidget( area );
tqlayout->addWidget( editor );
}
@ -128,10 +128,10 @@ void MultiLineEditor::setupActions()
action_align_justify = new KToggleAction( i18n("&Justify"), "text_block", 0, ac, "format_align_justify" );
connect( action_align_justify, TQT_SIGNAL( toggled(bool) ), TQT_TQOBJECT(this), TQT_SLOT( setAlignJustify(bool) ) );
action_align_left->setExclusiveGroup( "alignment" );
action_align_center->setExclusiveGroup( "alignment" );
action_align_right->setExclusiveGroup( "alignment" );
action_align_justify->setExclusiveGroup( "alignment" );
action_align_left->setExclusiveGroup( "tqalignment" );
action_align_center->setExclusiveGroup( "tqalignment" );
action_align_right->setExclusiveGroup( "tqalignment" );
action_align_justify->setExclusiveGroup( "tqalignment" );
//KAction* action_spell = KStdAction::spelling( this, TQT_SLOT( checkSpelling() ), ac );
@ -193,7 +193,7 @@ void MultiLineEditor::updateCharFmt()
void MultiLineEditor::updateAligment()
{
int align = editor->alignment();
int align = editor->tqalignment();
switch ( align ) {
case AlignRight:
@ -241,25 +241,25 @@ void MultiLineEditor::formatColor()
void MultiLineEditor::setAlignLeft( bool yes )
{
if ( yes )
editor->setAlignment( AlignLeft );
editor->tqsetAlignment( AlignLeft );
}
void MultiLineEditor::setAlignRight( bool yes )
{
if ( yes )
editor->setAlignment( AlignRight );
editor->tqsetAlignment( AlignRight );
}
void MultiLineEditor::setAlignCenter( bool yes )
{
if ( yes )
editor->setAlignment( AlignCenter );
editor->tqsetAlignment( AlignCenter );
}
void MultiLineEditor::setAlignJustify( bool yes )
{
if ( yes )
editor->setAlignment( AlignJustify );
editor->tqsetAlignment( AlignJustify );
}
void MultiLineEditor::insertNewField()

@ -138,7 +138,7 @@ bool BarCode::createPixmap( TQPixmap* target, int resx, int resy )
double sh = (double)s.height()/72 * resy;
KShellProcess proc2;
proc2 << "gs" << TQString("-g%1x%2").arg(int(sw*(double)barcode.scale)).arg(int(sh*(double)barcode.scale))
proc2 << "gs" << TQString("-g%1x%2").tqarg(int(sw*(double)barcode.scale)).tqarg(int(sh*(double)barcode.scale))
<< "-r" + TQString::number( resx*(double)barcode.scale ) + "x" + TQString::number( resy*(double)barcode.scale )
<< "-sDEVICE=pbmraw" << "-sOutputFile=" + input->name() << "-sNOPAUSE"
<< "-q " + output->name() << "-c showpage" << "-c quit";
@ -246,17 +246,17 @@ bool BarCode::createTBarcode( KTempFile* output )
KShellProcess proc;
proc << "tbarcodeclient" << "-f" + output->name();
if( !BarCode::hasFeature( barcode.type, BARCODE2D ) )
proc << TQString( "m%1" ).arg( barcode.tbarcode.modulewidth * 1000 );
proc << TQString( "m%1" ).tqarg( barcode.tbarcode.modulewidth * 1000 );
if( BarCode::hasFeature( barcode.type, DATAMATRIX ) )
proc << TQString( "Ds%1" ).arg( barcode.datamatrix.size );
proc << TQString( "Ds%1" ).tqarg( barcode.datamatrix.size );
if( BarCode::hasFeature( barcode.type, PDF417BARCODE ) )
proc << TQString( "Pr%1 Pc%2 Pe%3" ).arg( barcode.pdf417.row )
.arg( barcode.pdf417.col )
.arg( barcode.pdf417.err );
proc << TQString( "Pr%1 Pc%2 Pe%3" ).tqarg( barcode.pdf417.row )
.tqarg( barcode.pdf417.col )
.tqarg( barcode.pdf417.err );
proc << barcode.type << "tPS" << TQString("c%1").arg( barcode.tbarcode.checksum ) << flag << "d" + KShellProcess::quote( m_value );
proc << barcode.type << "tPS" << TQString("c%1").tqarg( barcode.tbarcode.checksum ) << flag << "d" + KShellProcess::quote( m_value );
proc.start( KProcess::Block, KProcess::NoCommunication );
proc.resume();

@ -150,8 +150,8 @@ void MyCanvasView::contentsMouseMoveEvent(TQMouseEvent* e)
int x = (int)l.pixelToMm( e->x(), TQT_TQPAINTDEVICE(this), LabelUtils::DpiX );
int y = (int)l.pixelToMm( e->y(), TQT_TQPAINTDEVICE(this), LabelUtils::DpiY );
statusbar->changeItem( i18n("Position: ") +
TQString( "%1%2 x %3%4" ).arg( x )
.arg( Measurements::system() ).arg( y ).arg( Measurements::system()), mouseid );
TQString( "%1%2 x %3%4" ).tqarg( x )
.tqarg( Measurements::system() ).tqarg( y ).tqarg( Measurements::system()), mouseid );
}
updateCursor( e->pos() );

@ -23,7 +23,7 @@
#include <tqcheckbox.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqsqlquery.h>
// KDE includes
@ -32,7 +32,7 @@
#include <kpushbutton.h>
#ifndef I2S
#define I2S(x) TQString("%1").arg(x)
#define I2S(x) TQString("%1").tqarg(x)
#endif // I2S
NewLabel::NewLabel( TQWidget* parent, const char* name, bool change, WFlags fl )
@ -55,10 +55,10 @@ NewLabel::NewLabel( TQWidget* parent, const char* name, bool change, WFlags fl
TQGroupBox* group1 = new TQGroupBox( this );
group1->setTitle( i18n( "Label" ) );
group1->setColumnLayout(0, Qt::Vertical );
group1->layout()->setSpacing( 6 );
group1->layout()->setMargin( 11 );
TQGridLayout* group1Layout = new TQGridLayout( group1->layout() );
group1Layout->setAlignment( TQt::AlignTop );
group1->tqlayout()->setSpacing( 6 );
group1->tqlayout()->setMargin( 11 );
TQGridLayout* group1Layout = new TQGridLayout( group1->tqlayout() );
group1Layout->tqsetAlignment( TQt::AlignTop );
TextLabel2 = new TQLabel( group1, "TextLabel2" );
TextLabel2->setText( i18n( "Producer:" ) );
@ -89,10 +89,10 @@ NewLabel::NewLabel( TQWidget* parent, const char* name, bool change, WFlags fl
TextLabel4 = new TQLabel( this, "TextLabel4" );
preview = new LabelPreview( this, "preview" );
TQHBoxLayout* hlayout = new TQHBoxLayout( 0, 6, 6 );
hlayout->addWidget( TextLabel4 );
hlayout->addWidget( preview );
NewLabelLayout->addLayout( hlayout );
TQHBoxLayout* htqlayout = new TQHBoxLayout( 0, 6, 6 );
htqlayout->addWidget( TextLabel4 );
htqlayout->addWidget( preview );
NewLabelLayout->addLayout( htqlayout );
TQSpacerItem* spacer_3 = new TQSpacerItem( 0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
NewLabelLayout->addItem( spacer_3 );
@ -171,12 +171,12 @@ void NewLabel::updateText()
i18n("%3<br>Vertical Gap: ") + I2S(d.getMeasurements().gapV()) +
i18n("%4<br>Top Gap: ") + I2S(d.getMeasurements().gapTop()) +
i18n("%5<br>Left Gap: ") + I2S(d.getMeasurements().gapLeft()) + "%6<br>"
).arg( Measurements::system() )
.arg( Measurements::system() )
.arg( Measurements::system() )
.arg( Measurements::system() )
.arg( Measurements::system() )
.arg( Measurements::system() ) );
).tqarg( Measurements::system() )
.tqarg( Measurements::system() )
.tqarg( Measurements::system() )
.tqarg( Measurements::system() )
.tqarg( Measurements::system() )
.tqarg( Measurements::system() ) );
preview->setRect( TQRect( (int)d.getMeasurements().gapLeftMM(),
(int)d.getMeasurements().gapTopMM(),
@ -184,14 +184,14 @@ void NewLabel::updateText()
(int)d.getMeasurements().heightMM() ) );
preview->setMeasurements( d.getMeasurements() );
preview->setPrvEnabled( true );
preview->repaint();
preview->tqrepaint();
curid = d.getId();
}
else
{
TextLabel4->setText( i18n("No label selected.") );
preview->setPrvEnabled( false );
preview->repaint();
preview->tqrepaint();
}
}

@ -32,7 +32,7 @@
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
#include <tqpixmap.h>
#include <textstream.h>
#include <tqtextstream.h>
/* Margin added by GNU Barcode to the barcodes */
#define BARCODE_MARGIN 10
@ -172,9 +172,9 @@ bool PixmapBarcode::createPixmap( TQPixmap* target, int resx, int resy )
sh = (double)(size.y() + size.height());
}
cmd = TQString("gs -g%1x%2").arg(int(sw*(double)barkode->scaling())).arg(int(sh*(double)barkode->scaling()));
cmd = TQString("gs -g%1x%2").tqarg(int(sw*(double)barkode->scaling())).tqarg(int(sh*(double)barkode->scaling()));
cmd += " -r" + TQString::number( resx*(double)barkode->scaling()) + "x" + TQString::number( resy*(double)barkode->scaling() );
cmd += TQString(" -sDEVICE=%1 -sOutputFile=").arg( bMonocrome ? "pbmraw" : "ppm" );
cmd += TQString(" -sDEVICE=%1 -sOutputFile=").tqarg( bMonocrome ? "pbmraw" : "ppm" );
cmd += input->name();
cmd += " -sNOPAUSE -q - -c showpage quit";
@ -394,24 +394,24 @@ TQString PixmapBarcode::createTBarcodeCmd()
// autocorrection
flag.append( barkode->tbarcodeOptions()->autocorrect() ? " Aon" : " Aoff" );
// barcode height
flag.append( TQString( " h%1" ).arg( barkode->tbarcodeOptions()->height() ) );
flag.append( TQString( " h%1" ).tqarg( barkode->tbarcodeOptions()->height() ) );
// text above
if( barkode->tbarcodeOptions()->above() )
flag.append( " a" );
cmd = "tbarcodeclient ";
if( !Barkode::hasFeature( barkode->type(), BARCODE2D ) )
cmd += TQString( " m%1" ).arg( barkode->tbarcodeOptions()->moduleWidth() * 1000 );
cmd += TQString( " m%1" ).tqarg( barkode->tbarcodeOptions()->moduleWidth() * 1000 );
if( Barkode::hasFeature( barkode->type(), DATAMATRIX ) )
cmd += TQString( " Ds%1" ).arg( barkode->datamatrixSize() );
cmd += TQString( " Ds%1" ).tqarg( barkode->datamatrixSize() );
if( Barkode::hasFeature( barkode->type(), PDF417BARCODE ) )
cmd += TQString( " Pr%1 Pc%2 Pe%3" ).arg( barkode->pdf417Options()->row() )
.arg( barkode->pdf417Options()->col() )
.arg( barkode->pdf417Options()->err() );
cmd += TQString( " Pr%1 Pc%2 Pe%3" ).tqarg( barkode->pdf417Options()->row() )
.tqarg( barkode->pdf417Options()->col() )
.tqarg( barkode->pdf417Options()->err() );
cmd += " " + barkode->type() + TQString(" tPS c%1").arg( barkode->tbarcodeOptions()->checksum() );
cmd += " " + barkode->type() + TQString(" tPS c%1").tqarg( barkode->tbarcodeOptions()->checksum() );
cmd += flag + " d" + KShellProcess::quote( barkode->parsedValue() );
return cmd;

@ -24,7 +24,7 @@
// TQt includes
#include <tqiodevice.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqscrollview.h>
#include <tqsqlcursor.h>

@ -20,7 +20,7 @@
// TQt includes
#include <tqcheckbox.h>
#include <layout.h>
#include <tqlayout.h>
// KDE includes
#include <knuminput.h>

@ -45,7 +45,7 @@
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqradiobutton.h>
#include <tqsqlquery.h>
@ -519,7 +519,7 @@ void PropertyImage::applySettings( DocumentItem* item, KMacroCommand* command )
if( !imgUrl->url().isEmpty() )
{
if( !pix.load( imgUrl->url() ) )
KMessageBox::error( NULL, TQString( i18n("Image format not supported for file: %1") ).arg( imgUrl->url() ) );
KMessageBox::error( NULL, TQString( i18n("Image format not supported for file: %1") ).tqarg( imgUrl->url() ) );
}
else
{

@ -22,7 +22,7 @@
#include <tqdom.h>
#include <tqfile.h>
#include <textstream.h>
#include <tqtextstream.h>
#include <kstandarddirs.h>
#include <ktempfile.h>
@ -190,8 +190,8 @@ void PurePostscriptBarcode::createProgram( TQString & prg )
prg = "%!PS-Adobe-2.0 EPSF-2.0\n%%EndComments\n%%EndProlog\n";
prg += m_program;
prg += TQString("20 20 moveto\n(%1) (%2) %3 barcode\n")
.arg( barkode->parsedValue() )
.arg( opt ).arg( type );
.tqarg( barkode->parsedValue() )
.tqarg( opt ).tqarg( type );
}
TQRect PurePostscriptBarcode::bbox( const char* postscript, long postscript_size )
@ -206,7 +206,7 @@ TQRect PurePostscriptBarcode::bbox( const char* postscript, long postscript_size
psfile.file()->writeBlock( postscript, postscript_size );
psfile.file()->close();
if( !readFromPipe( TQString( gs_bbox ).arg( psfile.file()->name() ).latin1(), &buffer, &len ) || !len )
if( !readFromPipe( TQString( gs_bbox ).tqarg( psfile.file()->name() ).latin1(), &buffer, &len ) || !len )
{
psfile.unlink();
return TQRect( 0, 0, 0, 0 );

@ -81,9 +81,9 @@ void RectItem::drawZpl( TQTextStream* stream )
*stream << ZPLUtils::fieldOrigin( rect().x(), rect().y() );
if( m_circle )
*stream << TQString("~GE%1,%2,%3,B").arg( rect().width() ).arg( rect().height() ).arg( thick );
*stream << TQString("~GE%1,%2,%3,B").tqarg( rect().width() ).tqarg( rect().height() ).tqarg( thick );
else
*stream << TQString("~GB%1,%2,%3,B,0").arg( rect().width() ).arg( rect().height() ).arg( thick );
*stream << TQString("~GB%1,%2,%3,B,0").tqarg( rect().width() ).tqarg( rect().height() ).tqarg( thick );
}
void RectItem::drawIpl( TQTextStream* stream, IPLUtils* utils )
@ -97,12 +97,12 @@ void RectItem::drawIpl( TQTextStream* stream, IPLUtils* utils )
{
int counter = utils->counter();
TQString s = TQString("W%1;").arg( counter ); // field number
TQString s = TQString("W%1;").tqarg( counter ); // field number
s += utils->fieldOrigin( rect().x(), rect().y() );
s += TQString("l%1;").arg( rect().width() ); // box length
s += TQString("h%1;").arg( rect().height() ); // box height
s += TQString("w%1;").arg( thick );
s += TQString("l%1;").tqarg( rect().width() ); // box length
s += TQString("h%1;").tqarg( rect().height() ); // box height
s += TQString("w%1;").tqarg( thick );
*stream << utils->field( s );
}
@ -110,11 +110,11 @@ void RectItem::drawIpl( TQTextStream* stream, IPLUtils* utils )
void RectItem::drawEPcl( TQTextStream* stream )
{
TQString s = TQString("C %1").arg( rect().x()+1 );
s += TQString(" %1").arg( rect().y()+1 );
s += TQString(" %1").arg( rect().width() );
s += TQString(" %1").arg( rect().height() );
s += TQString(" %1 2").arg( pen().width() );
TQString s = TQString("C %1").tqarg( rect().x()+1 );
s += TQString(" %1").tqarg( rect().y()+1 );
s += TQString(" %1").tqarg( rect().width() );
s += TQString(" %1").tqarg( rect().height() );
s += TQString(" %1 2").tqarg( pen().width() );
*stream << EPCLUtils::field( s );
}

@ -20,7 +20,7 @@
// TQt includes
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqpen.h>

@ -20,7 +20,7 @@
// TQt includes
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqsqlcursor.h>
// KDE includes
@ -35,16 +35,16 @@ AddAllDialog::AddAllDialog(TQWidget *parent, const char *name )
: KDialogBase( KDialogBase::Plain, i18n("Add Barcode_basic"),
KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, parent,name)
{
TQVBoxLayout* layout = new TQVBoxLayout( plainPage(), 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( plainPage(), 6, 6 );
group = new KLineEdit( plainPage() );
number = new KIntNumInput( plainPage() );
number->setLabel( i18n( "Number of labels:" ) );
number->setRange( 1, 10000, 1, false );
layout->addWidget( new TQLabel( i18n("Group:"), plainPage() ) );
layout->addWidget( group );
layout->addWidget( number );
tqlayout->addWidget( new TQLabel( i18n("Group:"), plainPage() ) );
tqlayout->addWidget( group );
tqlayout->addWidget( number );
}
TQString AddAllDialog::groupName() const
@ -79,7 +79,7 @@ void AddItemsDialog::init()
plainPage()->setFrameStyle( TQFrame::GroupBoxPanel | TQFrame::Sunken );
plainPage()->setLineWidth( 2 );
TQHBoxLayout* layout = new TQHBoxLayout( plainPage(), 6, 6 );
TQHBoxLayout* tqlayout = new TQHBoxLayout( plainPage(), 6, 6 );
group = new KLineEdit( plainPage() );
article = new KLineEdit( plainPage() );
@ -88,11 +88,11 @@ void AddItemsDialog::init()
number->setLabel( i18n( "Number of labels:" ), KNumInput::AlignLeft | KNumInput::AlignVCenter );
number->setRange( 1, 10000, 1, false );
layout->addWidget( number );
layout->addWidget( new TQLabel( i18n("Article:" ), plainPage() ) );
layout->addWidget( article );
layout->addWidget( new TQLabel( i18n("Group:"), plainPage() ) );
layout->addWidget( group );
tqlayout->addWidget( number );
tqlayout->addWidget( new TQLabel( i18n("Article:" ), plainPage() ) );
tqlayout->addWidget( article );
tqlayout->addWidget( new TQLabel( i18n("Group:"), plainPage() ) );
tqlayout->addWidget( group );
setButtonText( KDialogBase::User1, i18n("&Add") );

@ -23,7 +23,7 @@
#include <tqfile.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqmap.h>
#include <tqprogressdialog.h>
#include <tqsqldatabase.h>
@ -383,7 +383,7 @@ void SqlTables::updateTables()
// check for field0 - field9 (1.4.0)
TQStringList fields;
for( unsigned int i = 0; i < 10; i++ )
fields.append( TQString("field%1").arg( i ) );
fields.append( TQString("field%1").tqarg( i ) );
TQSqlQuery query("SHOW FIELDS FROM " TABLE_BASIC );
while ( query.next() )
@ -511,15 +511,15 @@ const TQString SqlTables::getBarcodeMaxLength( const TQString & name )
SqlWidget::SqlWidget( bool showlabel, TQWidget* parent, const char* name )
: TQWidget( parent, name )
{
TQVBoxLayout* layout = new TQVBoxLayout( this );
TQVBoxLayout* tqlayout = new TQVBoxLayout( this );
TQGroupBox* groupDatabase = new TQGroupBox( this );
groupDatabase->setTitle( i18n( "Database Settings" ) );
groupDatabase->setColumnLayout(0, Qt::Vertical );
groupDatabase->layout()->setSpacing( 6 );
groupDatabase->layout()->setMargin( 11 );
TQVBoxLayout* groupDatabaseLayout = new TQVBoxLayout( groupDatabase->layout() );
groupDatabaseLayout->setAlignment( TQt::AlignTop );
groupDatabase->tqlayout()->setSpacing( 6 );
groupDatabase->tqlayout()->setMargin( 11 );
TQVBoxLayout* groupDatabaseLayout = new TQVBoxLayout( groupDatabase->tqlayout() );
groupDatabaseLayout->tqsetAlignment( TQt::AlignTop );
TQGridLayout* grid = new TQGridLayout( 2, 2 );
@ -576,7 +576,7 @@ SqlWidget::SqlWidget( bool showlabel, TQWidget* parent, const char* name )
if( showlabel )
groupDatabaseLayout->addWidget( new TQLabel( i18n("<b>You have to test your database settings before you can procede.</b>"), groupDatabase ) );
layout->add( groupDatabase );
tqlayout->add( groupDatabase );
connect( buttonTest, TQT_SIGNAL( clicked() ), this, TQT_SLOT( testSettings() ) );

@ -141,7 +141,7 @@ TQRect TBarcode2::bbox( const char* postscript, long postscript_size )
psfile.file()->writeBlock( postscript, postscript_size );
psfile.file()->close();
if( !readFromPipe( TQString( gs_bbox ).arg( psfile.file()->name() ).latin1(), &buffer, &len ) || !len )
if( !readFromPipe( TQString( gs_bbox ).tqarg( psfile.file()->name() ).latin1(), &buffer, &len ) || !len )
{
psfile.unlink();
return TQRect( 0, 0, 0, 0 );

@ -22,11 +22,11 @@
#include <unistd.h>
// QT includes
#include <clipboard.h>
#include <tqclipboard.h>
#include <tqcursor.h>
#include <tqgroupbox.h>
#include <tqhbox.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
#include <tqprogressdialog.h>
@ -91,14 +91,14 @@ TQString tec452(const TQString &url, int count, const TQString &art, const TQStr
TQDomElement e = n.toElement(); // try to convert the node to an element.
if( !e.isNull() )
if( e.tagName() == "id" ) {
result += TQString("{D%1,").arg( convZeros((e.attribute( "height" ).toInt() + e.attribute( "gap_v" ).toInt())*10,4)); // Altura + Gap vertical
result += TQString("%1,").arg( convZeros(e.attribute( "width" ).toInt()*10,4) ); // Anchura
result += TQString("%1|}\n").arg( convZeros(e.attribute( "height" ).toInt()*10,4) ); // Altura
result += TQString("{D%1,").tqarg( convZeros((e.attribute( "height" ).toInt() + e.attribute( "gap_v" ).toInt())*10,4)); // Altura + Gap vertical
result += TQString("%1,").tqarg( convZeros(e.attribute( "width" ).toInt()*10,4) ); // Anchura
result += TQString("%1|}\n").tqarg( convZeros(e.attribute( "height" ).toInt()*10,4) ); // Altura
result += TQString("{C|}\n"); // Clear buffer
result += TQString("{U2;0130|}\n"); // BackFeed
result += TQString("{D%1,").arg( convZeros((e.attribute( "height" ).toInt() + e.attribute( "gap_v" ).toInt())*10,4)); // Altura + Gap vertical
result += TQString("%1,").arg( convZeros(e.attribute( "width" ).toInt()*10,4) ); // Anchura
result += TQString("%1|}\n").arg( convZeros(e.attribute( "height" ).toInt()*10,4) ); // Altura
result += TQString("{D%1,").tqarg( convZeros((e.attribute( "height" ).toInt() + e.attribute( "gap_v" ).toInt())*10,4)); // Altura + Gap vertical
result += TQString("%1,").tqarg( convZeros(e.attribute( "width" ).toInt()*10,4) ); // Anchura
result += TQString("%1|}\n").tqarg( convZeros(e.attribute( "height" ).toInt()*10,4) ); // Altura
result += TQString("{AX;+000,+000,+00|}\n"); // Position Fine adjust
result += TQString("{AY;+04,1|}\n"); // Print density fine adjust
@ -130,20 +130,20 @@ TQString tec452(const TQString &url, int count, const TQString &art, const TQStr
if( e.tagName() == "value" ) data = e.text();
n = n.nextSibling();
}
result += TQString("{RB%1;").arg( convZeros(countBar, 2) ); // count de RB
result += TQString("%1|}\n").arg( data ); // Data + fin
result += TQString("{RB%1;").tqarg( convZeros(countBar, 2) ); // count de RB
result += TQString("%1|}\n").tqarg( data ); // Data + fin
countBar++;
} else if( e.tagName() == "textfield" ) {
result += TQString("{PC%1;").arg( convZeros(countText, 3) ); // count
result += TQString("%1,").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").arg( "10" );
result += TQString("%1,").arg( "15" );
result += TQString("%1,").arg( "J" );
result += TQString("%1,").arg( "00" );
result += TQString("%1|}\n").arg( "B" );
result += TQString("{PC%1;").tqarg( convZeros(countText, 3) ); // count
result += TQString("%1,").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").tqarg( "10" );
result += TQString("%1,").tqarg( "15" );
result += TQString("%1,").tqarg( "J" );
result += TQString("%1,").tqarg( "00" );
result += TQString("%1|}\n").tqarg( "B" );
TQString etext;
TQDomNode n = e.firstChild();
@ -155,9 +155,9 @@ TQString tec452(const TQString &url, int count, const TQString &art, const TQStr
n = n.nextSibling();
}
result += TQString("{RC%1;").arg( convZeros(countText, 3) ); // count de RB
result += TQString("{RC%1;").tqarg( convZeros(countText, 3) ); // count de RB
etext=getData(etext, art, group, id );
result += TQString("%1|}\n").arg( etext ); // Data + fin
result += TQString("%1|}\n").tqarg( etext ); // Data + fin
countText++;
}
else if( e.tagName() == "rect" ) {
@ -165,40 +165,40 @@ TQString tec452(const TQString &url, int count, const TQString &art, const TQStr
if (e.attribute("colorr")=="0" and e.attribute("colorg")=="0" and e.attribute("colorb")=="0") {
result += TQString("{XR;"); // XR
result += TQString("%1,").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("%1,").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("A"); // Type of Clear
result += TQString("|}\n"); // FIN
result += TQString("{XR;"); // XR
result += TQString("%1,").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("%1,").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("B"); // Type of Clear
result += TQString("|}\n"); // FIN
}
else {
result += TQString("{LC;"); // LC
result += TQString("%1,").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("%1,").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("1,"); // Type of line 0=line 1=Rectangulo 2=Jagged line 3=Rectangle with jagged lines
result += TQString("%1").arg(lineWidth(e)); // No. of line width dots 1-9
result += TQString("%1").tqarg(lineWidth(e)); // No. of line width dots 1-9
//result += TQString("999"); // Radius of rounded corners of a rectangle
result += TQString("|}\n"); // FIN
}
}
else if( e.tagName() == "line" ) {
result += TQString("{LC;"); // LC
result += TQString("%1,").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").arg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("%1,").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString("%1,").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "x_mm"), 4 ).toInt()+posConv(e.attribute( "width_mm"),4 ).toInt(),4)); // X position
result += TQString("%1,").tqarg( convZeros(posConv(e.attribute( "y_mm"), 4 ).toInt()+posConv(e.attribute( "height_mm"),4 ).toInt(),4)); // Y position
result += TQString("0,"); // Type of line 0=line 1=Rectangulo 2=Jagged line 3=Rectangle with jagged lines
result += TQString("%1").arg(lineWidth(e)); // No. of line width dots 1-9
result += TQString("%1").tqarg(lineWidth(e)); // No. of line width dots 1-9
//result += TQString("999"); // Radius of rounded corners of a rectangle
result += TQString("|}\n"); // FIN
}
@ -206,7 +206,7 @@ TQString tec452(const TQString &url, int count, const TQString &art, const TQStr
}
result += TQString("{U1;0130|}\n"); // ForwardFeed
result += TQString("{XS;I,%1,0000C2000|}\n").arg(convZeros(count,4)); // Issue Command
result += TQString("{XS;I,%1,0000C2000|}\n").tqarg(convZeros(count,4)); // Issue Command
return result;
}
@ -214,7 +214,7 @@ TQString tec452(const TQString &url, int count, const TQString &art, const TQStr
TQString convZeros( int count, int zeros )
{
TQString str= TQString("%1").arg(count);
TQString str= TQString("%1").tqarg(count);
int l=strlen(str); //get the string length
for(;l<zeros;l++) str = TQString("0") + str;
return str;
@ -223,9 +223,9 @@ return str;
TQString posConv( TQString str, int zeros )
{
int point=str.find(".",0);
TQString dec= TQString("%1").arg(str.mid(point+1,1));
TQString dec= TQString("%1").tqarg(str.mid(point+1,1));
str = str.mid(0,point);
str = TQString("%1%2").arg(str).arg(dec);
str = TQString("%1%2").tqarg(str).tqarg(dec);
return convZeros (str.toInt(), zeros);
}
@ -240,20 +240,20 @@ else return 0;
TQString code39 (const TQDomElement &e, int countBar) {
TQString result;
result += TQString("{XB%1;").arg( convZeros(countBar, 2) ); // count
result += TQString("%1").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString(",%1").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString(",%1").arg( barcodeType( e.attribute( "type") ) ); // Type of bar code
result += TQString(",%1").arg( withChecksum(e) ); // Type of check digit
result += TQString(",%1").arg( "03" ); // Narrow bar width
result += TQString(",%1").arg( "03" ); // Narrow space width
result += TQString(",%1").arg( "06" ); // Wide bar width
result += TQString(",%1").arg( "06" ); // Wide space width
result += TQString(",%1").arg( "03" ); // Character to Character space width
result += TQString(",%1").arg( rotation(e.attribute( "rotation", "0" ).toInt())); // Rotation angel of barcode
result += TQString(",%1").arg( "0063" ); // height of barcode
result += TQString(",+%1").arg( sequence(e) ); // Increment / Decrement
result += TQString(",%1").arg( e.attribute( "text", "1" ).toInt() ); // Selection of print or non print of numerals under bars
result += TQString("{XB%1;").tqarg( convZeros(countBar, 2) ); // count
result += TQString("%1").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString(",%1").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString(",%1").tqarg( barcodeType( e.attribute( "type") ) ); // Type of bar code
result += TQString(",%1").tqarg( withChecksum(e) ); // Type of check digit
result += TQString(",%1").tqarg( "03" ); // Narrow bar width
result += TQString(",%1").tqarg( "03" ); // Narrow space width
result += TQString(",%1").tqarg( "06" ); // Wide bar width
result += TQString(",%1").tqarg( "06" ); // Wide space width
result += TQString(",%1").tqarg( "03" ); // Character to Character space width
result += TQString(",%1").tqarg( rotation(e.attribute( "rotation", "0" ).toInt())); // Rotation angel of barcode
result += TQString(",%1").tqarg( "0063" ); // height of barcode
result += TQString(",+%1").tqarg( sequence(e) ); // Increment / Decrement
result += TQString(",%1").tqarg( e.attribute( "text", "1" ).toInt() ); // Selection of print or non print of numerals under bars
result += TQString(",00"); //Number of Zeros to be suppressed
result += TQString("|}\n"); // FIN
@ -371,17 +371,17 @@ return convZeros(e.attribute("sequencestep" ,"0").toInt() ,10);
TQString code128 (const TQDomElement &e, int countBar) {
TQString result;
result += TQString("{XB%1;").arg( convZeros(countBar, 2) ); // count
result += TQString("%1").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString(",%1").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString(",%1").arg( barcodeType( e.attribute( "type") ) ); // Type of bar code
result += TQString(",%1").arg( withChecksum(e) ); // Type of check digit
result += TQString(",%1").arg( "03" ); // 1 module width
result += TQString(",%1").arg( rotation(e.attribute( "rotation", "0" ).toInt())); // Rotation angel of barcode
result += TQString(",%1").arg( "0063" ); // height of barcode
result += TQString(",+%1").arg( sequence(e) ); // Increment / Decrement
result += TQString("{XB%1;").tqarg( convZeros(countBar, 2) ); // count
result += TQString("%1").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString(",%1").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString(",%1").tqarg( barcodeType( e.attribute( "type") ) ); // Type of bar code
result += TQString(",%1").tqarg( withChecksum(e) ); // Type of check digit
result += TQString(",%1").tqarg( "03" ); // 1 module width
result += TQString(",%1").tqarg( rotation(e.attribute( "rotation", "0" ).toInt())); // Rotation angel of barcode
result += TQString(",%1").tqarg( "0063" ); // height of barcode
result += TQString(",+%1").tqarg( sequence(e) ); // Increment / Decrement
result += TQString(",000"); // Length of th WPC guard bar
result += TQString(",%1").arg( e.attribute( "text", "1" ).toInt() ); // Selection of print or non print of numerals under bars
result += TQString(",%1").tqarg( e.attribute( "text", "1" ).toInt() ); // Selection of print or non print of numerals under bars
result += TQString(",00"); //Number of Zeros to be suppressed
result += TQString("|}\n"); // FIN
@ -457,15 +457,15 @@ return result;
TQString pdf417 (const TQDomElement &e, int countBar) {
TQString result;
result += TQString("{XB%1;").arg( convZeros(countBar, 2) ); // count
result += TQString("%1").arg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString(",%1").arg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString("{XB%1;").tqarg( convZeros(countBar, 2) ); // count
result += TQString("%1").tqarg( posConv(e.attribute( "x_mm"), 4 ) ); // X position
result += TQString(",%1").tqarg( posConv(e.attribute( "y_mm"), 4 ) ); // Y position
result += TQString(",P"); // Type of bar code ALWAYS PDF417
result += TQString(",%1").arg( withChecksum(e) ); // Type of check digit
result += TQString(",%1").arg( "03" ); // Module Width
result += TQString(",%1").arg( convZeros(e.attribute("pdf417.col").toInt(),2 )); // Number of columns
result += TQString(",%1").arg( rotation(e.attribute( "rotation", "0" ).toInt())); // Rotation angel of barcode
result += TQString(",%1").arg( "0063" ); // height of barcode
result += TQString(",%1").tqarg( withChecksum(e) ); // Type of check digit
result += TQString(",%1").tqarg( "03" ); // Module Width
result += TQString(",%1").tqarg( convZeros(e.attribute("pdf417.col").toInt(),2 )); // Number of columns
result += TQString(",%1").tqarg( rotation(e.attribute( "rotation", "0" ).toInt())); // Rotation angel of barcode
result += TQString(",%1").tqarg( "0063" ); // height of barcode
result += TQString("|}\n"); // FIN
return result;
@ -619,7 +619,7 @@ if (etext.contains("[barcode_no_customer]") ){
while( query.next() ) temp = TQString (query.value( 0 ).toString());
etext.replace("[barcode_no_customer]" , temp );
}
if (etext.contains("[date]") ) etext.replace( "[date]" ,TQDateTime::currentDateTime().toString( KBarcodeSettings::getDateFormat() ));
if (etext.contains("[date]") ) etext.replace( "[date]" ,TQDateTime::tqcurrentDateTime().toString( KBarcodeSettings::getDateFormat() ));
if (etext.contains("[time]") ) etext.replace( "[time]" ,TQTime::currentTime().toString());
return etext;*/

@ -22,11 +22,11 @@
#include <stdio.h>
// QT includes
#include <clipboard.h>
#include <tqclipboard.h>
#include <tqcursor.h>
#include <tqgroupbox.h>
#include <tqhbox.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
#include <tqprogressdialog.h>

@ -134,14 +134,14 @@ void TextItem::drawIpl( TQTextStream* stream, IPLUtils* utils )
// simply remove all html tags....
TQString data = m_text.replace( TQRegExp("<[^>]*>"), "" );
TQString s = TQString("H%1;").arg( counter ); // field number
TQString s = TQString("H%1;").tqarg( counter ); // field number
s += utils->fieldOrigin( rect().x(), rect().y() );
s += TQString("c%1;").arg( 2 ); // font
s += TQString("h%1;").arg( 2 ); // vertical magnification ("height")
s += TQString("w%1;").arg( 2 ); // horicontyl magnification ("width")
s += TQString("d0,%1;").arg( data.length() ); // max length of data !
s += TQString("c%1;").tqarg( 2 ); // font
s += TQString("h%1;").tqarg( 2 ); // vertical magnification ("height")
s += TQString("w%1;").tqarg( 2 ); // horicontyl magnification ("width")
s += TQString("d0,%1;").tqarg( data.length() ); // max length of data !
*stream << utils->field( s );
utils->addValue( data );
@ -165,9 +165,9 @@ void TextItem::drawEPcl( TQTextStream* stream )
TQStringList::Iterator line = lines.begin();
for( int i=0; line != lines.end(); ++line, ++i ){
TQString s = TQString("T %1").arg( rect().x() + 1 );
s += TQString(" %1 0 0 0 50 1").arg( rect().y()+50+1 + i*52 );
s += TQString(" %1").arg( *line );
TQString s = TQString("T %1").tqarg( rect().x() + 1 );
s += TQString(" %1 0 0 0 50 1").tqarg( rect().y()+50+1 + i*52 );
s += TQString(" %1").tqarg( *line );
*stream << EPCLUtils::field( s );
}
}

@ -28,12 +28,12 @@
#include <tqdockarea.h>
#include <tqregexp.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
TextLineEditor::TextLineEditor( TokenProvider* token, TQWidget *parent, const char *name )
: TQWidget( parent, name ), m_token( token )
{
TQVBoxLayout* layout = new TQVBoxLayout( this, 6, 6 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
@ -48,8 +48,8 @@ TextLineEditor::TextLineEditor( TokenProvider* token, TQWidget *parent, const ch
setupActions();
layout->addWidget( area );
layout->addWidget( editor );
tqlayout->addWidget( area );
tqlayout->addWidget( editor );

@ -99,14 +99,14 @@ void TextLineItem::drawIpl( TQTextStream* stream, IPLUtils* utils )
// simply remove all html tags....
TQString data = m_text.replace( TQRegExp("<[^>]*>"), "" );
TQString s = TQString("H%1;").arg( counter ); // field number
TQString s = TQString("H%1;").tqarg( counter ); // field number
s += utils->fieldOrigin( rect().x(), rect().y() );
s += TQString("c%1;").arg( 2 ); // font
s += TQString("h%1;").arg( 2 ); // vertical magnification ("height")
s += TQString("w%1;").arg( 2 ); // horicontyl magnification ("width")
s += TQString("d0,%1;").arg( data.length() ); // max length of data !
s += TQString("c%1;").tqarg( 2 ); // font
s += TQString("h%1;").tqarg( 2 ); // vertical magnification ("height")
s += TQString("w%1;").tqarg( 2 ); // horicontyl magnification ("width")
s += TQString("d0,%1;").tqarg( data.length() ); // max length of data !
*stream << utils->field( s );
utils->addValue( data );
@ -129,9 +129,9 @@ void TextLineItem::drawEPcl( TQTextStream* stream )
TQStringList::Iterator line = lines.begin();
for( int i=0; line != lines.end(); ++line, ++i ){
TQString s = TQString("T %1").arg( rect().x() + 1 );
s += TQString(" %1 0 0 0 50 1").arg( rect().y()+50+1 + i*52 );
s += TQString(" %1").arg( *line );
TQString s = TQString("T %1").tqarg( rect().x() + 1 );
s += TQString(" %1 0 0 0 50 1").tqarg( rect().y()+50+1 + i*52 );
s += TQString(" %1").tqarg( *line );
*stream << EPCLUtils::field( s );
}
}

@ -27,7 +27,7 @@
#include <tqhbox.h>
#include <tqlabel.h>
#include <layout.h>
#include <tqlayout.h>
#include <tqsplitter.h>
#include <tqtooltip.h>
#include <tqvaluelist.h>
@ -36,7 +36,7 @@
#include <tqwidgetstack.h>
#include <tqradiobutton.h>
#include <kcombobox.h>
#include <textbrowser.h>
#include <tqtextbrowser.h>
#include <kpushbutton.h>
TokenDialog::TokenDialog(TokenProvider* token ,TQWidget *parent, const char *name)
@ -125,9 +125,9 @@ void TokenDialog::setupStack2Page1()
{
stack2Page1 = new TQWidget();
TQVBoxLayout* layout = new TQVBoxLayout( stack2Page1 );
TQVBoxLayout* tqlayout = new TQVBoxLayout( stack2Page1 );
TQSplitter* splitter = new TQSplitter( stack2Page1 );
layout->addWidget( splitter );
tqlayout->addWidget( splitter );
TQVBox* left = new TQVBox( splitter );
TQVBox* right = new TQVBox( splitter );
@ -266,9 +266,9 @@ void TokenDialog::accept()
m_result = listVariable->currentText();
}
else if( radioSQLQuery->isChecked() )
m_result = TQString( "sqlquery:%2").arg( editQuery->text() );
m_result = TQString( "sqlquery:%2").tqarg( editQuery->text() );
else if( radioJavaScript->isChecked() )
m_result = TQString( "js:%2").arg( editJavaScript->text() );
m_result = TQString( "js:%2").tqarg( editJavaScript->text() );
m_result = "[" + m_result + "]";
}
@ -279,10 +279,10 @@ void TokenDialog::accept()
if( item )
{
for( unsigned int i = 0; i < m_tokens.count(); i++ )
if( TQString( "[%1]").arg( m_tokens[i].token ) == item->text( 0 ) )
if( TQString( "[%1]").tqarg( m_tokens[i].token ) == item->text( 0 ) )
{
if( m_tokens[i].appendix )
m_result = TQString( "[%1%2]").arg( m_tokens[i].token ).arg( lineEdit->text() );
m_result = TQString( "[%1%2]").tqarg( m_tokens[i].token ).tqarg( lineEdit->text() );
else
m_result = item->text( 0 );
break;
@ -378,7 +378,7 @@ void TokenDialog::initStackPage2()
if( (*categories)[i].category == cat )
{
for( unsigned int z = 0; z < (*categories)[i].tokens.count(); z++ )
labelList->insertItem( new KListViewItem( labelList, TQString( "[%1]").arg( (*categories)[i].tokens[z].token ),
labelList->insertItem( new KListViewItem( labelList, TQString( "[%1]").tqarg( (*categories)[i].tokens[z].token ),
(*categories)[i].tokens[z].description ) );
break;
@ -396,7 +396,7 @@ void TokenDialog::categoryChanged( TQListBoxItem* item )
if( item->prev() == 0 )
{
for( i = 0; i < m_tokens.count(); i++ )
allList->insertItem( new KListViewItem( allList, TQString( "[%1]").arg( m_tokens[i].token ),
allList->insertItem( new KListViewItem( allList, TQString( "[%1]").tqarg( m_tokens[i].token ),
m_tokens[i].description ) );
}
else
@ -406,7 +406,7 @@ void TokenDialog::categoryChanged( TQListBoxItem* item )
if( TokenProvider::captionForCategory( (TokenProvider::ECategories)(*categories)[i].category ) == item->text() )
{
for( unsigned int z = 0; z < (*categories)[i].tokens.count(); z++ )
allList->insertItem( new KListViewItem( allList, TQString( "[%1]").arg( (*categories)[i].tokens[z].token ),
allList->insertItem( new KListViewItem( allList, TQString( "[%1]").tqarg( (*categories)[i].tokens[z].token ),
(*categories)[i].tokens[z].description ) );
break;
@ -416,7 +416,7 @@ void TokenDialog::categoryChanged( TQListBoxItem* item )
// TODO: comparing by a user visible string cries for bugs!!!
if( item->text() == i18n("Custom Values") )
for( i=0;i<m_custom_tokens.count();i++ )
allList->insertItem( new KListViewItem( allList, TQString( "[%1]").arg( m_custom_tokens[i] ),
allList->insertItem( new KListViewItem( allList, TQString( "[%1]").tqarg( m_custom_tokens[i] ),
i18n("Variable defined by the user for this label.") ) );
}
}
@ -425,7 +425,7 @@ void TokenDialog::itemChanged( TQListViewItem* item )
{
for( unsigned int i = 0; i < m_tokens.count(); i++ )
{
if( TQString( "[%1]").arg( m_tokens[i].token ) == item->text( 0 ) )
if( TQString( "[%1]").tqarg( m_tokens[i].token ) == item->text( 0 ) )
{
lineEdit->setEnabled( m_tokens[i].appendix );
if( m_tokens[i].appendix )

@ -216,11 +216,11 @@ void TokenProvider::init()
category.tokens.append( tToken( TOK_ARTICLE_DESC, i18n("Article description from barcode_basic") ) );
category.tokens.append( tToken( TOK_ARTICLE_NO, i18n("Article number from barcode_basic") ) );
for( int i = 0; i < NUM_FIELDS; i++ )
category.tokens.append( tToken( TQString( TOK_LINE ).arg( i ),
TQString( TOK_LINE ).arg( i ) + " from customer_text" ) );
category.tokens.append( tToken( TQString( TOK_LINE ).tqarg( i ),
TQString( TOK_LINE ).tqarg( i ) + " from customer_text" ) );
for( int i = 0; i < NUM_FIELDS; i++ )
category.tokens.append( tToken( TQString( TOK_FIELD ).arg( i ),
TQString( TOK_FIELD ).arg( i ) + " from barcode_basic" ) );
category.tokens.append( tToken( TQString( TOK_FIELD ).tqarg( i ),
TQString( TOK_FIELD ).tqarg( i ) + " from barcode_basic" ) );
category.tokens.append( tToken( TOK_CUSTOMER_NO, i18n("customer number of the current customer") ) );
category.tokens.append( tToken( TOK_CUSTOEMR_NAME, i18n("name of the current customer") ) );
category.tokens.append( tToken( TOK_BARCODE_NO, i18n("Barcode number from barcode_basic") ) );
@ -460,7 +460,7 @@ TQString TokenProvider::process( const TQString & t )
{
for( i = 0; i < NUM_FIELDS; i++ )
{
const TQString c = TQString( TOK_LINE ).arg( i );
const TQString c = TQString( TOK_LINE ).tqarg( i );
if( t == c )
ret = query( "SELECT " + c + " FROM " + TABLE_CUSTOMER_TEXT + " WHERE article_no='" + article_no +
"' AND customer_no='" + customer_no + "'");
@ -468,7 +468,7 @@ TQString TokenProvider::process( const TQString & t )
for( i = 0; i < NUM_FIELDS; i++ )
{
const TQString c = TQString( TOK_FIELD ).arg( i );
const TQString c = TQString( TOK_FIELD ).tqarg( i );
if( t == c )
ret = query("SELECT " + c + " FROM " + TABLE_BASIC + " WHERE article_no='" + article_no + "'");
}
@ -516,7 +516,7 @@ TQString TokenProvider::process( const TQString & t )
ret = label_name;
if( t == TOK_DATE )
ret = TQDateTime::currentDateTime().toString( KBarcodeSettings::getDateFormat() );
ret = TQDateTime::tqcurrentDateTime().toString( KBarcodeSettings::getDateFormat() );
if( date_reg_exp.search(t,0) != -1 )
{
@ -558,7 +558,7 @@ TQString TokenProvider::process( const TQString & t )
if( m_printer && t == TOK_RESOLUTION )
{
TQPaintDeviceMetrics metrics( m_printer );
ret = TQString( "%1dpi" ).arg( metrics.logicalDpiY() );
ret = TQString( "%1dpi" ).tqarg( metrics.logicalDpiY() );
}
if( !m_serial.isEmpty() && t == TOK_SERIAL )

@ -112,7 +112,7 @@ void XMLUtils::writeXMLHeader( TQDomNode* root, const TQString & description, De
TQDomElement labelid = root->ownerDocument().createElement( "id" );
writeDefinition( &labelid, def );
labelid.appendChild( root->ownerDocument().createTextNode( TQString( "%1" ).arg(def->getId()) ) );
labelid.appendChild( root->ownerDocument().createTextNode( TQString( "%1" ).tqarg(def->getId()) ) );
data.appendChild( labelid );
root->appendChild( data );
@ -279,9 +279,9 @@ TQColor XMLUtils::readXMLColor( TQDomElement* tag, const TQString & prefix, TQCo
int g = c.green();
int b = c.blue();
r = tag->attribute( prefix + "r", TQString("%1").arg( r ) ).toInt();
g = tag->attribute( prefix + "g", TQString("%1").arg( g ) ).toInt();
b = tag->attribute( prefix + "b", TQString("%1").arg( b ) ).toInt();
r = tag->attribute( prefix + "r", TQString("%1").tqarg( r ) ).toInt();
g = tag->attribute( prefix + "g", TQString("%1").tqarg( g ) ).toInt();
b = tag->attribute( prefix + "b", TQString("%1").tqarg( b ) ).toInt();
return TQColor( r, g, b);
}

@ -24,7 +24,7 @@
#include <tqpaintdevicemetrics.h>
#include <tqregexp.h>
#include <tqstring.h>
#include <textstream.h>
#include <tqtextstream.h>
// font table for IPL, thanks to Erich Kitzmueller
struct { int size; int c; int h; int w; } iplfonttable[] = {
@ -123,7 +123,7 @@ TQString ZPLUtils::fieldOrigin( int x, int y )
{
TQString zpl = TQString();
zpl = TQString("^FO%1,%2\n").arg( x ).arg( y ); // field origin
zpl = TQString("^FO%1,%2\n").tqarg( x ).tqarg( y ); // field origin
return zpl;
}
@ -243,7 +243,7 @@ TQString IPLUtils::field( const TQString & data )
TQString IPLUtils::fieldOrigin( int x, int y )
{
return TQString("o%1,%2;f0;").arg( x ).arg( y ); // field origin
return TQString("o%1,%2;f0;").tqarg( x ).tqarg( y ); // field origin
}
TQString IPLUtils::footer()

Loading…
Cancel
Save