OpenMesh
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
SubdivideWidget.hh
1 /* ========================================================================= *
2  * *
3  * OpenMesh *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openmesh.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenMesh. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39  * *
40  * ========================================================================= */
41 
42 /*===========================================================================*\
43  * *
44  * $Revision$ *
45  * $Date$ *
46  * *
47 \*===========================================================================*/
48 
49 //=============================================================================
50 //
51 // CLASS SubdivideWidget
52 //
53 //=============================================================================
54 
55 #ifndef SUBDIVIDEWIDGET_HH
56 #define SUBDIVIDEWIDGET_HH
57 
58 
59 //== INCLUDES =================================================================
60 
61 #include <QTimer>
62 #include <QMainWindow>
63 #include <QStatusBar>
64 #include <OpenMesh/Apps/Subdivider/MeshViewerWidget.hh>
66 
67 
68 
69 
70 //== CLASS DEFINITION =========================================================
71 
72 class SubdivideWidget : public QWidget
73 {
74  Q_OBJECT
75 
76 public:
77 
79 
80  enum SOPType {
81  SOP_UniformCompositeLoop,
82  SOP_UniformCompositeSqrt3,
83  SOP_UniformLoop,
84  SOP_UniformSqrt3,
85  SOP_UniformInterpolatingSqrt3,
86  SOP_ModifiedButterfly,
87  SOP_CatmullClark,
88  SOP_Undefined
89  };
90 
91  typedef std::map< SOPType, Subdivider* > SubdividerPool;
92 
93 public:
94 
96  SubdivideWidget(QWidget* _parent=0, const char* _name=0);
97 
100 
101 
103  bool open_mesh(const char* _filename);
104 
105  void keyPressEvent( QKeyEvent *k );
106 
108  QStatusBar *status_bar;
109  void update();
110 
111 
112 private slots:
113 
114  void animate_slot(void);
115  void slot_select_sop(int i);
116  void subdiv_slot();
117  void reset_slot();
118  void save_slot();
119  void load_slot();
120 
121 private:
122 
123  // widgets
124  MeshViewerWidget* viewer_widget_;
125 
126  QTimer *timer_;
127 
128  int animate_step_;
129  int max_animate_steps_;
130  int msecs_;
131 
132  // Selected and current subdivision operator
133  SOPType sel_topo_type; // selected operator
134  SOPType cur_topo_type; // active operator
135 
136  //
137  SubdividerPool subdivider_;
138 
139 };
140 
141 
142 //=============================================================================
143 #endif // SUBDIVIDEWIDGET_HH defined
144 //=============================================================================
145 
~SubdivideWidget()
destructor
Definition: SubdivideWidget.hh:99
SubdivideWidget(QWidget *_parent=0, const char *_name=0)
constructor
Definition: SubdivideWidget.cc:93
Definition: MeshViewerWidget.hh:80
bool open_mesh(const char *_filename)
open mesh from _filename
Definition: SubdivideWidget.cc:350
Definition: SubdivideWidget.hh:72
QStatusBar * status_bar
Updates Status Bar Information.
Definition: SubdivideWidget.hh:108
Abstract base class for uniform subdivision algorithms.
Definition: SubdividerT.hh:94

Project OpenMesh, ©  Computer Graphics Group, RWTH Aachen. Documentation generated using doxygen .