![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtAboutBox.h,v $ $Revision: 1.9 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #ifndef DtAboutBox_H_ 00014 #define DtAboutBox_H_ 00015 00016 #include <vrvCoreQt/vrvCoreQt.h> 00017 #include <QtGui/QDialog> 00018 #include <QtGui/QImage> 00019 00020 class QGLWidget; 00021 00022 namespace makVrv 00023 { 00024 class DtVrvApplication; 00025 00028 class DT_DLL_VRVCOREQT DtAboutBox : public QDialog 00029 { 00030 Q_OBJECT; 00031 public: 00032 00034 DtAboutBox(DtVrvApplication& igApp,QWidget* parent = 0, Qt::WindowFlags f = 0); 00035 00037 virtual ~DtAboutBox(); 00038 00039 protected: 00040 00041 void setupGui(); 00042 00043 DtVrvApplication& myIgApp; 00044 QGLWidget* myRenderWidget; 00045 00046 protected slots: 00047 00048 void slot_onSalesMailClick(const QString&); 00049 void slot_onSupportMailClick(const QString&); 00050 }; 00051 } 00052 00053 #endif 00054