00001 //LabPlot : FileInfoDialog.h 00002 00003 #ifndef FILEINFODIALOG_H 00004 #define FILEINFODIALOG_H 00005 00006 #include <qfont.h> 00007 #include <qcheckbox.h> 00008 #include "Worksheet.h" 00009 #include "Dialog.h" 00010 00011 #include "FilterNETCDF.h" 00012 #include "FilterCDF.h" 00013 00014 class FileInfoDialog: public Dialog 00015 { 00016 Q_OBJECT 00017 public: 00018 FileInfoDialog(MainWin *mw, const char *name, QString filename); 00019 private slots: 00020 void updateVarListBox(); 00021 private: 00022 QListBox *varlb, *selvarlb; // listbox of all variables / for selected variable 00023 QLabel *varlabel; // label of selected variable 00024 FilterNETCDF ncf; // filter for netcdf files 00025 FilterCDF cdf; // filter for cdf files 00026 }; 00027 00028 #endif //FILEINFODIALOG_H