You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kstars/kstars/tools/modcalcjd.h

67 lines
1.8 KiB

/***************************************************************************
modcalcjd.h - description
-------------------
begin : Tue Jan 15 2002
copyright : (C) 2002 by Pablo de Vicente
email : vicente@oan.es
***************************************************************************/
/***************************************************************************
* *
* 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 MODCALCJD_H
#define MODCALCJD_H
#include <tqvbox.h>
#include <tdeapplication.h>
#include "modcalcjddlg.h"
/**
* Class for KStars module which computes JD, MJD and Date/Time from the
* any of the other entries.
*
* Inherits TQVBox
*@author Pablo de Vicente
*@version 0.9
*/
class TQWidget;
class VBox;
class KStarsDateTime;
class modCalcJD : public modCalcJdDlg
{
Q_OBJECT
public:
modCalcJD(TQWidget *p, const char *n);
~modCalcJD();
void computeFromCalendar (void);
void computeFromMjd (void);
void computeFromJd (void);
KStarsDateTime getDateTime (void);
public slots:
void slotComputeTime(void);
void slotClearTime(void);
void showCurrentTime(void);
private:
/** Shows Julian Day in the Box */
void showJd(long double jd);
/** Shows the modified Julian Day in the Box */
void showMjd(long double mjd);
};
#endif