/*************************************************************************** modcalceclipticcoords.h - description ------------------- begin : Fri May 14 2004 copyright : (C) 2004 by Pablo de Vicente email : p.devicente@wanadoo.es ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #ifndef MODCALCECLIPTICCOORDS_H #define MODCALCECLIPTICCOORDS_H #include "modcalceclipticcoordsdlg.h" #include "dms.h" class TQString; /** * Class which implements the KStars calculator module to compute * geocentric ecliptic coordinates to/from geocentric equatorial coordinates. * * Inherits TQWidget *@author Pablo de Vicente */ class modCalcEclCoords : public modCalcEclCoordsDlg { Q_OBJECT public: modCalcEclCoords(TQWidget *p, const char *n); ~modCalcEclCoords(); void getEclCoords (void); void getEquCoords (void); double getEpoch( TQString t ); void showEquCoords(void); void showEclCoords(void); void EclToEqu(void); void EquToEcl(void); public slots: void slotClearCoords (void); void slotComputeCoords (void); void slotEclLatCheckedBatch(void); void slotEclLongCheckedBatch(void); void slotRaCheckedBatch(void); void slotDecCheckedBatch(void); void slotEpochCheckedBatch(void); void slotInputFile(void); void slotOutputFile(void); void slotRunBatch(); private: void equCheck(void); void eclCheck(void); void processLines( TQTextStream &is ); dms eclipLong, eclipLat, raCoord, decCoord; double epoch; bool eclInputCoords; }; #endif