summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/opscatalog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/opscatalog.h')
-rw-r--r--kstars/kstars/opscatalog.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/kstars/kstars/opscatalog.h b/kstars/kstars/opscatalog.h
new file mode 100644
index 00000000..dd33f60a
--- /dev/null
+++ b/kstars/kstars/opscatalog.h
@@ -0,0 +1,65 @@
+/***************************************************************************
+ opscatalog.h - K Desktop Planetarium
+ -------------------
+ begin : Sun Feb 29 2004
+ copyright : (C) 2004 by Jason Harris
+ email : jharris@30doradus.org
+ ***************************************************************************/
+/***************************************************************************
+ * *
+ * 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 OPSCATALOG_H
+#define OPSCATALOG_H
+
+#include "opscatalogui.h"
+
+/**@class OpsCatalog
+ *The Catalog page for the Options window. This page allows the user
+ *to modify display of the major object catalogs in KStars:
+ *@li Hipparcos/Tycho Star Catalog
+ *@li Messier Catalog
+ *@li NGC/IC Catalogs
+ *@li Any Custom catalogs added by the user.
+ *
+ *@short Catalog page of the Options window.
+ *@author Jason Harris
+ *@version 1.0
+ */
+
+class QWidget;
+class KStars;
+class QCheckListItem;
+
+class OpsCatalog : public OpsCatalogUI
+{
+ Q_OBJECT
+
+public:
+ OpsCatalog( QWidget *parent=0, const char *name=0, WFlags fl = 0 );
+ ~OpsCatalog();
+
+private slots:
+ void updateDisplay();
+ void selectCatalog();
+ void slotAddCatalog();
+ void slotLoadCatalog();
+ void slotRemoveCatalog();
+ void slotSetDrawStarMagnitude(double newValue);
+ void slotSetDrawStarZoomOutMagnitude(double newValue);
+ void slotStarWidgets(bool on);
+
+private:
+ void insertCatalog( const QString & filename );
+
+ QCheckListItem *showMessier, *showMessImages, *showNGC, *showIC;
+ KStars *ksw;
+};
+
+#endif //OPSCATALOG_H
+