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 "FilterAUDIOFILE.h" 00013 #include "FilterCDF.h" 00014 00015 class FileInfoDialog: public Dialog 00016 { 00017 Q_OBJECT 00018 public: 00019 FileInfoDialog(const char *name, QString filename); 00020 private slots: 00021 void updateVarListBox(); 00022 private: 00023 QListBox *varlb, *selvarlb; // listbox of all variables / for selected variable 00024 QLabel *varlabel; // label of selected variable 00025 FilterNETCDF ncf; // filter for netcdf files 00026 FilterAUDIOFILE auf; // filter for audiofile files 00027 FilterCDF cdf; // filter for cdf files 00028 }; 00029 00030 #endif //FILEINFODIALOG_H