summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/indidriver.h
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/indidriver.h')
-rw-r--r--kstars/kstars/indidriver.h147
1 files changed, 147 insertions, 0 deletions
diff --git a/kstars/kstars/indidriver.h b/kstars/kstars/indidriver.h
new file mode 100644
index 00000000..8cb41b30
--- /dev/null
+++ b/kstars/kstars/indidriver.h
@@ -0,0 +1,147 @@
+/***************************************************************************
+ INDI Driver
+ -------------------
+ begin : Wed May 7th 2003
+ copyright : (C) 2001 by Jasem Mutlaq
+ email : mutlaqja@ikarustech.com
+ ***************************************************************************/
+/***************************************************************************
+ * *
+ * 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 INDIDRIVER_H
+#define INDIDRIVER_H
+
+#include <qstringlist.h>
+#include <kdialogbase.h>
+#include <unistd.h>
+#include <vector>
+
+#include "indi/lilxml.h"
+#include "devmanager.h"
+
+class KStars;
+
+class KListView;
+class KPopupMenu;
+class KProcess;
+
+struct INDIHostsInfo
+{
+ QString name;
+ QString hostname;
+ QString portnumber;
+ bool isConnected;
+ int mgrID;
+};
+
+class IDevice : public QObject
+{
+ Q_OBJECT
+
+ public:
+ IDevice(QString inLabel, QString inDriver, QString inVersion);
+ ~IDevice();
+
+ enum ServeMODE { M_LOCAL, M_SERVER };
+ QString label;
+ QString driver;
+ QString version;
+ QStringList serverBuffer;
+ int state;
+ int mode;
+ int indiPort;
+ bool managed;
+ int mgrID;
+ int deviceType;
+ KProcess *proc;
+
+ /* Telescope specific attributes */
+ double focal_length;
+ double aperture;
+
+ void restart();
+
+ public slots:
+ void processstd(KProcess *proc, char* buffer, int buflen);
+
+ signals:
+ void newServerInput();
+
+};
+
+class INDIDriver : public devManager
+{
+
+ Q_OBJECT
+
+ public:
+
+ INDIDriver(QWidget * parent = 0);
+ ~INDIDriver();
+
+ KListView* deviceContainer;
+
+ bool readXMLDriver();
+
+ bool buildDriversList( XMLEle *root, char errmsg[]);
+ bool buildDeviceGroup (XMLEle *root, char errmsg[]);
+ bool buildDriverElement(XMLEle *root, QListViewItem *DGroup, int groupType, char errmsg[]);
+
+ QListViewItem *lastGroup;
+ QListViewItem *lastDevice;
+
+ QStringList driversList;
+
+ QPixmap runningPix;
+ QPixmap stopPix;
+ QPixmap connected;
+ QPixmap disconnected;
+ QPixmap establishConnection;
+ QPixmap localMode;
+ QPixmap serverMode;
+
+ KPopupMenu *ClientpopMenu;
+ KPopupMenu *LocalpopMenu;
+
+ int lastPort;
+
+ bool runDevice(IDevice *dev);
+ void removeDevice(IDevice *dev);
+ void removeDevice(QString deviceLabel);
+ void saveDevicesToDisk();
+ int getINDIPort();
+ int activeDriverCount();
+ bool isDeviceRunning(QString deviceLabel);
+
+ void saveHosts();
+
+ std::vector <IDevice *> devices;
+
+ KStars *ksw;
+
+
+public slots:
+ void updateMenuActions();
+ void ClientprocessRightButton( QListViewItem *, const QPoint &, int );
+ void LocalprocessRightButton( QListViewItem *, const QPoint &, int );
+ void processDeviceStatus(int);
+ void processHostStatus(int);
+ void addINDIHost();
+ void modifyINDIHost();
+ void removeINDIHost();
+ void shutdownHost(int mgrID);
+ void updateLocalButtons();
+ void updateClientButtons();
+ void activateRunService();
+ void activateStopService();
+ void activateHostConnection();
+ void activateHostDisconnection();
+};
+
+#endif