summaryrefslogtreecommitdiffstats
path: root/kig/filters/exporter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kig/filters/exporter.cc')
-rw-r--r--kig/filters/exporter.cc38
1 files changed, 19 insertions, 19 deletions
diff --git a/kig/filters/exporter.cc b/kig/filters/exporter.cc
index b44888f0..f2847c0a 100644
--- a/kig/filters/exporter.cc
+++ b/kig/filters/exporter.cc
@@ -65,13 +65,13 @@ class ExporterAction
KigWidget* mw;
public:
ExporterAction( const KigPart* doc, KigWidget* w,
- KActionCollection* parent, KigExporter* exp );
+ KActionCollection* tqparent, KigExporter* exp );
void slotActivated();
};
ExporterAction::ExporterAction( const KigPart* doc, KigWidget* w,
- KActionCollection* parent, KigExporter* exp )
- : KAction( exp->menuEntryName(), KShortcut(), 0, 0, parent ),
+ KActionCollection* tqparent, KigExporter* exp )
+ : KAction( exp->menuEntryName(), KShortcut(), 0, 0, tqparent ),
mexp( exp ), mdoc( doc ), mw( w )
{
TQString iconstr = exp->menuIcon();
@@ -121,7 +121,7 @@ void ImageExporter::run( const KigPart& doc, KigWidget& w )
}
KigFileDialog* kfd = new KigFileDialog(
- TQString::null, KImageIO::pattern( KImageIO::Writing ),
+ TQString(), KImageIO::pattern( KImageIO::Writing ),
i18n( "Export as Image" ), &w );
kfd->setOptionCaption( i18n( "Image Options" ) );
ImageExporterOptions* opts = new ImageExporterOptions( 0L, w.size() );
@@ -156,20 +156,20 @@ void ImageExporter::run( const KigPart& doc, KigWidget& w )
{
KMessageBox::sorry( &w,
i18n( "The file \"%1\" could not be opened. Please check if the file permissions are set correctly." )
- .arg( filename ) );
+ .tqarg( filename ) );
return;
};
TQPixmap img( TQSize( width, height ) );
- img.fill( Qt::white );
- KigPainter p( ScreenInfo( w.screenInfo().shownRect(), img.rect() ), &img, doc.document() );
+ img.fill( TQt::white );
+ KigPainter p( ScreenInfo( w.screenInfo().shownRect(), img.rect() ), TQT_TQPAINTDEVICE(&img), doc.document() );
p.setWholeWinOverlay();
p.drawGrid( doc.document().coordinateSystem(), showgrid, showaxes );
// FIXME: show the selections ?
p.drawObjects( doc.document().objects(), false );
if ( ! img.save( filename, type.latin1() ) )
{
- KMessageBox::error( &w, i18n( "Sorry, something went wrong while saving to image \"%1\"" ).arg( filename ) );
+ KMessageBox::error( &w, i18n( "Sorry, something went wrong while saving to image \"%1\"" ).tqarg( filename ) );
}
}
@@ -244,7 +244,7 @@ class XFigExportImpVisitor
// << "c: " << c << endl;
ret *= 9450;
ret /= msr.width();
- return ret.toQPoint();
+ return ret.toTQPoint();
}
void emitLine( const Coordinate& a, const Coordinate& b, int width, bool vector = false );
@@ -257,14 +257,14 @@ public:
mnextcolorid( 32 )
{
// predefined colors in XFig..
- mcolormap[Qt::black] = 0;
- mcolormap[Qt::blue] = 1;
- mcolormap[Qt::green] = 2;
- mcolormap[Qt::cyan] = 3;
- mcolormap[Qt::red] = 4;
- mcolormap[Qt::magenta] = 5;
- mcolormap[Qt::yellow] = 6;
- mcolormap[Qt::white] = 7;
+ mcolormap[TQt::black] = 0;
+ mcolormap[TQt::blue] = 1;
+ mcolormap[TQt::green] = 2;
+ mcolormap[TQt::cyan] = 3;
+ mcolormap[TQt::red] = 4;
+ mcolormap[TQt::magenta] = 5;
+ mcolormap[TQt::yellow] = 6;
+ mcolormap[TQt::white] = 7;
}
void visit( const LineImp* imp );
void visit( const PointImp* imp );
@@ -297,7 +297,7 @@ void XFigExportImpVisitor::mapColor( const ObjectDrawer* obj )
void XFigExportImpVisitor::visit( ObjectHolder* obj )
{
if ( ! obj->drawer()->shown() ) return;
- assert( mcolormap.find( obj->drawer()->color() ) != mcolormap.end() );
+ assert( mcolormap.tqfind( obj->drawer()->color() ) != mcolormap.end() );
mcurcolorid = mcolormap[ obj->drawer()->color() ];
mcurobj = obj;
obj->imp()->visit( this );
@@ -593,7 +593,7 @@ void XFigExporter::run( const KigPart& doc, KigWidget& w )
{
KMessageBox::sorry( &w, i18n( "The file \"%1\" could not be opened. Please "
"check if the file permissions are set correctly." )
- .arg( file_name ) );
+ .tqarg( file_name ) );
return;
};
TQTextStream stream( &file );