mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 04:50:34 -04:00 
			
		
		
		
	
		
			
	
	
		
			33 lines
		
	
	
		
			616 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			33 lines
		
	
	
		
			616 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | #ifndef ASTRO_H
 | ||
|  | #define ASTRO_H
 | ||
|  | 
 | ||
|  | #include <QWidget>
 | ||
|  | #include <QDateTime>
 | ||
|  | 
 | ||
|  | namespace Ui { | ||
|  |   class Astro; | ||
|  | } | ||
|  | 
 | ||
|  | class Astro : public QWidget | ||
|  | { | ||
|  |   Q_OBJECT | ||
|  | 
 | ||
|  | public: | ||
|  |   explicit Astro (QString const& settings_filename, QWidget *parent = 0); | ||
|  |   void astroUpdate(QDateTime t, QString mygrid, QString hisgrid, | ||
|  |                    int fQSO, int nsetftx, int ntxFreq, QString azelDir, double xavg); | ||
|  |   void setFontSize(int n); | ||
|  |   ~Astro (); | ||
|  | 
 | ||
|  | private slots: | ||
|  |   void on_cbOnOff_clicked(bool checked); | ||
|  |   void on_cbAutoCycle_clicked(bool checked); | ||
|  | 
 | ||
|  | private: | ||
|  |   Ui::Astro *ui; | ||
|  |   QString m_settings_filename; | ||
|  |   QString m_AzElDir0; | ||
|  | }; | ||
|  | 
 | ||
|  | #endif
 |