Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef CUSTOMASCIIFORMATSEDITOR_H
00027 #define CUSTOMASCIIFORMATSEDITOR_H
00028
00029 #include <QGpGuiTools.h>
00030 #include <GeopsyCore.h>
00031
00032 #include "ui_CustomAsciiFormatsEditor.h"
00033
00034 class CustomAsciiFormatsEditor : public Dialog, private Ui::CustomAsciiFormatsEditor, public CustomFileFormats
00035 {
00036 Q_OBJECT
00037 public:
00038 CustomAsciiFormatsEditor(QWidget * parent=0);
00039 ~CustomAsciiFormatsEditor();
00040
00041 void setFormats(const CustomFileFormats& o);
00042 private slots:
00043 void selectionChanged();
00044 void on_newButton_clicked();
00045 void on_editButton_clicked();
00046 void on_removeButton_clicked();
00047 void on_importButton_clicked();
00048 void on_exportButton_clicked();
00049 private:
00050 void updateList();
00051 };
00052
00053 #endif // CUSTOMASCIIFORMATSEDITOR_H