/* ========================================================================= * * * * OpenMesh * * Copyright (c) 2001-2015, RWTH-Aachen University * * Department of Computer Graphics and Multimedia * * All rights reserved. * * www.openmesh.org * * * *---------------------------------------------------------------------------* * This file is part of OpenMesh. * *---------------------------------------------------------------------------* * * * Redistribution and use in source and binary forms, with or without * * modification, are permitted provided that the following conditions * * are met: * * * * 1. Redistributions of source code must retain the above copyright notice, * * this list of conditions and the following disclaimer. * * * * 2. Redistributions in binary form must reproduce the above copyright * * notice, this list of conditions and the following disclaimer in the * * documentation and/or other materials provided with the distribution. * * * * 3. Neither the name of the copyright holder nor the names of its * * contributors may be used to endorse or promote products derived from * * this software without specific prior written permission. * * * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER * * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * * * ========================================================================= */ #ifndef OPENMESHAPPS_MESHVIEWERWIDGETT_HH #define OPENMESHAPPS_MESHVIEWERWIDGETT_HH //== INCLUDES ================================================================= #include #include #include #include #include #include #include #include //== FORWARDS ================================================================= class QImage; //== CLASS DEFINITION ========================================================= template class MeshViewerWidgetT : public QGLViewerWidget { public: typedef M Mesh; typedef OpenMesh::StripifierT MyStripifier; /// default constructor MeshViewerWidgetT(QWidget* _parent=0, const char* _name=0) : QGLViewerWidget(_parent, _name), f_strips_(false), tex_id_(0), tex_mode_(GL_MODULATE), strips_(mesh_) { add_draw_mode("Points"); add_draw_mode("Hidden-Line"); #if defined(OM_USE_OSG) && OM_USE_OSG add_draw_mode("OpenSG Indices"); #endif } void enable_strips() { f_strips_ = true; add_draw_mode("Strips'n VertexArrays"); add_draw_mode("Show Strips"); } void disable_strips() { f_strips_ = false; } /// destructor ~MeshViewerWidgetT() {} /// open mesh virtual bool open_mesh(const char* _filename, OpenMesh::IO::Options _opt); /// load texture virtual bool open_texture( const char *_filename ); bool set_texture( QImage& _texsrc ); Mesh& mesh() { return mesh_; } const Mesh& mesh() const { return mesh_; } protected: /// inherited drawing method virtual void draw_scene(const std::string& _draw_mode); protected: /// draw the mesh virtual void draw_openmesh(const std::string& _drawmode); void glVertex( const typename Mesh::VertexHandle vh ) { glVertex3fv( &mesh_.point( vh )[0] ); } void glNormal( const typename Mesh::VertexHandle vh ) { glNormal3fv( &mesh_.normal( vh )[0] ); } void glTexCoord( const typename Mesh::VertexHandle vh ) { glTexCoord2fv( &mesh_.texcoord(vh)[0] ); } void glColor( const typename Mesh::VertexHandle vh ) { glColor3ubv( &mesh_.color(vh)[0] ); } void glColor( const typename Mesh::FaceHandle fh ) { glColor3ubv( &mesh_.color(fh)[0] ); } protected: // Strip support void compute_strips(void) { if (f_strips_) { strips_.clear(); strips_.stripify(); } } protected: // inherited virtual void keyPressEvent( QKeyEvent* _event); protected: bool f_strips_; // enable/disable strip usage GLuint tex_id_; GLint tex_mode_; OpenMesh::IO::Options opt_; // mesh file contained texcoords? Mesh mesh_; MyStripifier strips_; }; //============================================================================= #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESHAPPS_MESHVIEWERWIDGET_CC) # define OPENMESH_MESHVIEWERWIDGET_TEMPLATES # include "MeshViewerWidgetT_impl.hh" #endif //============================================================================= #endif // OPENMESHAPPS_MESHVIEWERWIDGETT_HH defined //=============================================================================