Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include <QGridLayout>
00013 #include <QBoxLayout>
00014 #include <QLabel>
00015 #include <QPixmap>
00016 #include <QtGui>
00017 #include <vector>
00018 #include <vector>
00019 #include <QDialog>
00020 #include <QComboBox>
00021
00022
00023 #include <QPushButton>
00024
00025
00026
00027
00028 #include "SensorDataGLWidget.h"
00029 #include "SensorDataDisplay.h"
00030
00031 #include "PainterPlugin.h"
00032 #include "PainterCheckBox.h"
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include "NewLaserDataPainter.h"
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #define THIS SensorDataDisplay
00053
00054 QSize THIS::minimumSizeHint() const
00055 {
00056 return QSize ( 200, 100 );
00057 }
00058 QSize THIS::sizeHint() const
00059 {
00060 return QSize ( 500, 400 );
00061 }
00062
00063 THIS::THIS ( bool useDefaultPlugins, QWidget *parent ) : QWidget ( parent )
00064 {
00065
00066
00067 m_GlWidget = new SensorDataGLWidget ( this );
00068
00069
00070 m_OptionsLayout = new QVBoxLayout();
00071
00072 if ( useDefaultPlugins )
00073 {
00074
00075
00076
00077
00078 addPainter ( new NewLaserDataPainter(), true );
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093 }
00094
00095 m_OptionsDialog = new QDialog();
00096 m_OptionsDialog->setWindowTitle ( "Display Options" );
00097 m_OptionsDialog->setLayout ( m_OptionsLayout );
00098 m_OptionsDialog->setFocusPolicy(Qt::NoFocus);
00099
00100
00101
00102 m_NodeSelector = new QComboBox( this );
00103 m_NodeSelectorInitialized = false;
00104 m_NodeSelector->setFocusPolicy(Qt::NoFocus);
00105 connect( m_NodeSelector, SIGNAL(activated(const QString&)), m_GlWidget, SLOT(followNode(const QString&)));
00106
00107
00108 QPushButton* buttonCameraMove = new QPushButton ( QString::fromUtf8("360° View"), this );
00109 connect ( buttonCameraMove, SIGNAL ( pressed() ), m_GlWidget, SLOT ( performCameraMove() ) );
00110 buttonCameraMove->setFocusPolicy(Qt::NoFocus);
00111
00112
00113
00114 QPushButton* buttonOptions = new QPushButton ( "Options", this );
00115 connect ( buttonOptions, SIGNAL ( pressed() ), m_OptionsDialog, SLOT ( show() ) );
00116 buttonOptions->setFocusPolicy(Qt::NoFocus);
00117
00118
00119
00120 QVBoxLayout* vLayout = new QVBoxLayout( );
00121 vLayout->addWidget ( m_GlWidget );
00122
00123 QHBoxLayout* hLayout = new QHBoxLayout( );
00124
00125 hLayout->addWidget ( m_NodeSelector );
00126 hLayout->addWidget ( buttonOptions );
00127 hLayout->addWidget ( buttonCameraMove );
00128
00129 vLayout->addLayout( hLayout );
00130
00131
00132
00133 setLayout ( vLayout );
00134
00135 this->setFocus();
00136 }
00137
00138
00139 void THIS::addPainter ( PainterPlugin* painter, bool visible )
00140 {
00141 m_GlWidget->addPainter ( painter );
00142 PainterCheckBox* painterCB = new PainterCheckBox ( painter );
00143 m_OptionsLayout->addWidget ( painterCB );
00144 connect ( painterCB , SIGNAL ( changed() ), m_GlWidget, SLOT ( updateGL() ) );
00145 painterCB->setChecked ( visible );
00146 }
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190 THIS::~THIS()
00191 {
00192 }