AnimaL |
Tutorial |
Documentation |
00001 /*************************************************************************** 00002 monwidgetbidon.h - description 00003 ------------------- 00004 begin : Thu Jan 8 2004 00005 copyright : (C) 2004 by Mathieu Coquerelle 00006 email : coquerel@inrialpes.fr 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef DeformableOctreeShapeQt_H 00019 #define DeformableOctreeShapeQt_H 00020 00021 #include <qwidget.h> 00022 #include "DeformableOctreeShapeDesigner.h" 00023 #include "DeformableOctreeShapeNode.h" 00024 00025 namespace X3DTK 00026 { 00027 namespace Qt 00028 { 00029 00030 class DeformableOctreeShapeQt : 00031 public DeformableOctreeShapeDesigner 00032 { 00033 Q_OBJECT 00034 00035 public: 00036 DeformableOctreeShapeQt( X3D::DeformableOctreeShapeNode * DON ); 00037 ~DeformableOctreeShapeQt(); 00038 00039 public slots: 00040 void comboBoxMethod_activated( int ); 00041 00042 private: 00043 X3D::DeformableOctreeShapeNode * _node; 00044 00045 void initButtons(); 00046 00047 }; 00048 00049 QWidget * createDeformableOctreeShapeQWidget(X3D::DeformableOctreeShapeNode * node, QWidget * parent); 00050 00051 } 00052 } 00053 00054 #endif 00055