Developer Documentation
SubdividerPlugin.hh
1 /*===========================================================================*\
2 * *
3 * OpenFlipper *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openflipper.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenFlipper. *
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 
45 #ifndef SUBDIVIDERPLUGIN_HH
46 #define SUBDIVIDERPLUGIN_HH
47 
48 #include <QObject>
49 #include <QMenuBar>
50 
61 
62 #include "subdividerToolbar.hh"
63 
65 {
66  Q_OBJECT
67  Q_INTERFACES(BaseInterface)
68  Q_INTERFACES(ToolboxInterface)
69  Q_INTERFACES(LoggingInterface)
70  Q_INTERFACES(LoadSaveInterface)
71  Q_INTERFACES(ScriptInterface)
72  Q_INTERFACES(BackupInterface)
73 
74  Q_PLUGIN_METADATA(IID "org.OpenFlipper.Plugins.Plugin-Subdivider")
75 
76 signals:
77  void updateView();
78  void updatedObject(int _id, const UpdateType& _type);
79 
80  void addPickMode( const std::string& _mode );
81 
82  void log(Logtype _type, QString _message);
83  void log(QString _message);
84 
85  void addEmptyObject( DataType _type, int& _id );
86 
87  void defineViewMode(QString _mode, QStringList _usedWidgets);
88 
89  // ToolboxInterface
90  void addToolbox( QString _name , QWidget* _widget, QIcon* _icon );
91 
92  // BackupInterface
93  void createBackup( int _id , QString _name, UpdateType _type = UPDATE_ALL );
94 
95  // ScriptInterface
96  void setSlotDescription(QString _slotName, QString _slotDescription,
97  QStringList _parameters, QStringList _descriptions);
98 
99 private slots:
100 
101  void initializePlugin();
102 
103  void pluginsInitialized();
104 
106  void noguiSupported( ) {} ;
107 
108  void slotSubdivideUniformButton();
109 
110  void slotSimpleSubdivideButton();
111 
112 public slots:
113 
132  void subdivide(int _objectId, QString _algorithm , int _steps, bool _update_points = true);
133 
147  void simpleSubdivide(int _objectId, QString _algorithm , int _steps, double _parameter, bool _update_points = true);
148 
149 
150 public :
152  ~SubdividerPlugin() {};
153 
154  QString name() { return (QString("Subdivider")); };
155  QString description( ) { return (QString("Subdivide a mesh")); };
156 
157 private :
160  QIcon* toolIcon_;
161 
162 private:
163 
164  bool test_trimesh_object(int _identifier, BaseObjectData*& _object);
165 
166 
167 public slots:
168  QString version() { return QString("1.0"); };
169 };
170 
171 #endif //SUBDIVIDERPLUGIN_HH
const UpdateType UPDATE_ALL(UpdateTypeSet(1))
Identifier for all updates.
Plugins can add its own toolbox to the main widget&#39;s toolbox area by using this interface.
Logtype
Log types for Message Window.
QString name()
Return a name for the plugin.
QString description()
Return a description of what the plugin is doing.
Predefined datatypes.
Definition: DataTypes.hh:83
Interface for all Plugins which do logging to the logging window of the framework.
void noguiSupported()
Make plugin available in no-GUI mode.
void simpleSubdivide(int _objectId, QString _algorithm, int _steps, double _parameter, bool _update_points=true)
Scripting slot for the simple subdivision algorithms.
subdividerToolbarWidget * tool_
Widget for Toolbox.
Update type class.
Definition: UpdateType.hh:60
Interface for all Plugins which provide scriptable Functions.
Interface class from which all plugins have to be created.
Interface class for backup handling.
void subdivide(int _objectId, QString _algorithm, int _steps, bool _update_points=true)
Scripting slot for subdivision.
Interface for all plugins which want to Load or Save files and create Objects.