- Timestamp:
- 03/10/13 12:32:44 (12 years ago)
- Location:
- trunk/FACT++/gui
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/BasicGlCamera.cc
r14303 r15015 8 8 #include <sstream> 9 9 #include <algorithm> 10 11 #include <QLabel> 12 #include <QRadioButton> 13 #include <QButtonGroup> 10 14 11 15 #include <GL/glu.h> -
trunk/FACT++/gui/BasicGlCamera.h
r12300 r15015 9 9 #define ACTUAL_NUM_PIXELS 1440 10 10 11 #include <set>12 11 #include <vector> 13 12 14 13 #include <QtOpenGL/QGLWidget> 15 #include <QtGui/QMouseEvent>16 17 #include <QtGui/QRadioButton>18 #include <QtGui/QLabel>19 #include <QtGui/QButtonGroup>20 14 21 15 #include "src/PixelMap.h" 22 16 23 //#include <QtGui/QMouseEvent> 17 class QMouseEvent; 18 class QRadioButton; 19 class QLabel; 20 class QButtonGroup; 21 24 22 ///structure for storing edges of hexagons (for blurry display) 25 23 struct edge -
trunk/FACT++/gui/Q3DCameraWidget.cc
r14793 r15015 6 6 */ 7 7 #include "Q3DCameraWidget.h" 8 8 9 #include <math.h> 9 10 #include <sstream> 10 11 11 12 #include <GL/glu.h> 13 14 #include <QMouseEvent> 12 15 13 16 Q3DCameraWidget::Q3DCameraWidget(QWidget* pparent) : BasicGlCamera(pparent), -
trunk/FACT++/gui/QCameraWidget.cc
r13763 r15015 1 1 #include "QCameraWidget.h" 2 2 3 #include <sstream> 3 4 #include <iostream> 5 6 #include <QMouseEvent> 4 7 5 8 using namespace std; -
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc
r14791 r15015 5 5 * Author: lyard 6 6 */ 7 //FIXME replace with FACT++ Time class 7 #include <math.h> 8 #include <fstream> 9 8 10 #include <boost/date_time/local_time/local_time.hpp> 9 10 11 11 12 #include "RawEventsViewer.h" 12 13 #include "viewer.h" 13 #include <math.h>14 #include <fstream>15 14 16 15 #include <QFileDialog> 16 #include <QMouseEvent> 17 17 18 18 #include <qwt_symbol.h> 19 #include <qwt_plot_grid.h> 20 #include <qwt_plot_zoomer.h> 19 21 20 22 #include "src/Configuration.h" -
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.h
r15014 r15015 15 15 #include <string> 16 16 #include <valarray> 17 #include <iostream>18 17 19 18 #include <QObject> 20 //#include <QTimer>21 #include <QLabel>22 #include <QListWidget>23 #include <QMainWindow>24 #include <QPushButton>25 #include <QMouseEvent>26 #include <QColorDialog>27 #include <QApplication>28 #include <QSpinBox>29 #include <QDoubleSpinBox>30 #include <QRadioButton>31 #include <QCheckBox>32 19 33 20 #include "../BasicGlCamera.h" 34 21 35 #include <GL/gl.h>36 37 #include <qwt_plot.h>38 22 #include <qwt_plot_curve.h> 39 #include <qwt_plot_grid.h> 40 #include <qwt_plot_zoomer.h> 23 24 class QwtPlotZoomer; 25 class QwtPlotGrid; 41 26 42 27 #include "../../src/DataCalib.h"
Note:
See TracChangeset
for help on using the changeset viewer.