scriptloader.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _script_loader_h
00020 #define _script_loader_h
00021 #include <qptrlist.h>
00022 #include <kmainwindow.h>
00023 #include <kaction.h>
00024 #include <kscript/scriptinterface.h>
00025
00026 class ScriptLoader : virtual public QObject
00027 {
00028 Q_OBJECT
00029 public:
00030
00031
00032 ScriptLoader(KMainWindow *parent=0);
00033 ~ScriptLoader();
00034
00035
00036
00037 KSelectAction *getScripts();
00038 public slots:
00039
00040
00041
00042 void runAction();
00043
00044
00045 void stopAction();
00046 signals:
00047 virtual void errors(QString messages);
00048 virtual void output(QString messages);
00049 virtual void done(int errorCode);
00050 private:
00051 QPtrList<KScriptInterface> m_scripts;
00052 KSelectAction *m_theAction;
00053 int m_currentSelection;
00054 KMainWindow *m_parent;
00055 };
00056 #endif
This file is part of the documentation for interfaces Library Version 3.2.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Mar 4 22:45:05 2004 by
doxygen 1.3.6-20040222 written by
Dimitri van Heesch, © 1997-2003