mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 06:50:02 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorGui@5 af1100a4-978c-4157-bff7-07162d2ba061
100 lines
1.6 KiB
C++
100 lines
1.6 KiB
C++
/*
|
|
* qTabPlot.h
|
|
*
|
|
* Created on: May 10, 2012
|
|
* Author: l_maliakal_d
|
|
*/
|
|
|
|
#ifndef QTABPLOT_H_
|
|
#define QTABPLOT_H_
|
|
|
|
/** Form Header */
|
|
#include "ui_form_tab_plot.h"
|
|
/** Project Class Headers */
|
|
class slsDetectorUtils;
|
|
/** Qt Project Class Headers */
|
|
class qDrawPlot;
|
|
|
|
/**
|
|
*@short sets up the Plot parameters
|
|
*/
|
|
class qTabPlot:public QWidget, private Ui::TabPlotObject{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/** \short The constructor
|
|
* @param parent is the parent tab widget
|
|
* @param detector is the detector returned from the detector tab
|
|
* @param plot plot object reference
|
|
*/
|
|
qTabPlot(QWidget *parent,slsDetectorUtils*& detector, qDrawPlot*& plot);
|
|
|
|
/** Destructor
|
|
*/
|
|
~qTabPlot();
|
|
|
|
|
|
private:
|
|
/** The sls detector object */
|
|
slsDetectorUtils *myDet;
|
|
|
|
/** The Plot widget */
|
|
qDrawPlot *myPlot;
|
|
|
|
/** some Default Values */
|
|
static QString defaultPlotTitle;
|
|
static QString defaultHistXAxisTitle;
|
|
static QString defaultHistYAxisTitle;
|
|
static QString defaultImageXAxisTitle;
|
|
static QString defaultImageYAxisTitle;
|
|
static QString defaultImageZAxisTitle;
|
|
|
|
|
|
/** methods */
|
|
/** Sets up the widget
|
|
*/
|
|
void SetupWidgetWindow();
|
|
|
|
/** Sets up all the slots and signals
|
|
*/
|
|
void Initialization();
|
|
|
|
/** Enables/Disables all the widgets
|
|
*/
|
|
void Enable(bool enable);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
/** Selects the plot to display, enables/disables widgets
|
|
* @param b true to select plot dimension 1, else false to select 2D
|
|
*/
|
|
void Select1DPlot(bool b);
|
|
|
|
/**Sets the titles in plot axis
|
|
*/
|
|
void SetTitles();
|
|
|
|
/** Enables/Sets Titles to default
|
|
*/
|
|
void EnableTitles();
|
|
|
|
/** Save Plot
|
|
*/
|
|
void SavePlot();
|
|
|
|
signals:
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* QTABPLOT_H_ */
|