moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kstars / kstars / opssolarsystem.h
blobe43fd8b7d6d6e0dfe43fa2cc6141649b97c488ce
1 /***************************************************************************
2 opssolarsystem.h - K Desktop Planetarium
3 -------------------
4 begin : Sun 22 Aug 2004
5 copyright : (C) 2004 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 OPSSOLARSYSTEM_H
18 #define OPSSOLARSYSTEM_H
20 #include <opssolarsystemui.h>
22 class KStars;
24 /**@class OpsSolarSystem
25 *The Solar System page for the Options window. This page allows the user
26 *to modify display of solar system bodies in KStars, including the
27 *major planets, the Sun and Moon, and the comets and asteroids.
28 *@short The Solar System page of the Options window.
29 *@author Jason Harris
30 *@version 1.0
32 class OpsSolarSystem : public OpsSolarSystemUI
34 Q_OBJECT
36 public:
37 OpsSolarSystem( QWidget *parent=0, const char *name=0, WFlags fl = 0 );
38 ~OpsSolarSystem();
40 private slots:
41 void slotAsteroidWidgets(bool on);
42 void slotCometWidgets(bool on);
43 void slotSelectPlanets();
45 private:
46 KStars *ksw;
49 #endif