ExportDialog.h

Go to the documentation of this file.
00001 /***************************************************************************
00002     File                 : ExportDialog.h
00003     Project              : QtiPlot
00004     --------------------------------------------------------------------
00005     Copyright            : (C) 2006 by Ion Vasilief
00006     Email (use @ for *)  : ion_vasilief*yahoo.fr
00007     Description          : Export ASCII dialog
00008 
00009  ***************************************************************************/
00010 
00011 /***************************************************************************
00012  *                                                                         *
00013  *  This program is free software; you can redistribute it and/or modify   *
00014  *  it under the terms of the GNU General Public License as published by   *
00015  *  the Free Software Foundation; either version 2 of the License, or      *
00016  *  (at your option) any later version.                                    *
00017  *                                                                         *
00018  *  This program is distributed in the hope that it will be useful,        *
00019  *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
00020  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
00021  *  GNU General Public License for more details.                           *
00022  *                                                                         *
00023  *   You should have received a copy of the GNU General Public License     *
00024  *   along with this program; if not, write to the Free Software           *
00025  *   Foundation, Inc., 51 Franklin Street, Fifth Floor,                    *
00026  *   Boston, MA  02110-1301  USA                                           *
00027  *                                                                         *
00028  ***************************************************************************/
00029 #ifndef EXPORTDIALOG_H
00030 #define EXPORTDIALOG_H
00031 
00032 #include <ExtensibleFileDialog.h>
00033 
00034 class QPushButton;
00035 class QCheckBox;
00036 class QComboBox;
00037 class QGroupBox;
00038 class QLabel;
00039 class MdiSubWindow;
00040 
00042 class ExportDialog : public ExtensibleFileDialog
00043 {
00044     Q_OBJECT
00045 
00046 public:
00048 
00054     ExportDialog(MdiSubWindow *window = NULL, QWidget* parent = 0, bool extended = true, Qt::WFlags fl = 0 );
00055 
00056 private:
00058     MdiSubWindow *d_window;
00059 
00060     void closeEvent(QCloseEvent*);
00062     void initAdvancedOptions();
00063     void setFileTypeFilters();
00065     QGroupBox *d_advanced_options;
00066 
00067     QPushButton* buttonHelp;
00068     QCheckBox* boxNames;
00069     QCheckBox* boxComments;
00070     QCheckBox* boxSelection;
00071     QCheckBox* boxAllTables;
00072     QComboBox* boxSeparator;
00073     QComboBox* boxTable;
00074     QLabel *separatorLbl;
00075 
00076 public slots:
00078     void setColumnSeparator(const QString& sep);
00080     void updateOptions(const QString & name);
00082     void updateAdvancedOptions (const QString &filter);
00083 
00084 private slots:
00086 
00090     void enableTableName(bool ok);
00091 
00092 protected slots:
00094     void accept();
00096     void help();
00097 };
00098 
00099 #endif // ExportDialog_H