##// END OF EJS Templates
A lot of refactoring:...
A lot of refactoring: QLopPlot now handle more than one plot. File browser uses QFileSystemModel and QItemView Wrapped QCustomPlot.

File last commit:

r6:665de41c4c74 default
r6:665de41c4c74 default
Show More
cassinitoolsgui.h
31 lines | 536 B | text/x-c | CLexer
#ifndef CASSINITOOLSGUI_H
#define CASSINITOOLSGUI_H
#include <QWidget>
#include <folderview.h>
#include <filebrowser.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<FileBrowser*> fileBrowsers;
};
#endif // CASSINITOOLSGUI_H