moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kstars / kstars / tools / jmoontool.h
blob57ba53abe08c02b7fe51204387b1a9f9cf83d75e
1 /***************************************************************************
2 jmoontool.h - Display overhead view of the solar system
3 -------------------
4 begin : Sun May 25 2003
5 copyright : (C) 2003 by Jason Harris
6 email : jharris@30doradus.org
7 ***************************************************************************/
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
17 #ifndef JMOONTOOL_H
18 #define JMOONTOOL_H
20 #include <kdialogbase.h>
21 #include "kstarsplotwidget.h"
23 class KStars;
25 /**@class JMoonTool
26 *@short Display the positions of Jupiter's moons as a function of time
27 *@version 1.0
28 *@author Jason Harris
30 class JMoonTool : public KDialogBase
32 Q_OBJECT
33 public:
34 JMoonTool(QWidget *parent = 0, const char *name = 0);
35 ~JMoonTool();
37 protected:
38 virtual void keyPressEvent( QKeyEvent *e );
40 private:
41 void initPlotObjects();
42 KStarsPlotWidget *pw;
43 KStars *ksw;
44 QString colJp, colIo, colEu, colGn, colCa;
47 #endif