|
| milxQtPythonPlugin (QObject *theParent=0) |
|
QString | name () |
| Get the Name of the plugin. [Implement this in your plugin].
|
|
bool | hasOpenSupport () |
| Does the plugin support opening files? [Implement this in your plugin].
|
|
QString | openFileSupport () |
| Get the file support string for opening (extension wildcard list). [Implement this in your plugin].
|
|
QStringList | openExtensions () |
| Get a list of supported file format extensions. [Implement this in your plugin].
|
|
bool | hasSaveSupport () |
| Does the plugin support opening files? [Implement this in your plugin].
|
|
QString | saveFileSupport () |
| Get the file support string for saving (extension wildcard list). [Implement this in your plugin].
|
|
QStringList | saveExtensions () |
| Get a list of supported file format extensions. [Implement this in your plugin].
|
|
bool | hasCollectionSupport () |
| Does the plugin support collections (PolyData collection etc.). [Implement this in your plugin].
|
|
void | SetInputCollection (vtkPolyDataCollection *collection, QStringList &filenames) |
| Pass a collection to internal plugin class. [Implement this in your plugin].
|
|
void | open (QString filename) |
| Open the file using the plugin. [Implement this in your plugin].
|
|
void | save (QString filename) |
| Save the result as a file using the plugin. [Implement this in your plugin].
|
|
milxQtRenderWindow * | genericResult () |
| Get the generic result, which is a milxQtRenderWindow. The result can then be displayed in milxQtMain etc. [Implement this in your plugin].
|
|
milxQtModel * | modelResult () |
| Get the model result. The result can then be displayed in milxQtMain etc. [Implement this in your plugin].
|
|
milxQtImage * | imageResult () |
| Get the image result. The result can then be displayed in milxQtMain etc.[Implement this in your plugin].
|
|
QDockWidget * | dockWidget () |
| Return the dock widget (if one is provided by plugin). [Implement this in your plugin].
|
|
Qt::DockWidgetArea | dockDefaultArea () |
| Return the default dock widget area (if one is provided by plugin). [Implement this in your plugin].
|
|
bool | isPluginWindow (QWidget *window) |
| Is the window provided a plugin generated window? In this case a milxQtShapeModel window. [Implement this in your plugin].
|
|
milxQtPythonConsole * | pluginWindow (QWidget *window) |
|
| milxQtPluginInterface (QObject *theParent=0) |
| Default destructor.
|
|
void | setFileName (const QString filename) |
| Set the Name of the data. [Don't Reimplement this]. More...
|
|
void | setConsole (milxQtConsole *con) |
| Set console to be used by plugins for output. More...
|
|
bool | isThreaded () |
| Is the plugin threaded? [Don't Reimplement this].
|
|
bool | isDockable () |
| Is the plugin a dock window? [Don't Reimplement this].
|
|
bool | isConsole () |
| Is the plugin a console dock window? If so, it will be added to the console dock window. [Don't Reimplement this].
|
|
bool | isExtension () |
| Is the plugin an extension? [Don't Reimplement this].
|
|
QList< QAction * > | addToFileMenu () |
| Actions to add to the file or context menu. [Don't Reimplement this].
|
|
QList< QMenu * > | addToMenuBar () |
| Menus to add to the menu bar. [Don't Reimplement this].
|
|
|
void | resultAvailable (milxQtRenderWindow *) |
| Send signal that Resultant render window is available for showing.
|
|
void | resultAvailable (milxQtModel *) |
| Send signal that Resultant model is available for showing.
|
|
void | resultAvailable (milxQtImage *) |
| Send signal that Resultant image is available for showing.
|
|
void | resultAvailable (vtkPolyDataCollection *, QStringList &) |
| Send signal that Resultant collection is available for showing.
|
|
void | working (int value) |
| Send signal that computation is in progress. Value carries the progress,.
|
|
void | done (int value) |
| Send signal that computation is done. Value carries the progress,.
|
|
Definition at line 32 of file milxQtPythonPlugin.h.