void XbmExport::extraImageAttribute() { ExportSizeDia *exportDialog = new ExportSizeDia( width, height, 0, "exportdialog"); if (exportDialog->exec()) { width = exportDialog->width(); height = exportDialog->height(); kdDebug() << "Xbm Export: size = [" << width << "," << height << "]" << endl; } delete exportDialog; }
bool PngExport::extraImageAttribute() { bool ret = false; ExportSizeDia *exportDialog = new ExportSizeDia( width, height, 0, "exportdialog"); if (exportDialog->exec()) { width = exportDialog->width(); height = exportDialog->height(); ret = true; kdDebug() << "PNG Export: size = [" << width << "," << height << "]" << endl; } delete exportDialog; return ret; }