Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
BSplineSurfaceSelectionPlugin.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  * $Revision$ *
45  * $Author$ *
46  * $Date$ *
47  * *
48 \*===========================================================================*/
49 
50 #ifndef BSPLINESURFACESELECTIONPLUGIN_HH
51 #define BSPLINESURFACESELECTIONPLUGIN_HH
52 
53 #include <QObject>
54 
62 #include <OpenFlipper/BasePlugin/INIInterface.hh>
67 #include <OpenFlipper/INIFile/INIFile.hh>
68 
70 
73 {
74  Q_OBJECT
75  Q_INTERFACES(BaseInterface)
76  Q_INTERFACES(KeyInterface)
77  Q_INTERFACES(INIInterface)
78  Q_INTERFACES(BackupInterface)
79  Q_INTERFACES(LoggingInterface)
80  Q_INTERFACES(ScriptInterface)
81  Q_INTERFACES(SelectionInterface)
82 
83 #if QT_VERSION >= 0x050000
84  Q_PLUGIN_METADATA(IID "org.OpenFlipper.Plugins.Plugin-SelectionBSplineSurface")
85 #endif
86 
87 public:
88 
91 
94 
95 signals:
96 
97  // BaseInterface
98  void updateView();
99  void updatedObject(int, const UpdateType&);
100  void nodeVisibilityChanged(int _identifier);
101  void setSlotDescription(QString _slotName, QString _slotDescription,
102  QStringList _parameters, QStringList _descriptions);
103 
104  // LoggingInterface
105  void log(Logtype _type, QString _message);
106  void log(QString _message);
107 
108  // BackupInterface
109  void createBackup( int _objectid, QString _name, UpdateType _type = UPDATE_ALL);
110 
111  // ScriptInterface
112  void scriptInfo(QString _functionName);
113 
114  // SelectionInterface
115  void addSelectionEnvironment(QString _modeName, QString _description, QString _icon, QString& _handleName);
116  void registerType(QString _handleName, DataType _type);
117  void addPrimitiveType(QString _handleName, QString _name, QString _icon, SelectionInterface::PrimitiveType& _typeHandle);
118  void addSelectionOperations(QString _handleName, QStringList _operationsList, QString _category, SelectionInterface::PrimitiveType _type = 0u);
119  void showToggleSelectionMode(QString _handleName, bool _show, SelectionInterface::PrimitiveType _associatedTypes);
120  void showVolumeLassoSelectionMode(QString _handleName, bool _show, SelectionInterface::PrimitiveType _associatedTypes);
121 
122  void getActiveDataTypes(SelectionInterface::TypeList& _types);
123  void getActivePrimitiveType(SelectionInterface::PrimitiveType& _type);
124  void targetObjectsOnly(bool& _targetsOnly);
125 
126  void registerKeyShortcut(int _key, Qt::KeyboardModifiers _modifiers = Qt::NoModifier);
127 
128 private slots:
129 
130  // INIInterface
131  void loadIniFile(INIFile& _ini, int _id);
132  void saveIniFile(INIFile& _ini, int _id);
133 
134  // BaseInterface
135  void initializePlugin();
136  void pluginsInitialized();
137  void noguiSupported() {};
138 
139  // SelectionInterface
140  void slotSelectionOperation(QString _operation);
141  void slotToggleSelection(QMouseEvent* _event, SelectionInterface::PrimitiveType _currentType, bool _deselect);
142  void slotVolumeLassoSelection(QMouseEvent* _event, SelectionInterface::PrimitiveType _currentType, bool _deselect);
143 
144  void slotLoadSelection(const INIFile& _file);
145  void slotSaveSelection(INIFile& _file);
146 
147  void slotKeyShortcutEvent(int _key, Qt::KeyboardModifiers _modifiers);
148 
149 public slots:
150 
151  // SelectionInterface
152  void loadSelection(int _objId, const QString& _filename);
153 
154 public:
155 
156  // BaseInterface
157  QString name() {
158  return (QString(tr("BSplineSurface Selection")));
159  };
160 
161  QString description() {
162  return (QString(tr("Allows to select B-Spline surfaces")));
163  };
164 
165  //===========================================================================
168  //===========================================================================
169 private:
170 
171  enum SelectionViewMode {CP, K};
172 
174  void setSelectionViewMode(const SelectionViewMode _mode);
175 
177  void updateSlotDescriptions();
178 
181 public slots:
182 
183  QString version() {
184  return QString("1.0");
185  };
186 
187  //===========================================================================
190  //===========================================================================
191 
192  // Control point selection:
193 
195  void selectAllControlPoints(int _objectId);
196 
198  void deselectAllControlPoints(int _objectId);
199 
201  void invertControlPointSelection(int _objectId);
202 
204 // void deleteSelectedControlPointsU(int _objectId);
205 // void deleteSelectedControlPointsV(int _objectId);
206 
208  void selectControlPoints(int _objectId, const IdList& _ids, bool _deselect = false);
209 
211  IdList getControlPointSelection(int _objectId);
212 
213  // Knot selection:
214 
216  void selectAllKnots(int _objectId);
217 
219  void deselectAllKnots(int _objectId);
220 
222  void invertKnotSelection(int _objectId);
223 
225  void deleteSelectedKnotsU(int _objectId);
226  void deleteSelectedKnotsV(int _objectId);
227 
229  void selectKnots(int _objectId, const IdList& _ids_u, const IdList& _ids_v, bool _deselect = false);
230 
232  IdList getKnotSelectionU(int _objectId);
233  IdList getKnotSelectionV(int _objectId);
234 
237  //===========================================================================
240  //===========================================================================
241 
242 private:
243 
246 
248  unsigned int controlPointType_;
249  unsigned int knotType_;
250 
251  unsigned int allSupportedTypes_;
252 
254  QVector<QPoint> volumeLassoPoints_;
255 
258 };
259 
260 //=============================================================================
261 #endif // BSPLINESURFACESELECTIONPLUGIN_HH defined
262 //=============================================================================
Interface class from which all plugins have to be created.
void slotToggleSelection(QMouseEvent *_event, SelectionInterface::PrimitiveType _currentType, bool _deselect)
Called whenever the user performs a toggle selection.
void deselectAllKnots(int _objectId)
Deselect all knots of a curve.
Keyboard Event Interface.
Definition: KeyInterface.hh:76
Interface class for Plugins which have to store information in ini files.
Definition: INIInterface.hh:81
Logtype
Log types for Message Window.
QString environmentHandle_
Handle to selection environment.
IdList getKnotSelectionV(int _objectId)
Select all control points of a curve.
Update type class.
Definition: UpdateType.hh:70
const UpdateType UPDATE_ALL(UpdateTypeSet(1))
Identifier for all updates.
void slotLoadSelection(const INIFile &_file)
Load selection for specific objects in the scene.
Interface for all plugins which want to use selection functions.
void deleteSelectedKnotsU(int _objectId)
Delete selected knots.
Interface for all Plugins which do logging to the logging window of the framework.
IdList getKnotSelectionU(int _objectId)
Get current knot selection.
void slotKeyShortcutEvent(int _key, Qt::KeyboardModifiers _modifiers)
One of the previously registered keys has been pressed.
void selectAllKnots(int _objectId)
Select all knots of a curve.
void setSelectionViewMode(const SelectionViewMode _mode)
Change selection view mode for every B-spline surface in the scene.
void slotSaveSelection(INIFile &_file)
Save selection for all objects in the scene.
QString name()
Return a name for the plugin.
IdList getControlPointSelection(int _objectId)
Get current control point selection.
Class for the handling of simple configuration files.
Definition: INIFile.hh:105
BSplineSurfaceSelectionPlugin()
Default constructor.
void slotSelectionOperation(QString _operation)
A specific operation is requested.
std::vector< int > IdList
Standard Type for id Lists used for scripting.
Definition: DataTypes.hh:192
void deselectAllControlPoints(int _objectId)
Deselect all control points of a curve.
unsigned int controlPointType_
Primitive type handles:
Interface for all Plugins which provide scriptable Functions.
void selectAllControlPoints(int _objectId)
Select all control points of a curve.
SelectionViewMode
Change selection view mode for every B-spline surface in the scene.
void deleteSelectedKnotsV(int _objectId)
Select all control points of a curve.
void updateSlotDescriptions()
Set slot descriptions for scripting functions.
void invertKnotSelection(int _objectId)
Invert knot selection.
~BSplineSurfaceSelectionPlugin()
Default destructor.
unsigned int allSupportedTypes_
Handle to selection environment.
QString description()
Return a description of what the plugin is doing.
void selectKnots(int _objectId, const IdList &_ids_u, const IdList &_ids_v, bool _deselect=false)
Select specific knots of a curve.
Interface class for backup handling.
QVector< QPoint > volumeLassoPoints_
Keep volume lasso points.
void invertControlPointSelection(int _objectId)
Invert control point selection.
void selectControlPoints(int _objectId, const IdList &_ids, bool _deselect=false)
Delete selected control points.
Predefined datatypes.
Definition: DataTypes.hh:96
unsigned int knotType_
Handle to selection environment.
void slotVolumeLassoSelection(QMouseEvent *_event, SelectionInterface::PrimitiveType _currentType, bool _deselect)
Called whenever the user performs a volume lasso selection.