Scribus
Open source desktop publishing at your fingertips
csvdia.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef CSVDIA_H
8 #define CSVDIA_H
9 
10 #include <QDialog>
11 class QComboBox;
12 class QCheckBox;
13 class QPushButton;
14 class QString;
15 
16 class CsvDialog : public QDialog
17 {
18  Q_OBJECT
19 
20 public:
21  CsvDialog();
22  ~CsvDialog();
23  QString getFDelim();
24  QString getVDelim();
25  bool hasHeader();
26  bool useVDelim();
27 
28 private:
29  QComboBox* fdelimCombo;
30  QComboBox* vdelimCombo;
31  QCheckBox* headerCheck;
32  QPushButton* okButton;
33  QPushButton* cancelButton;
34 };
35 
36 #endif // CSVDIA_H
Definition: csvdia.h:16