Files
sqlitebrowser/src/ExportCsvDialog.h
Martin Kleusberg 2165e544a2 Move all settings logic to the preferences dialog
Read and write the settings only from the preferences dialog.

Remove all the copies of some settings which were stored in nearly every
dialog class individually.

Simplify the settings dialog code by removing all those not really
needed slots.
2013-03-17 16:09:28 +01:00

28 lines
411 B
C++

#ifndef __EXPORTCSVDIALOG_H__
#define __EXPORTCSVDIALOG_H__
#include <QDialog>
class DBBrowserDB;
namespace Ui {
class ExportCsvDialog;
}
class ExportCsvDialog : public QDialog
{
Q_OBJECT
public:
explicit ExportCsvDialog(DBBrowserDB* db, QWidget* parent = 0);
~ExportCsvDialog();
private slots:
virtual void accept();
private:
Ui::ExportCsvDialog* ui;
DBBrowserDB* pdb;
};
#endif