You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/karm/csvexportdialog.cpp

108 lines
3.2 KiB

/*
* Copyright (C) 2004 Mark Bucciarelli <mark@hubcapconsulting.com>
*
* 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 2 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, write to the
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA.
*
*/
#include <kdateedit.h>
#include <kdebug.h>
#include <tdeglobal.h>
#include <klineedit.h>
#include <tdelocale.h>
#include <kpushbutton.h>
#include <kurlrequester.h>
#include <tqbuttongroup.h>
#include <tqcombobox.h>
#include <tqradiobutton.h>
#include "csvexportdialog.h"
#include "reportcriteria.h"
CSVExportDialog::CSVExportDialog( ReportCriteria::REPORTTYPE rt,
TQWidget *parent,
const char *name
)
: CSVExportDialogBase( parent, name )
{
switch ( rt ) {
case ReportCriteria::CSVTotalsExport:
grpDateRange->setEnabled( false );
grpDateRange->hide();
rc.reportType = rt;
break;
case ReportCriteria::CSVHistoryExport:
grpDateRange->setEnabled( true );
rc.reportType = rt;
break;
default:
break;
}
// If decimal symbol is a comma, then default field seperator to semi-colon.
// In France and Germany, one-and-a-half is written as 1,5 not 1.5
TQString d = TDEGlobal::locale()->decimalSymbol();
if ( "," == d ) CSVExportDialogBase::radioSemicolon->setChecked(true);
else CSVExportDialogBase::radioComma->setChecked(true);
}
void CSVExportDialog::enableExportButton()
{
btnExport->setEnabled( !urlExportTo->lineEdit()->text().isEmpty() );
}
void CSVExportDialog::enableTasksToExportQuestion()
{
return;
//grpTasksToExport->setEnabled( true );
}
ReportCriteria CSVExportDialog::reportCriteria()
{
rc.url = urlExportTo->url();
rc.from = dtFrom->date();
rc.to = dtTo->date();
// Hard code to true for now as the CSV export of totals does not support
// this choice currenly and I'm trying to minimize pre-3.3 hacking at the
// moment.
rc.allTasks = true;
TQString t = grpTimeFormat->selected()->name();
rc.decimalMinutes = ( t == i18n( "radioDecimal" ) );
TQString d = grpDelimiter->selected()->name();
if ( d == "radioComma" ) rc.delimiter = ",";
else if ( d == "radioTab" ) rc.delimiter = "\t";
else if ( d == "radioSemicolon" ) rc.delimiter = ";";
else if ( d == "radioSpace" ) rc.delimiter = " ";
else if ( d == "radioOther" ) rc.delimiter = txtOther->text();
else {
kdDebug(5970)
<< "*** CSVExportDialog::reportCriteria: Unexpected delimiter choice '"
<< d << "'--defaulting to a tab" << endl;
rc.delimiter = "\t";
}
rc.quote = cboQuote->currentText();
return rc;
}
#include "csvexportdialog.moc"