#ifndef _QCamAutoGuidageSimple_hpp_ #define _QCamAutoGuidageSimple_hpp_ #include "QCamAutoGuidage.hpp" #include "math.h" class ShiftInfo; #include #include #include #include /** basic tracking class. Do no prediction, dosn't do any calibration. Just try to follow the target. Need no mirror plan on the path from the lens to the cam. And the cam must not be upsidedown. */ class QCamAutoGuidageSimple : public QCamAutoGuidage { Q_OBJECT; public: QCamAutoGuidageSimple(); virtual QWidget * buildGUI(QWidget *parent=0); protected slots: /** Swap east and west */ void swapEW(bool swap) { ewSwapped_=swap;} /** Swap south and north */ void swapNS(bool swap) { nsSwapped_=swap;} /** center the target */ void setCenter(bool center) { centerMode_ = center; } void frameShift(const ShiftInfo & shift); void setMinShift(double v) { minShift_=v;} void setMaxShift(double v) { maxShift_=v;} void setMinShift(int v) { setMinShift((double)v);} void setMaxShift(int v) { setMaxShift((double)v);} signals: void shiftAlt(double); void shiftAsc(double); private: bool nsSwapped_; bool ewSwapped_; bool centerMode_; double minShift_; double maxShift_; }; class TrackingControl : public QHBox { Q_OBJECT; int min_; int max_; public: TrackingControl(QString label, QWidget * parent=0, const char * name=0, WFlags f=0 ); public slots: void setShift(double shift); void setMin(int min); void setMax(int max); void setMin(const QString &); void setMax(const QString &); void setMoveDir(MoveDir); signals: void minChanged(int); void maxChanged(int); private: QLabel label_; QLabel arrow_; QLCDNumber currentShift_; QLabel labelMin_; QLineEdit minShift_; QLabel labelMax_; QLineEdit maxShift_; }; #endif