00001 // wineclipses.h by Kendrix <kendrix@wanadoo.fr> 00002 // 00003 // Copyright (C) 2001, Chris Laurel <claurel@shatters.net> 00004 // 00005 // Compute Solar Eclipses for our Solar System planets 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 00012 #ifndef _WINECLIPSES_H_ 00013 #define _WINECLIPSES_H_ 00014 00015 #include <vector> 00016 00017 #include "celestiacore.h" 00018 00019 00020 class EclipseFinderDialog 00021 { 00022 public: 00023 EclipseFinderDialog(HINSTANCE, HWND, CelestiaCore*); 00024 00025 public: 00026 CelestiaCore* appCore; 00027 HWND parent; 00028 HWND hwnd; 00029 00030 std::string strPlaneteToFindOn; 00031 SYSTEMTIME fromTime, toTime; 00032 double TimetoSet_; 00033 Body* BodytoSet_; 00034 bool bSolar; 00035 }; 00036 00037 #endif // _WINECLIPSES_H_ 00038
1.4.1