[seiscomp, scanloc] Install, add .gitignore
This commit is contained in:
132
include/seiscomp/gui/datamodel/originlocatormap.h
Normal file
132
include/seiscomp/gui/datamodel/originlocatormap.h
Normal file
@ -0,0 +1,132 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) gempa GmbH *
|
||||
* All rights reserved. *
|
||||
* Contact: gempa GmbH (seiscomp-dev@gempa.de) *
|
||||
* *
|
||||
* GNU Affero General Public License Usage *
|
||||
* This file may be used under the terms of the GNU Affero *
|
||||
* Public License version 3.0 as published by the Free Software Foundation *
|
||||
* and appearing in the file LICENSE included in the packaging of this *
|
||||
* file. Please review the following information to ensure the GNU Affero *
|
||||
* Public License version 3.0 requirements will be met: *
|
||||
* https://www.gnu.org/licenses/agpl-3.0.html. *
|
||||
* *
|
||||
* Other Usage *
|
||||
* Alternatively, this file may be used in accordance with the terms and *
|
||||
* conditions contained in a signed written agreement between you and *
|
||||
* gempa GmbH. *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#ifndef SEISCOMP_GUI_ORIGINLOCATORMAP_H
|
||||
#define SEISCOMP_GUI_ORIGINLOCATORMAP_H
|
||||
|
||||
|
||||
#include <QtGui>
|
||||
#include <seiscomp/gui/map/mapwidget.h>
|
||||
#ifndef Q_MOC_RUN
|
||||
#include <seiscomp/datamodel/origin.h>
|
||||
#endif
|
||||
#include <seiscomp/gui/qt.h>
|
||||
|
||||
|
||||
namespace Seiscomp {
|
||||
|
||||
namespace DataModel {
|
||||
|
||||
DEFINE_SMARTPOINTER(Station);
|
||||
|
||||
}
|
||||
|
||||
namespace Gui {
|
||||
|
||||
namespace Map {
|
||||
|
||||
class AnnotationLayer;
|
||||
|
||||
}
|
||||
|
||||
class OriginSymbol;
|
||||
|
||||
class SC_GUI_API OriginLocatorMap : public MapWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
OriginLocatorMap(const MapsDesc &maps,
|
||||
QWidget *parent = 0, Qt::WindowFlags f = Qt::WindowFlags());
|
||||
|
||||
OriginLocatorMap(Map::ImageTree* mapTree,
|
||||
QWidget *parent = 0, Qt::WindowFlags f = Qt::WindowFlags());
|
||||
|
||||
//! Sets the maximum distance for stations to be displayed
|
||||
//! if they are not part of the origin
|
||||
void setStationsMaxDist(double);
|
||||
|
||||
//! Make the station state changeable interactively
|
||||
//! The default is TRUE
|
||||
void setStationsInteractive(bool);
|
||||
void setOrigin(DataModel::Origin* o);
|
||||
|
||||
bool waveformPropagation() const;
|
||||
bool drawStations() const;
|
||||
|
||||
void setArrivalState(int id, bool state);
|
||||
void setStationState(const std::string& code, bool state);
|
||||
|
||||
void setOriginCreationEnabled(bool enable);
|
||||
|
||||
void addLayer(Map::Layer *layer);
|
||||
|
||||
|
||||
public slots:
|
||||
void setDrawStations(bool);
|
||||
void setDrawStationLines(bool);
|
||||
void setDrawStationAnnotations(bool);
|
||||
void setWaveformPropagation(bool);
|
||||
|
||||
|
||||
signals:
|
||||
#ifndef Q_MOC_RUN
|
||||
// This is in particular for Qt 4 where signals are protected by default.
|
||||
public:
|
||||
#endif
|
||||
void hoverArrival(int id);
|
||||
|
||||
signals:
|
||||
void clickedArrival(int id);
|
||||
void arrivalChanged(int id, bool state);
|
||||
void clickedStation(const std::string &net, const std::string &code);
|
||||
void stationChanged(const std::string &stationCode, bool state);
|
||||
void artificialOriginRequested(const QPointF &epicenter,
|
||||
const QPoint &dialogPos);
|
||||
|
||||
|
||||
protected:
|
||||
void mousePressEvent(QMouseEvent*);
|
||||
void mouseDoubleClickEvent(QMouseEvent*);
|
||||
void contextMenuEvent(QContextMenuEvent*);
|
||||
|
||||
|
||||
private:
|
||||
void addArrival();
|
||||
void setStationState(int i, bool state);
|
||||
|
||||
|
||||
private:
|
||||
DataModel::OriginPtr _origin;
|
||||
OriginSymbol *_originSymbol;
|
||||
Map::Layer *_symbolLayer;
|
||||
Map::AnnotationLayer *_annotationLayer;
|
||||
bool _waveformPropagation{false};
|
||||
bool _enabledCreateOrigin{false};
|
||||
QVector<int> _arrivals;
|
||||
std::map<std::string, int> _stationCodes;
|
||||
double _stationsMaxDist{-1};
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user