00001 /*************************************************************************** 00002 ** 00003 ** This file is part of geopsyarray. 00004 ** 00005 ** This file may be distributed and/or modified under the terms of the 00006 ** GNU General Public License version 2 or 3 as published by the Free 00007 ** Software Foundation and appearing in the file LICENSE.GPL included 00008 ** in the packaging of this file. 00009 ** 00010 ** This file is distributed in the hope that it will be useful, but WITHOUT 00011 ** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 ** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 00013 ** more details. 00014 ** 00015 ** You should have received a copy of the GNU General Public License 00016 ** along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 ** 00018 ** See http://www.geopsy.org for more information. 00019 ** 00020 ** Created : 2007-03-27 00021 ** Authors: 00022 ** Marc Wathelet 00023 ** Marc Wathelet (LGIT, Grenoble, France) 00024 ** 00025 ***************************************************************************/ 00026 00027 #ifndef LINEARFKRESULTS_H 00028 #define LINEARFKRESULTS_H 00029 00030 #include <QGpGuiWave.h> 00031 00032 class LinearFKActiveArrayStations; 00033 00034 class LinearFKActiveResults : public GraphicSheetMenu 00035 { 00036 Q_OBJECT 00037 public: 00038 LinearFKActiveResults(QWidget* parent=0); 00039 ~LinearFKActiveResults(); 00040 00041 void createObjects(const QList<LinearFKActiveArrayStations *>& arrays); 00042 void setXAxis(const SamplingParameters& s); 00043 void setYAxis(Scale::Type t, double min, double max); 00044 void setWaveLengthLimit(int ig, double wl); 00045 void setLimits(); 00046 IrregularGrid2DPlot * gridLayer(int index) const {return _gridLayers[index];} 00047 LineLayer * curveLayer(int index) const {return _curveLayers[index];} 00048 public slots: 00049 void setPick(bool on); 00050 void autoPick(); 00051 void adjust(int ig, ModalCurve& curve, double min, double max, SamplingOptions options); 00052 void stackGrids(); 00053 void exportCurves(); 00054 signals: 00055 void newPlot(LineLayer * curveLayer, QString caption); 00056 void newCurve(int iGraph); 00057 private: 00058 bool selectAll(QString title); 00059 ModalLine * createReferenceLine(); 00060 00061 QVector<IrregularGrid2DPlot *> _gridLayers; 00062 QVector<LineLayer *> _curveLayers; 00063 QVector<DispersionLimitLayer *> _limitLayers; 00064 }; 00065 00066 #endif // LINEARFKRESULTS_H