##// 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
qlopplots.h
41 lines | 1002 B | text/x-c | CLexer
Added Python Console and some Wrappers....
r5 #ifndef QLOPPLOTS_H
#define QLOPPLOTS_H
#include <QObject>
#include <QWidget>
#include <qlopservice.h>
#include <SocExplorerPlot.h>
A lot of refactoring:...
r6 #include <QList>
#include <QHash>
#include <toolbarcontainer.h>
Added Python Console and some Wrappers....
r5
class QLopPlots: public QLopService
{
Q_OBJECT
private:
static QLopPlots* _self;
A lot of refactoring:...
r6 static SocExplorerPlot* m_LastPlot;
static QHash<int,SocExplorerPlot*>* m_plots;
Added Python Console and some Wrappers....
r5 static QDockWidget* m_gui;
A lot of refactoring:...
r6 static toolBarContainer* m_DocContainer;
Added Python Console and some Wrappers....
r5 QLopPlots(bool noGUI=false,QObject *parent = 0);
~QLopPlots();
A lot of refactoring:...
r6 static int getPlotID();
Added Python Console and some Wrappers....
r5
public:
static void init(bool noGUI=false,QObject *parent = 0);
static QLopPlots *self();
A lot of refactoring:...
r6 static SocExplorerPlot* getPlot(int plotID=-1);
static int addPlot();
static bool removePlot(int plotID);
Added Python Console and some Wrappers....
r5 // QLopService methodes
QDockWidget* getGUI();
const QString& serviceName();
public slots:
A lot of refactoring:...
r6 SocExplorerPlot* get_plot(int plotID);
int add_plot();
bool remove_plot(int plotID);
Added Python Console and some Wrappers....
r5 public:
};
#endif // QLOPPLOTS_H