summaryrefslogtreecommitdiffstats
path: root/lib/libtqtrla/src/tqtrla.h
blob: 5ca20d971b2bb529f32429bafab5bb50d18535e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/***************************************************************************
 *   Copyright (C) 2012-2014 by Timothy Pearson                            *
 *   kb9vqf@pearsoncomputing.net                                           *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#ifndef TQTRLA_H
#define TQTRLA_H

#include <tqobject.h>
#include <tqptrlist.h>
#include <tqtimer.h>
#include <tqdatetime.h>

#include <tdeaction.h>

#include <tdeparts/part.h>

#include <tdekrbclientsocket.h>

// =============================================================================

typedef TQValueList<float> TQFloatList;
typedef TQValueList<double> TQDoubleList;
typedef TQValueList<TQ_INT32> TQInt32List;
typedef TQValueList<TQ_INT16> TQInt16List;

// =============================================================================

class KMdiMainFrm;

namespace KParts
{
	class RemoteInstrumentPartPrivate;

	class TDEPARTS_EXPORT RemoteInstrumentPart : public Part
	{
		Q_OBJECT

		public:
			RemoteInstrumentPart(TQObject *parent = 0, const char *name = 0);
			virtual ~RemoteInstrumentPart();
	
		public slots:
			virtual bool openURL( const KURL &url );
	
		public:
			KURL url() const { return m_url; }
			virtual bool closeURL();
			virtual TQPtrList<TDEAction> menuActionList();

		protected:
			TQStringList textForServerError(TQString shortError);
			TQ_ULONG maximumSocketDataChunkSize();
			void setUsingFixedSize(bool fixed);

		public:
			int connectToServer(TQString server);
			void disconnectFromServer();
			void setMDIMainForm(KMdiMainFrm* form);
			KMdiMainFrm* mdiMainForm();

		private:
			int getNewTicket();

		private slots:
			void finishConnectingToServer();
			virtual void connectionFinishedCallback();
			virtual void disconnectFromServerCallback();
			virtual void connectionStatusChangedCallback();

		protected slots:
			void close();
			void resize(TQSize size);
			void setStatusMessage(const TQString& message);

		signals:
			void statusMessageSet(const TQString&);
			void usingFixedSizeChanged(bool);
			void resizeToHintRequested();
	
		protected:
			KURL m_url;
			TQString m_clientLibraryName;

		protected:
			TDEKerberosClientSocket* m_socket;
			TQTimer* m_connectionTimer;
			bool connToServerConnecting;
			int connToServerState;
			TQTimer *connToServerTimeoutTimer;
			bool m_fixedSize;
			KMdiMainFrm* m_mdiMainForm;
			TQString m_hostName;
	
		private:
			RemoteInstrumentPartPrivate *d;
	};
}

// =============================================================================

typedef TQMemArray<float> TQFloatArray;

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const TQFloatArray &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, TQFloatArray &);
#endif

// =============================================================================

typedef TQMemArray<double> TQDoubleArray;

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const TQDoubleArray &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, TQDoubleArray &);
#endif

// =============================================================================

class ServiceType
{
	public:
		TQ_UINT32 type;
		TQString name;
		TQString description;
		TQString clientLibrary;
		int version;
		bool singleInstance;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const ServiceType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, ServiceType &);
#endif

typedef TQValueList<ServiceType> ServiceList;

Q_EXPORT bool operator==(const ServiceType &s1, const ServiceType &s2);

// =============================================================================

class StationType
{
	public:
		TQ_UINT32 id;
		TQ_UINT32 type;
		ServiceList services;
		TQString name;
		TQString description;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const StationType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, StationType &);
#endif

class StationList : public TQValueList<StationType>
{
	public:
		StationList();
		virtual ~StationList();

	public:
		StationList::iterator findByID(TQ_UINT32 id);
};

// =============================================================================

class SensorType
{
	public:
		TQ_UINT32 index;
		TQString name;
		TQString description;
		TQString units;
		double min;
		double max;
		double mininterval;
		double nominalinterval;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const SensorType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, SensorType &);
#endif

typedef TQValueList<SensorType> SensorList;

// =============================================================================

class TerminalServiceStatusType
{
	public:
		TQ_UINT32 protocolVersion;
		TQ_INT32 sessionID;
		TQString username;
		TQString serverName;
		TQ_INT32 serverPID;
		TQ_INT32 wmPID;
		TQ_INT32 state;
		TQ_INT32 display;
		TQDateTime loginStamp;
		TQDateTime activityStamp;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const TerminalServiceStatusType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, TerminalServiceStatusType &);
#endif

typedef TQValueList<TerminalServiceStatusType> TerminalServiceStatusList;

// =============================================================================

class WorkspaceServiceStatusType
{
	public:
		TQ_UINT32 protocolVersion;
		TQ_INT32 sessionID;
		TQ_INT32 stationID;
		TQString username;
		TQString realmname;
		TQ_INT32 serverID;
		TQ_INT32 serviceID;
		TQString stationName;
		TQDateTime loginStamp;
		TQDateTime terminateStamp;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const WorkspaceServiceStatusType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, WorkspaceServiceStatusType &);
#endif

typedef TQValueList<WorkspaceServiceStatusType> WorkspaceServiceStatusList;

// =============================================================================

class TerminalServiceAuthGroupType
{
	public:
		TQ_UINT32 protocolVersion;
		TQString groupName;
		TQStringList allowedServerNames;
		TQ_UINT32 maximumActiveSessionCount;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const TerminalServiceAuthGroupType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, TerminalServiceAuthGroupType &);
#endif

class TerminalServiceAuthGroupList : public TQValueList<TerminalServiceAuthGroupType>
{
	public:
		TerminalServiceAuthGroupList();
		virtual ~TerminalServiceAuthGroupList();

	public:
		TerminalServiceAuthGroupList::iterator findByName(TQString name);
};

// =============================================================================

class WorkspaceServiceAuthGroupType
{
	public:
		TQ_UINT32 protocolVersion;
		TQString groupName;
		TQInt32List allowedStationIDs;
};

#ifndef QT_NO_DATASTREAM
Q_EXPORT TQDataStream &operator<<(TQDataStream &, const WorkspaceServiceAuthGroupType &);
Q_EXPORT TQDataStream &operator>>(TQDataStream &, WorkspaceServiceAuthGroupType &);
#endif

class WorkspaceServiceAuthGroupList : public TQValueList<WorkspaceServiceAuthGroupType>
{
	public:
		WorkspaceServiceAuthGroupList();
		virtual ~WorkspaceServiceAuthGroupList();

	public:
		WorkspaceServiceAuthGroupList::iterator findByName(TQString name);
};

// =============================================================================

#endif // TQTRLA_H