blob: 9cadf92c924a31a89cc393316fe22d703ae4d842 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef CSVIMPORTER_H
#define CSVIMPORTER_H
class CSVImporterWidget;
class KLineEdit;
class KComboBox;
class KIntSpinBox;
class KPushButton;
class TQButtonGroup;
class TQCheckBox;
class TQRadioButton;
class TQTable;
#include "textimporter.h"
#include "../datavectors.h"
namespace Tellico {
namespace GUI {
class CollectionTypeCombo;
}
namespace Import {
/**
* @author Robby Stephenson
*/
class CSVImporter : public TextImporter {
Q_OBJECT
TQ_OBJECT
public:
class Parser;
/**
*/
CSVImporter(const KURL& url);
~CSVImporter();
/**
* @return A pointer to a @ref Data::Collection, or 0 if none can be created.
*/
virtual Data::CollPtr collection();
/**
*/
virtual TQWidget* widget(TQWidget* parent, const char* name=0);
virtual bool validImport() const;
public slots:
void slotActionChanged(int action);
void slotCancel();
private slots:
void slotTypeChanged();
void slotFieldChanged(int idx);
void slotFirstRowHeader(bool b);
void slotDelimiter();
void slotCurrentChanged(int row, int col);
void slotHeaderClicked(int col);
void slotSelectColumn(int col);
void slotSetColumnTitle();
private:
void fillTable();
void updateHeader(bool force);
Data::CollPtr m_coll;
Data::CollPtr m_existingCollection; // used to grab fields from current collection in window
bool m_firstRowHeader;
TQString m_delimiter;
bool m_cancelled;
TQWidget* m_widget;
GUI::CollectionTypeCombo* m_comboColl;
TQCheckBox* m_checkFirstRowHeader;
TQButtonGroup* m_delimiterGroup;
TQRadioButton* m_radioComma;
TQRadioButton* m_radioSemicolon;
TQRadioButton* m_radioTab;
TQRadioButton* m_radioOther;
KLineEdit* m_editOther;
TQTable* m_table;
KIntSpinBox* m_colSpinBox;
KComboBox* m_comboField;
KPushButton* m_setColumnBtn;
bool m_hasAssignedFields;
friend class Parser;
Parser* m_parser;
};
} // end namespace
} // end namespace
#endif
|