karm

csvexportdialog.h
1/*
2 * Copyright (C) 2004 Mark Bucciarelli <mark@hubcapconsulting.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the
16 * Free Software Foundation, Inc.
17 * 51 Franklin Street, Fifth Floor
18 * Boston, MA 02110-1301 USA.
19 *
20 */
21#ifndef CSVEXPORTDIALOG_H
22#define CSVEXPORTDIALOG_H
23
24#include "csvexportdialog_base.h"
25#include "reportcriteria.h"
26
27class CSVExportDialog : public CSVExportDialogBase
28{
29 TQ_OBJECT
30
31
32 public:
33 CSVExportDialog( ReportCriteria::REPORTTYPE rt,
34 TQWidget *parent = 0,
35 const char *name = 0
36 );
37
47 void enableTasksToExportQuestion();
48
52 ReportCriteria reportCriteria();
53
54 private slots:
55
59 void enableExportButton();
60
61 private:
63};
64
65#endif
Stores entries from export dialog.
REPORTTYPE
The different report types.