2008-10-08 22:11:27 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2008 by Peter Dahlberg *
|
|
|
|
|
* pdahlberg@gmail.com *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
#ifndef GRAPHICSELLIPSEITEM_H
|
|
|
|
|
#define GRAPHICSELLIPSEITEM_H
|
|
|
|
|
|
|
|
|
|
#include <QGraphicsEllipseItem>
|
2008-11-02 20:34:58 +00:00
|
|
|
#include <QObject>
|
2008-10-08 22:11:27 +00:00
|
|
|
class ProbeChargeWidget;
|
2008-11-11 20:31:04 +00:00
|
|
|
class QPainterPath;
|
|
|
|
|
class QGraphicsPathItem;
|
2008-10-08 22:11:27 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@author Peter Dahlberg <pdahlberg@gmail.com>
|
|
|
|
|
*/
|
2008-11-02 20:34:58 +00:00
|
|
|
|
2008-10-08 22:11:27 +00:00
|
|
|
class GraphicsEllipseItem : public QObject , public QGraphicsEllipseItem {
|
2008-11-02 20:34:58 +00:00
|
|
|
Q_OBJECT
|
2008-10-08 22:11:27 +00:00
|
|
|
public:
|
|
|
|
|
GraphicsEllipseItem();
|
|
|
|
|
QWidget* getDockWidget() const;
|
|
|
|
|
|
|
|
|
|
~GraphicsEllipseItem();
|
2008-10-11 23:16:51 +00:00
|
|
|
QList<QPointF> * getCurrProbePath();
|
2008-11-02 20:34:58 +00:00
|
|
|
|
|
|
|
|
double getCharge() const;
|
|
|
|
|
double getStartSpeedX() const;
|
|
|
|
|
double getStartSpeedY() const;
|
|
|
|
|
|
|
|
|
|
//! Gibt die Masse zurück
|
|
|
|
|
/*!
|
|
|
|
|
\param speed alles != 0 relativistisch
|
|
|
|
|
*/
|
|
|
|
|
double getMasse(double speed);
|
2008-10-11 23:16:51 +00:00
|
|
|
|
2008-11-11 20:31:04 +00:00
|
|
|
QPainterPath getFlightPath() const;
|
2008-10-08 22:11:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void mousePressEvent ( QGraphicsSceneMouseEvent *event );
|
|
|
|
|
void timerEvent ( QTimerEvent * event );
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QList<QPointF> *currProbePath;
|
|
|
|
|
///Liste Der Geschwindigkeitsanteile in x-richtung
|
|
|
|
|
QList<double> *speedListX;
|
|
|
|
|
///Liste Der Geschwindigkeitsanteile in y-richtung
|
|
|
|
|
QList<double> *speedListY;
|
|
|
|
|
///Masse der Probeladung in kg
|
|
|
|
|
double masse;
|
|
|
|
|
///Ladung der Probleadung in As
|
|
|
|
|
double charge;
|
|
|
|
|
///Zugeordnetes Probe Charge Widget
|
|
|
|
|
ProbeChargeWidget* myProbeChargeWidget;
|
2008-11-02 20:34:58 +00:00
|
|
|
///Startgeschwindigkeit des teilchens in x-Richtung
|
|
|
|
|
double startSpeedX;
|
|
|
|
|
///Startgeschwindigkeit des teilchens in y-Richtung
|
|
|
|
|
double startSpeedY;
|
2008-10-08 22:11:27 +00:00
|
|
|
|
2008-11-06 21:05:13 +00:00
|
|
|
QPointF myScenePos;
|
|
|
|
|
|
2008-11-11 20:31:04 +00:00
|
|
|
///Pfad der Flugbahn
|
|
|
|
|
QPainterPath flightPath;
|
2008-10-08 22:11:27 +00:00
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
//! Berechnet die Bewegung der Probeladung
|
|
|
|
|
/*!
|
|
|
|
|
\param steps Anzahl der auszufürenden Schriite
|
|
|
|
|
*/
|
2008-11-06 21:05:13 +00:00
|
|
|
void calculateProbePath (QPointF startPoint = QPointF(0,0));
|
2008-10-08 22:11:27 +00:00
|
|
|
|
2008-10-11 23:16:51 +00:00
|
|
|
void setMasse ( const double& theValue );
|
2008-10-08 22:11:27 +00:00
|
|
|
|
2008-11-06 21:05:13 +00:00
|
|
|
void setCharge ( const double& theValue );
|
2008-11-02 20:34:58 +00:00
|
|
|
|
|
|
|
|
void setStartSpeedX ( double theValue );
|
|
|
|
|
void setStartSpeedY ( double theValue );
|
2008-11-06 21:05:13 +00:00
|
|
|
void setScenePosY(double newPosY);
|
|
|
|
|
void setScenePosX(double newPosX);
|
|
|
|
|
void handleSceneChange(const QList<QRectF> & /*region*/);
|
2008-11-11 20:31:04 +00:00
|
|
|
|
|
|
|
|
void setFlightPath ( const QPainterPath& theValue );
|
|
|
|
|
|
2008-11-02 20:34:58 +00:00
|
|
|
signals:
|
|
|
|
|
void startSpeedXChanged(double speed);
|
|
|
|
|
void startSpeedYChanged(double speed);
|
|
|
|
|
void masseChanged(double masse);
|
|
|
|
|
void chargeChanged(double Charge);
|
2008-11-06 21:05:13 +00:00
|
|
|
void ScenePosChanged(QPointF newpos);
|
|
|
|
|
void ScenePosXChanged(double newX);
|
|
|
|
|
void ScenePosYChanged(double newY);
|
2008-10-08 22:11:27 +00:00
|
|
|
|
|
|
|
|
|
2008-11-02 20:34:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-10-08 22:11:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|