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
00027 #ifndef WINRESULTSOPTIONS_H
00028 #define WINRESULTSOPTIONS_H
00029
00030 #include <QtGui>
00031
00032 #include "ui_WinResultsOptions.h"
00033 #include "MonoStationDLLExport.h"
00034
00035 namespace MonoStation {
00036
00037 class StationResults;
00038
00039 class MONOSTATION_EXPORT WinResultsOptions : public QWidget, public Ui::WinResultsOptions
00040 {
00041 Q_OBJECT
00042 public:
00043 WinResultsOptions(QWidget* parent=0, Qt::WFlags fl=0);
00044
00045 void visibleLayers(const StationResults * sr) const;
00046 void setVisibleLayers(const StationResults * sr);
00047 int visibleLayers() const;
00048 void setVisibleLayers(const int v);
00049 private:
00050 QCheckBox * checkBox(int iLayer) const;
00051 void setChecked(int ilayer, bool visible);
00052 bool isChecked(int ilayer) const;
00053 };
00054
00055 }
00056
00057 #endif // WINRESULTSOPTIONS_H