![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /***************************************************************************** 00002 * Copyright (c) 2011 MAK Technologies, Inc. 00003 * All rights reserved. 00004 *****************************************************************************/ 00005 00009 00010 #pragma once 00011 00012 #include <exampleSymbolFacade4.h> 00013 00014 #include <QtGui/QDialog> 00015 00016 class QDoubleSpinBox; 00017 00018 namespace makVrv 00019 { 00020 00021 namespace exampleSymbolFacade4 00022 { 00023 00026 class DT_DLL_EXAMPLESYMBOLFACADE4 DtRotateSymbolDialog : public QDialog 00027 { Q_OBJECT; 00028 public: 00029 00031 DtRotateSymbolDialog( makVrv::DtDe& de, QWidget* parent = 0, 00032 Qt::WindowFlags f = 0 ); 00033 00035 virtual ~DtRotateSymbolDialog(); 00036 00038 float selectedRotationAmount() const; 00039 00040 private: 00041 00043 DtRotateSymbolDialog( const DtRotateSymbolDialog& orig ); 00044 00046 DtRotateSymbolDialog& operator = ( const DtRotateSymbolDialog& orig ); 00047 00048 protected: 00049 00052 void setupGui(); 00053 00054 protected: 00055 00056 QDoubleSpinBox* myRotationSpinner; 00057 00058 }; 00059 00060 } 00061 }