OrsDatasetStitching_a2cacc40fd5a11e7990dc860006dfcdd

Tool to assemble portions of a dataset into a single dataset

author:

Dragonfly Team, Arnaud Brignol, Francis Cote, Han-Thu Gloria Hang-Vo

contact:

https://dragonfly.comet.tech

email:

support.dragonfly@comet.tech

organization:

Comet Technologies Canada Inc.

address:

760 St-Paul West, suite 101, Montreal, Quebec, Canada, H3C 1M4

copyright:

Comet Technologies Canada Inc. All rights reserved 2023.

date:

Jan 19 2018 15:52

dragonflyVersion:

3.5.0.418

UUID:

a2cacc40fd5a11e7990dc860006dfcdd

Class Code

class OrsPythonPlugins.OrsDatasetStitching_a2cacc40fd5a11e7990dc860006dfcdd.OrsDatasetStitching_a2cacc40fd5a11e7990dc860006dfcdd.OrsDatasetStitching_a2cacc40fd5a11e7990dc860006dfcdd(*args, **kwargs)
cleanup()

Deletes the variables managed by the plugin. It is the place to remove callbacks and other references to Python objects that would prevent them to be garbage collected. This method is called during the process of deletion of the plugin. It calls for the cleanup and deletion of the forms.

classmethod getMainFormClass()

Gets the class of the main form

Returns:

output

handleChanged(oldState, newState)

This method is called when the state of the application is changed.

Parameters:
  • oldState (str) – name of the old (previous) state

  • newState (str) – name of the new (current) state

openWidget(name, dock=None, tab=None, x=-1, y=-1, w=-1, l=-1, order=-1, show=True)

Instantiates the widget with the provided name. This is done only if it is not already instantiated.

Parameters:
  • name (str) – name of the widget to instantiate

  • dock (str) – docking location in the main window (left, right, top, bottom, center, floating)

  • tab (str) – name of the tab to dock in

  • x (int) – position of top left corner of window in x. Use -1 for default value.

  • y (int) – position of top left corner of window in y. Use -1 for default value.

  • w (int) – width of window. Use -1 for default value.

  • l (int) – height of window. Use -1 for default value.

  • order (int.) – position of widget in docking location. Use -1 to put at the end.

  • show (bool) – if True, the form is also shown after being instantiated. If the form already exists, a “raise” is done. If False, no call to show the form is made.

classmethod startupDefault(openMainForm=True)

Creates an instance of the plugin class and opens the main form (if required) at the default position.

Returns:

output (AbstractPlugin) – plugin instance