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/telescopewizardprocess.h

74 lines
1.3 KiB

/* Telescope wizard
Copyright (C) 2003 Jasem Mutlaq (mutlaqja@ikarustech.com)
This application 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 TELESCOPEWIZARDPROCESS_H
#define TELESCOPEWIZARDPROCESS_H
#include <tqstringlist.h>
#include "telescopewizard.h"
class KStars;
class INDIMenu;
class INDIDriver;
class TQTimer;
class INDI_D;
class KProgressDialog;
class telescopeWizardProcess : public telescopeWizard
{
TQ_OBJECT
public:
telescopeWizardProcess( TQWidget* parent = 0, const char* name = 0);
~telescopeWizardProcess();
unsigned int currentPage;
enum { INTRO_P=0, MODEL_P=1, TELESCOPE_P=2, LOCAL_P=3, PORT_P=4 };
private:
KStars * ksw;
INDIMenu *indimenu;
INDIDriver *indidriver;
TQTimer *newDeviceTimer;
INDI_D *indiDev;
KProgressDialog *progressScan;
TQStringList portList;
TQString currentDevice;
int currentPort;
int timeOutCount;
bool INDIMessageBar;
bool linkRejected;
int establishLink();
void Reset();
public slots:
void processNext();
void processBack();
void newTime();
void newLocation();
void processPort();
void scanPorts();
void linkSuccess();
};
#endif