|
|
void | openedFile (int _id) |
| |
|
void | addEmptyObject (DataType _type, int &_id) |
| |
|
void | load (QString _filename, DataType _type, int &_id) |
| |
|
void | save (int _id, QString _filename) |
| |
|
void | log (Logtype _type, QString _message) |
| |
|
void | log (QString _message) |
| |
|
void | updateView () |
| |
|
void | updatedObject (int _identifier, const UpdateType &_type) |
| |
|
void | deleteObject (int _id) |
| |
| virtual void | updateView () |
| | Update current view in Main Application.
|
| |
| virtual void | setSlotDescription (QString _slotName, QString _slotDescription, QStringList _parameters, QStringList _descriptions) |
| | Set a description for a public slot.
|
| |
| virtual void | setRenderer (unsigned int _viewer, QString _rendererName) |
| | Set a renderer for the given viewer.
|
| |
| virtual void | openedFile (int _id) |
| | This signal has to be emitted if an object has been loaded from a file.
|
| |
| virtual void | save (int _id, QString _filename) |
| | Save object to a file.
|
| |
| virtual void | load (QString _filename, DataType _type, int &_id) |
| | Load object from file with a specific DataType.
|
| |
| virtual void | log (Logtype _type, QString _message)=0 |
| |
| virtual void | log (QString _message)=0 |
| |
| virtual void | scriptInfo (QString _functionWithParameters) |
| | Emit this signal if a scriptable function is executed.
|
| |
| virtual void | getScriptingEngine (QScriptEngine *&_engine) |
| |
| virtual void | executeFileScript (QString _filename) |
| |
| virtual void | getAvailableFunctions (QStringList &_functions) |
| |
| virtual void | executePythonScript (QString _script) |
| |
|
| void | noguiSupported () |
| |
| void | initializePlugin () |
| | Initialize Plugin.
|
| |
| void | handleTrimeshDialog () |
| | Displays a dialog to ask how to load the mesh (triangle, polymesh , autodetect)
|
| |
| void | slotLoadDefault () |
| | Slot called when user wants to save the given Load options as default.
|
| |
| void | slotSaveDefault () |
| | Slot called when user wants to save the given Save options as default.
|
| |
| template<class MeshT > |
| void | backupTextureCoordinates (MeshT &_mesh) |
| | creates a backup of the original per vertex/face texture coordinates
|
| |
| virtual | ~BaseInterface () |
| | Destructor.
|
| |
| virtual void | blockScenegraphUpdates (bool _block) |
| | Tell the core to prevent scenegraph updates.
|
| |
| virtual void | updatedObject (int _objectId) |
| | An object has been changed or added by this plugin.
|
| |
| virtual void | updatedObject (int _identifier, const UpdateType &_type) |
| | An object has been changed or added by this plugin.
|
| |
| virtual void | nodeVisibilityChanged (int _identifier) |
| | A scenegraph node has been shown or hidden.
|
| |
| virtual void | getCurrentRenderer (unsigned int _viewer, QString &_rendererName) |
| | Get the current renderer for the given viewer.
|
| |
| virtual | ~FileInterface () |
| | Destructor.
|
| |
| virtual bool | saveObject (int _id, QString _filename)=0 |
| | Save an object from the given file.
|
| |
| virtual bool | saveObjects (IdList _ids, QString _filename) |
| | Save multiple objects to one file.
|
| |
| virtual | ~LoadSaveInterface () |
| | Destructor.
|
| |
| virtual void | addEmptyObject (DataType _type, int &_id) |
| |
| virtual void | copyObject (int _oldId, int &_newId) |
| |
| virtual void | emptyObjectAdded (int _id) |
| | DEPRECATED HERE (Moved to Type Interface)! Emit this signal if an empty object has been created.
|
| |
| virtual void | deleteObject (int _id) |
| | Delete an object
This signal can be called from any thread.
.
|
| |
| virtual void | deleteAllObjects () |
| | Delete all Objects.
|
| |
| virtual void | getAllFileFilters (QStringList &_filters) |
| | Get all file filters that are registered.
|
| |
| virtual | ~LoggingInterface () |
| | Destructor.
|
| |
| virtual | ~ScriptInterface () |
| | Destructor.
|
| |
| virtual void | showScriptInEditor (QString _filename) |
| |
| virtual void | executeScript (QString _script) |
| |
| virtual void | getDescription (QString _function, QString &_description, QStringList &_parameters, QStringList &_descriptions) |
| |
| virtual void | openPythonScriptInEditor (QString _script) |
| |
| virtual | ~PythonInterface () |
| | Destructor.
|
| |
Definition at line 64 of file FileOM.hh.
| QWidget * FileOMPlugin::loadOptionsWidget |
( |
QString |
_currentFilter | ) |
|
|
virtual |
You can provide a special widget showing options for loading your file types depending on the current filter
_currentFilter: one filter from loadFilters
Return 0 when you don't need one
Implements FileInterface.
Definition at line 655 of file FileOM.cc.
| QWidget * FileOMPlugin::saveOptionsWidget |
( |
QString |
_currentFilter | ) |
|
|
virtual |
You can provide a special widget showing options for saving your file types depending on the current filter
_currentFilter: one filter from saveFilters
Return 0 when you don't need one
Implements FileInterface.
Definition at line 596 of file FileOM.cc.