ScriptWindow.h

Go to the documentation of this file.
00001 /***************************************************************************
00002     File                 : ScriptWindow.h
00003     Project              : QtiPlot
00004     --------------------------------------------------------------------
00005     Copyright            : (C) 2006 by Ion Vasilief, 
00006                            Tilman Hoener zu Siederdissen,
00007                            Knut Franke
00008     Email (use @ for *)  : ion_vasilief*yahoo.fr, thzs*gmx.net
00009     Description          : Python script window
00010                            
00011  ***************************************************************************/
00012 
00013 /***************************************************************************
00014  *                                                                         *
00015  *  This program is free software; you can redistribute it and/or modify   *
00016  *  it under the terms of the GNU General Public License as published by   *
00017  *  the Free Software Foundation; either version 2 of the License, or      *
00018  *  (at your option) any later version.                                    *
00019  *                                                                         *
00020  *  This program is distributed in the hope that it will be useful,        *
00021  *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
00022  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
00023  *  GNU General Public License for more details.                           *
00024  *                                                                         *
00025  *   You should have received a copy of the GNU General Public License     *
00026  *   along with this program; if not, write to the Free Software           *
00027  *   Foundation, Inc., 51 Franklin Street, Fifth Floor,                    *
00028  *   Boston, MA  02110-1301  USA                                           *
00029  *                                                                         *
00030  ***************************************************************************/
00031 #ifndef SCRIPTWINDOW_H
00032 #define SCRIPTWINDOW_H
00033 
00034 #include "ScriptEdit.h"
00035 
00036 #include <QMainWindow>
00037 #include <QMenu>
00038 #include <QCloseEvent>
00039 class ScriptingEnv;
00040 class ApplicationWindow;
00041 class QAction;
00042 
00044 class ScriptWindow: public QMainWindow
00045 {
00046     Q_OBJECT
00047 
00048 public:
00049         ScriptWindow(ScriptingEnv *env, ApplicationWindow *app);
00050         ~ScriptWindow(){exit(0);};
00051 
00052 public slots:
00053         void newScript();
00054         void open(const QString& fn = QString());
00055         void save();
00056         void saveAs();
00057         void languageChange();
00058         virtual void setVisible(bool visible);
00059 
00060         void executeAll(){te->executeAll();};
00061         
00062 private slots:
00063         void setAlwaysOnTop(bool on);
00064 
00065 signals:
00066         void visibilityChanged(bool visible);
00067 
00068 private:
00069         void moveEvent( QMoveEvent* );
00070         void resizeEvent( QResizeEvent* );
00071 
00072         void initMenu();
00073         void initActions();
00074         ScriptEdit *te;
00075         ApplicationWindow *d_app;
00076 
00077         QString fileName;
00078 
00079         QMenu *file, *edit, *run, *windowMenu;
00080         QAction *actionNew, *actionUndo, *actionRedo, *actionCut, *actionCopy, *actionPaste;
00081         QAction *actionExecute, *actionExecuteAll, *actionEval, *actionPrint, *actionOpen;
00082         QAction *actionSave, *actionSaveAs;
00083         QAction *actionAlwaysOnTop, *actionHide;
00084 };
00085 
00086 #endif

Generated on Thu Feb 7 13:59:27 2008 for QtiPlot by  doxygen 1.5.4