##// END OF EJS Templates
Added Python Console and some Wrappers....
Added Python Console and some Wrappers. More code cleaning, WIP.

File last commit:

r5:92e4585e8fab default
r5:92e4585e8fab default
Show More
cassinitoolsgui.h
30 lines | 509 B | text/x-c | CLexer
#ifndef CASSINITOOLSGUI_H
#define CASSINITOOLSGUI_H
#include <QWidget>
#include <folderview.h>
namespace Ui {
class CassiniToolsGUI;
}
class CassiniToolsGUI : public QWidget
{
Q_OBJECT
public:
explicit CassiniToolsGUI(QWidget *parent = 0);
~CassiniToolsGUI();
protected:
void changeEvent(QEvent *e);
private slots:
void addFolderView();
void plotFile(const QString &File);
private:
Ui::CassiniToolsGUI *ui;
QList<FolderView*> folderViews;
};
#endif // CASSINITOOLSGUI_H