00001 #ifndef ECLIPSEFINDERDLG_H 00002 #define ECLIPSEFINDERDLG_H 00003 #include "eclipsefinderdlgbase.uic.h" 00004 #include <qpoint.h> 00005 00006 class QListViewItem; 00007 00008 class CelestiaCore; 00009 00010 class EclipseFinderDlg : public EclipseFinderDlgBase 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 EclipseFinderDlg( QWidget* parent = 0, CelestiaCore *appCore = 0 ); 00016 ~EclipseFinderDlg(); 00017 00018 public slots: 00019 void search(); 00020 void gotoEclipse(QListViewItem* item, const QPoint& p, int col); 00021 00022 CelestiaCore* appCore; 00023 }; 00024 00025 #endif // ECLIPSEFINDERDLG_H
1.4.1