Candidate_v1.7.0
        stable
      
      
        
          | 
            Last change
 on this file since e9f307 was             35302b, checked in by Frederik Heber <heber@…>, 12 years ago           | 
        
        
          | 
             
Added many files from project Seismolo. 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            1.5 KB
           | 
        
      
      
| Line |   | 
|---|
| 1 | /*
 | 
|---|
| 2 |  * QSeisData.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: Jan 30, 2011
 | 
|---|
| 5 |  *      Author: landvogt
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef QSEISDATA_HPP
 | 
|---|
| 9 | #define QSEISDATA_HPP
 | 
|---|
| 10 | 
 | 
|---|
| 11 | // include config.h
 | 
|---|
| 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 13 | #include <config.h>
 | 
|---|
| 14 | #endif
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #include <qwt_global.h>
 | 
|---|
| 17 | #include <qwt_data.h>
 | 
|---|
| 18 | #include <QtCore/QObject>
 | 
|---|
| 19 | #include <vector>
 | 
|---|
| 20 | 
 | 
|---|
| 21 | /**
 | 
|---|
| 22 |  * \class QSeisData
 | 
|---|
| 23 |  *
 | 
|---|
| 24 |  * This class gets its data from the QSeisParser
 | 
|---|
| 25 |  * class through the updateData() slot.
 | 
|---|
| 26 |  * The class itself emits a signal if its data
 | 
|---|
| 27 |  * changes which should call the corresponding update
 | 
|---|
| 28 |  * slots of the child QSeisPlotCurve objects.
 | 
|---|
| 29 |  *
 | 
|---|
| 30 |  * This class passes the request to fully parse a
 | 
|---|
| 31 |  * only through from its child QSeisPlotCurve class
 | 
|---|
| 32 |  * to its Corresponding QSeisParser class.
 | 
|---|
| 33 |  *
 | 
|---|
| 34 |  * This objects gets destroyed together with its parent
 | 
|---|
| 35 |  * object (QSeisPlotCurve).
 | 
|---|
| 36 |  *
 | 
|---|
| 37 |  * <the right place to implement display
 | 
|---|
| 38 |  *  around average etc.>
 | 
|---|
| 39 |  **/
 | 
|---|
| 40 | 
 | 
|---|
| 41 | class QSeisParser;
 | 
|---|
| 42 | 
 | 
|---|
| 43 | class QSeisData : public QObject, public QwtData
 | 
|---|
| 44 | {
 | 
|---|
| 45 |     Q_OBJECT
 | 
|---|
| 46 | 
 | 
|---|
| 47 | public:
 | 
|---|
| 48 |     QSeisData(QString name, quint32 columnNo);
 | 
|---|
| 49 |     QSeisData(std::vector<double> xValues, std::vector<double> yValues, QString name);
 | 
|---|
| 50 |     ~QSeisData();
 | 
|---|
| 51 |     double x(size_t i) const;
 | 
|---|
| 52 |     double y(size_t i) const;
 | 
|---|
| 53 |     QSeisData *copy() const;
 | 
|---|
| 54 |     size_t size() const;
 | 
|---|
| 55 | 
 | 
|---|
| 56 | private:
 | 
|---|
| 57 |     QString intName;
 | 
|---|
| 58 |     std::vector<double> xData;
 | 
|---|
| 59 |     std::vector<double> yData;
 | 
|---|
| 60 |     quint32 columnNumber;
 | 
|---|
| 61 |     void createCurve();
 | 
|---|
| 62 | 
 | 
|---|
| 63 | public slots:
 | 
|---|
| 64 |     void updateData(const std::vector< std::vector<double> > &newData);
 | 
|---|
| 65 | 
 | 
|---|
| 66 | signals:
 | 
|---|
| 67 |     void dataChanged(QwtData *newData);
 | 
|---|
| 68 |     void dataRequested();
 | 
|---|
| 69 |     void dataOutOfDate();
 | 
|---|
| 70 | };
 | 
|---|
| 71 | 
 | 
|---|
| 72 | #endif // QSEISDATA_HPP
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.