1 /**************************************************************
3 Copyright (C) 1997 Oskar Swida
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 NOTE: This software is using the free software license of
23 the QT library v.1.30 from Troll Tech AS.
24 See the file LICENSE.QT.
27 To contact the author, write:
28 e-mail: swida@aragorn.pb.bialystok.pl
30 ************************************************************/
35 #include <QtGui/QMainWindow>
36 #include <QtGui/QListWidget>
37 #include <QtGui/QTextEdit>
38 #include <QtCore/QSocketNotifier>
39 #include <QtCore/QDir>
43 #include "ui/KernelWindow.h"
48 #define REMOTE_PATH "REMOTE"
50 #define MAXINSTANCES 256
69 /** Interpreter identifier */
71 /** Defines if interpreter is remote or not */
79 QSocketNotifier *notify;
80 /* IDs of my remote INT modules */
81 int RInstances[MAXINSTANCES];
82 /* Parent interpreter info */
93 ConnectEntry(char *s) {
97 ConnectEntry(const char *s) {
106 class QKernel : public QMainWindow, private Ui::KernelWindow {
114 QKernel(int argc, char **argv);
116 void WriteMessage(const char * msg);
120 void IntMessage(int);
123 virtual void closeEvent (QCloseEvent * e);
126 QList<InterpEntry*> Interpreters;
127 QList<ConnectEntry*> ConnectList;
130 * number of working interpreters
131 * @attention Currently not in use
136 * number of connected VLPs
138 int ActiveConnections;
140 * Indicates state of the Kernel Program. Is it locked or not.
149 QSocketNotifier *Net_Notify;
154 void loadConfig(const QString &fname);
155 void loadConfig(const char *);
157 void RunGraphModule(char*);
159 InterpEntry *findINTbySocket(int);
160 InterpEntry *findINTbyID(int);
161 InterpEntry *RunIntModule(char *ss, int r);
162 void RemoteInstance(InterpEntry*, int);
163 void CloseInstances(InterpEntry*);
166 * Sets QKernel menu entries to the given status
167 * @param locked status which will be set on the menu entries.
169 void setLocked(bool locked);
171 QString getConfigFilePath();
172 const char * getHomeDir();
173 const char * getRemoteDir();
175 const char * getNetModuleSocket();
176 const char * getGraphModuleSocket();
179 void on_actionExecute_triggered();
180 void on_actionKill_triggered();
181 void on_actionQuit_triggered();
183 void on_actionMessage_triggered();
184 void on_actionConnect_triggered();
185 void on_actionDisconnect_triggered();
186 void on_actionInfo_triggered();
188 void on_actionEditor_triggered();
189 void on_actionHelp_triggered();
190 void on_actionOptions_triggered();
191 void on_actionInfo_messages_triggered();
192 void on_actionLock_console_triggered();
193 void on_actionUnlock_console_triggered();
199 #endif /* VLP_KERNEL_H */