00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _SCRIPTCONSOLE_HPP_
00021 #define _SCRIPTCONSOLE_HPP_
00022
00023 #include <QObject>
00024 #include "StelDialog.hpp"
00025
00026 class Ui_scriptConsoleForm;
00027 class StelScriptSyntaxHighlighter;
00028
00029 class ScriptConsole : public StelDialog
00030 {
00031 Q_OBJECT
00032 public:
00033 ScriptConsole();
00034 virtual ~ScriptConsole();
00035 void languageChanged();
00037 void styleChanged();
00038
00039 public slots:
00040 void runScript();
00041 void loadScript();
00042 void saveScript();
00043 void clearButtonPressed();
00044 void preprocessScript();
00045 void scriptEnded();
00046 void appendLogLine(const QString& s);
00047 void includeBrowse();
00048 void quickRun(int idx);
00049 void rowColumnChanged();
00050
00051 protected:
00052 Ui_scriptConsoleForm* ui;
00053
00055 virtual void createDialogContent();
00056
00057 private:
00058 QString getFileMask();
00059 StelScriptSyntaxHighlighter* highlighter;
00060
00061 };
00062
00063 #endif // _SCRIPTCONSOLE_HPP_