summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/tools/modcalcangdist.h
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/tools/modcalcangdist.h')
-rw-r--r--kstars/kstars/tools/modcalcangdist.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/kstars/kstars/tools/modcalcangdist.h b/kstars/kstars/tools/modcalcangdist.h
new file mode 100644
index 00000000..27176945
--- /dev/null
+++ b/kstars/kstars/tools/modcalcangdist.h
@@ -0,0 +1,62 @@
+/***************************************************************************
+ modcalcapcoord.h - description
+ -------------------
+ begin : Sun May 30 2004
+ copyright : (C) 2004 by Pablo de Vicente
+ email : vicente@oan.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 MODCALCANGDIST_H
+#define MODCALCANGDIST_H
+
+#include "modcalcangdistdlg.h"
+#include <kapplication.h>
+
+/** Module to compute the angular distance between two points in the sky
+ *@author Pablo de Vicente
+ *@version 0.9
+ */
+
+class dms;
+class dmsBox;
+class SkyPoint;
+class QTextStream;
+
+class modCalcAngDist : public modCalcAngDistDlg {
+
+Q_OBJECT
+public:
+/**Constructor. */
+ modCalcAngDist(QWidget *p, const char *n);
+/**Destructor. */
+ ~modCalcAngDist();
+
+public slots:
+ void slotComputeDist();
+ void slotClearCoords();
+ void slotInputFile();
+ void slotOutputFile();
+ void slotRunBatch();
+
+private:
+ /** Process Lines **/
+ void processLines( QTextStream &istream );
+
+ /**@returns a SkyPoint constructed from the coordinates in the RA and Dec dmsBoxes. */
+ SkyPoint getCoords(dmsBox * rBox, dmsBox* dBox);
+
+ /**Fill the angular distance. */
+ void showDist ( dms dist );
+
+};
+
+#endif