summaryrefslogtreecommitdiffstats
path: root/lib/libtqtrla/src/tqtrla.h
blob: 1f1ca22d0ebd8c4600dc8b0955da841c632726b4 (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
/***************************************************************************
 *   Copyright (C) 2012 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 <kaction.h>

#include <kparts/part.h>

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

namespace KParts
{
	class RemoteInstrumentPartPrivate;

	class KPARTS_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<KAction> menuActionList();

		protected:
			TQStringList textForServerError(TQString shortError);

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

		signals:
			void statusMessageSet(const TQString&);
	
		protected:
			KURL m_url;
	
		private:
			RemoteInstrumentPartPrivate *d;
	};
}

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

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

typedef TQValueList<StationType> StationList;

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

#endif // TQTRLA_H