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 Q_INTERFACES(PythonInterface)
74
75 Q_PLUGIN_METADATA(IID "org.OpenFlipper.Plugins.Plugin-Subdivider")
76
77signals:
78 void updateView();
79 void updatedObject(int _id, const UpdateType& _type);
80
81 void addPickMode( const std::string& _mode );
82
83 void log(Logtype _type, QString _message);
84 void log(QString _message);
85
86 void addEmptyObject( DataType _type, int& _id );
87
88 void defineViewMode(QString _mode, QStringList _usedWidgets);
89
90 // ToolboxInterface
91 void addToolbox( QString _name , QWidget* _widget, QIcon* _icon );
92
93 // BackupInterface
94 void createBackup( int _id , QString _name, UpdateType _type = UPDATE_ALL );
95
96 // ScriptInterface
97 void setSlotDescription(QString _slotName, QString _slotDescription,
98 QStringList _parameters, QStringList _descriptions);
99
100private slots:
101
102 void initializePlugin();
103
104 void pluginsInitialized();
105
107 void noguiSupported( ) {} ;
108
109 void slotSubdivideUniformButton();
110
111 void slotSimpleSubdivideButton();
112
113public slots:
114
133 void subdivide(int _objectId, QString _algorithm , int _steps, bool _update_points = true);
134
148 void simpleSubdivide(int _objectId, QString _algorithm , int _steps, double _parameter, bool _update_points = true);
149
150
151public :
154
155 QString name() { return (QString("Subdivider")); };
156 QString description( ) { return (QString("Subdivide a mesh")); };
157
158private :
161 QIcon* toolIcon_;
162
163private:
164
165 bool test_trimesh_object(int _identifier, BaseObjectData*& _object);
166
167
168public slots:
169 QString version() { return QString("1.0"); };
170};
171
172#endif //SUBDIVIDERPLUGIN_HH
Logtype
Log types for Message Window.
Interface class for backup handling.
Interface class from which all plugins have to be created.
Predefined datatypes.
Definition: DataTypes.hh:83
Interface for all plugins which want to Load or Save files and create Objects.
Interface for all Plugins which do logging to the logging window of the framework.
Interface class for exporting functions to python.
Interface for all Plugins which provide scriptable Functions.
void noguiSupported()
Make plugin available in no-GUI mode.
QString name()
Return a name for the plugin.
QString description()
Return a description of what the plugin is doing.
void subdivide(int _objectId, QString _algorithm, int _steps, bool _update_points=true)
Scripting slot for subdivision.
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.
Plugins can add its own toolbox to the main widget's toolbox area by using this interface.
Update type class.
Definition: UpdateType.hh:59
const UpdateType UPDATE_ALL(UpdateTypeSet(1))
Identifier for all updates.