Home · All Namespaces · All Classes · Functions · Coding Style · Scripting · Plugins · File Structure

gui/ScriptConsole.hpp

00001 /*
00002  * Stellarium
00003  * Copyright (C) 2009 Matthew Gates
00004  * 
00005  * This program is free software; you can redistribute it and/or
00006  * modify it under the terms of the GNU General Public License
00007  * as published by the Free Software Foundation; either version 2
00008  * of the License, or (at your option) any later version.
00009  * 
00010  * This program is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  * 
00015  * You should have received a copy of the GNU General Public License
00016  * along with this program; if not, write to the Free Software
00017  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
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_

Generated on Mon Mar 22 09:55:38 2010 for Stellarium by  doxygen 1.5.5