75 Q_PLUGIN_METADATA(IID
"org.OpenFlipper.Plugins.Plugin-HoleFilling")
80 void updatedObject(
int _id,
const UpdateType& _type);
82 void addPickMode(
const std::string& _mode );
84 void log(
Logtype _type, QString _message);
85 void log(QString _message);
89 void scriptInfo( QString _functionName );
91 void setSlotDescription(QString _slotName , QString _slotDescription,
92 QStringList _parameters , QStringList _descriptions);
95 void addToolbox( QString _name , QWidget* _widget, QIcon* _icon );
101 void slotMouseWheelEvent(QWheelEvent * ,
const std::string & ){};
116 QString
name() {
return (QString(
"HoleFiller")); };
117 QString
description( ) {
return (QString(
"Fill Holes or connect meshes")); };
125 void noguiSupported( ) {} ;
132 void getSelectedHoles(std::vector<int>& _holeIds, std::vector<int>& _objIds);
147 void fillHole(
int _objectID,
int _edgeHandle);
151 QString version() {
return QString(
"1.3"); };
Logtype
Log types for Message Window.
Interface class for backup handling.
Interface class from which all plugins have to be created.
void slotCellDoubleClicked(int _row, int _col)
Slot for filling holes from double-clicked rows.
QString name()
Return a name for the plugin.
void getSelectedHoles(std::vector< int > &_holeIds, std::vector< int > &_objIds)
get a map from objectID to (selected) holeIDs
void detectButton()
detect holes on all objects
void fillHole(int _objectID, int _edgeHandle)
fill a hole in given object where _edgeHandle is on the boundary
void fillAllHoles(int _objectID)
fill all holes from a given object
void pluginsInitialized()
add PickModes after initialization
HoleFillerToolbarWidget * tool_
Widget for Toolbox.
void slotMouseEvent(QMouseEvent *)
Mouse Event from main application ( Picking Mode )
std::vector< std::pair< int, int > > holeMapping_
map from the index in the table to (object-id, hole-id)
void slotItemSelectionChanged()
slot for displaying selected holes
QString description()
Return a description of what the plugin is doing.
void update_menu()
update the entries in the tableWidget
void slotFillSelection()
Fill all selected holes.
HoleFillerPlugin()
Constructor.
void slotObjectUpdated(int _identifier, const UpdateType &_type)
check for holes if an object has changed
void initializePlugin()
Initialize the toolbox widget.
Interface for all Plugins which do logging to the logging window of the framework.
Interface class for receiving mouse events.
Allow access to picking functions.
Interface class for exporting functions to python.
Interface for all Plugins which provide scriptable Functions.
const UpdateType UPDATE_ALL(UpdateTypeSet(1))
Identifier for all updates.