moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kstars / kstars / opsadvanced.h
blobfd5596eed2ecc56b1c37e85140ee8b5d06a3e4b7
1 /***************************************************************************
2 opsadvanced.h - K Desktop Planetarium
3 -------------------
4 begin : Sun 14 Mar 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 OPSADVANCED_H
18 #define OPSADVANCED_H
20 #include "opsadvancedui.h"
22 /**@class OpsAdvanced
23 *The Advanced Tab of the Options window. In this Tab the user can configure
24 *advanced behaviors of the program, including:
25 *@li Whether some objects are hidden when the map is moving (and which objects)
26 *@li Whether positions are corrected for atmospheric refraction
27 *@li Whether a slewing animation is used to move the Focus position
28 *@li Whether centered objects are automatically labeled
29 *@li whether a "transient" label is attached when the mouse "hovers" at an object.
30 *@author Jason Harris
31 *@version 1.0
34 class KStars;
36 class OpsAdvanced : public OpsAdvancedUI
38 Q_OBJECT
40 public:
41 OpsAdvanced( QWidget *parent=0, const char *name=0, WFlags fl = 0 );
42 ~OpsAdvanced();
44 private slots:
45 void slotChangeTimeScale( float newScale );
46 void slotToggleHideOptions();
48 private:
49 KStars *ksw;
52 #endif //OPSADVANCED_H