summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/kswizard.h
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/kswizard.h')
-rw-r--r--kstars/kstars/kswizard.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/kstars/kstars/kswizard.h b/kstars/kstars/kswizard.h
new file mode 100644
index 00000000..f822149a
--- /dev/null
+++ b/kstars/kstars/kswizard.h
@@ -0,0 +1,89 @@
+/***************************************************************************
+ kswizard.h - description
+ -------------------
+ begin : Wed 28 Jan 2004
+ copyright : (C) 2004 by Jason Harris
+ email : kstars@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 KSWIZARD_H
+#define KSWIZARD_H
+
+#include <qmemarray.h>
+#include "kswizardui.h"
+
+class GeoLocation;
+
+/**
+ *@class KSWizard
+ *The Setup Wizard will be automatically opened when KStars runs
+ *for the first time. It allows the user to set up some basic parameters:
+ *@li Geographic Location
+ *@li Download extra data files
+ *@author Jason Harris
+ *@version 1.0
+ */
+
+class KStars;
+class GeoLocation;
+
+class KSWizard : public KSWizardUI
+{
+Q_OBJECT
+public:
+ /**
+ *Constructor
+ *@p parent pointer to the parent widget
+ *@p name name for the KSWizard object
+ */
+ KSWizard( QWidget *parent=0, const char *name=0 );
+
+ /**Destructor */
+ ~KSWizard();
+
+ /**
+ *@return pointer to the geographic location selected by the user
+ */
+ GeoLocation* geo() const { return Geo; }
+
+private slots:
+ /**
+ *Set the geo pointer to the user's selected city, and display
+ *its longitude and latitude in the window.
+ *@note called when the highlighted city in the list box changes
+ */
+ void slotChangeCity();
+
+ /**
+ *Display only those cities which meet the user's search criteria
+ *in the city list box.
+ *@note called when one of the name filters is modified
+ */
+ void slotFilterCities();
+
+//Uncomment if we ever need the telescope page...
+// void slotTelescopeSetup();
+
+private:
+ /**
+ *@short Initialize the geographic location page.
+ *Populate the city list box, and highlight the current location in the list.
+ */
+ void initGeoPage();
+
+ KStars *ksw;
+ QMemArray<int> GeoID;
+ GeoLocation *Geo;
+ QPtrList<GeoLocation> filteredCityList;
+};
+
+#endif