2011-11-26 04:00:31 +00:00
|
|
|
/*
|
|
|
|
ExportCSV module header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*/
|
|
|
|
|
2011-11-14 14:10:46 +00:00
|
|
|
#ifndef EXPORTCSV_H
|
|
|
|
#define EXPORTCSV_H
|
|
|
|
|
2011-11-15 01:09:09 +00:00
|
|
|
#include <QDateEdit>
|
2011-11-14 14:10:46 +00:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ExportCSV;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ExportCSV : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ExportCSV(QWidget *parent = 0);
|
|
|
|
~ExportCSV();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_filenameBrowseButton_clicked();
|
|
|
|
|
|
|
|
void on_quickRangeCombo_activated(const QString &arg1);
|
|
|
|
|
|
|
|
void on_exportButton_clicked();
|
|
|
|
|
2011-11-15 01:09:09 +00:00
|
|
|
void startDate_currentPageChanged(int year, int month);
|
|
|
|
void endDate_currentPageChanged(int year, int month);
|
|
|
|
|
|
|
|
|
2011-11-14 14:10:46 +00:00
|
|
|
private:
|
2011-11-15 01:09:09 +00:00
|
|
|
void UpdateCalendarDay(QDateEdit * dateedit,QDate date);
|
|
|
|
|
2011-11-14 14:10:46 +00:00
|
|
|
Ui::ExportCSV *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXPORTCSV_H
|