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
|
/*
* importdialog.h
*
* (c) 2003-2004,2008-2009 by Jeremy Bowman <jmbowman@alum.mit.edu>
*
* 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.
*/
/** @file importdialog.h
* Header file for ImportDialog
*/
#ifndef IMPORT_DIALOG_H
#define IMPORT_DIALOG_H
#include <QObject>
#include <QStringList>
class Database;
class QWidget;
/**
* Wrapper for the file open dialog which imports data from the selected
* file.
*/
class ImportDialog : QObject
{
Q_OBJECT
public:
/** Enumeration of possible types of files to import from */
enum DataSource {
NoSource = 0,
CSV = 1,
MobileDB = 2,
XML = 3,
OptionList = 4,
Image = 5
};
ImportDialog(DataSource sourceType, QWidget *parent = 0);
bool exec();
bool import(Database *db);
QStringList getOptions();
QString getPath();
private:
QWidget *parentWidget; /**< This dialog's parent widget */
DataSource source; /**< The type of file being imported from */
QString encoding; /**< The text encoding to use for a CSV or enum options file */
QStringList options; /**< List of imported enumeration options, if any */
QString path; /**< The absolute path of the file that was imported */
};
#endif
|