##// 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
cassinitools.h
40 lines | 1.0 KiB | text/x-c | CLexer
Added Python Console and some Wrappers....
r5 #ifndef CASSINITOOLS_H
#define CASSINITOOLS_H
#include <QObject>
#include <QWidget>
#include <qlopservice.h>
#include <cassinitoolsgui.h>
#include <cassinidatafile.h>
#include <qlopdata.h>
A lot of refactoring:...
r6 #include <SocExplorerPlot.h>
Added Python Console and some Wrappers....
r5
class CassiniTools: public QLopService
{
Q_OBJECT
private:
static CassiniTools* _self;
static QDockWidget* m_gui;
static CassiniToolsGUI* m_CassiniToolsGUI;
static CassiniDataFile* m_dataFile;
A lot of refactoring:...
r6 static int m_defaultPlot;
Added Python Console and some Wrappers....
r5 CassiniTools(bool noGUI=false, QObject *parent=0);
~CassiniTools();
A lot of refactoring:...
r6 static void makePlot();
Added Python Console and some Wrappers....
r5 public:
static void init(bool noGUI=false,QObject *parent = 0);
static CassiniTools *self();
static void decodeFGMData(const QString& file);
// QLopService methodes
QDockWidget* getGUI();
const QString& serviceName();
static void plotFile(const QString &File);
public slots:
void plot_TAB_File(const QString& fileName);
A lot of refactoring:...
r6 void export_view();
Added Python Console and some Wrappers....
r5 private slots:
void dataReady(QLopDataList data);
};
#endif // CASSINITOOLS_H
A lot of refactoring:...
r6