def __init__(self, name, experiment, string=None):
        """See item."""

        coroutines.__init__(self, name, experiment, string)
        # We don't call the sequence constructor, because it doesn't specify
        # the plugin_file to qtplugin, which we need to do.
        sequence_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self, plugin_file=os.path.dirname(__file__))
        self.last_removed_child = None, None
示例#2
0
    def __init__(self, name, experiment, string=None):

        # This requires pyqode_extras, which is not available in opensesamerun
        # and therefore we import it only here.
        from javascript_code_edit import JavaScriptCodeEdit
        
        if self.mime_type not in SplittableCodeEditTabWidget.editors:
            SplittableCodeEditTabWidget.register_code_edit(JavaScriptCodeEdit)
        inline_script.__init__(self, name, experiment, string)
        qtplugin.__init__(self, plugin_file=__file__)
示例#3
0
	def __init__(self, name, experiment, string=None):

		"""See item."""

		coroutines.__init__(self, name, experiment, string)
		# We don't call the sequence constructor, because it doesn't specify
		# the plugin_file to qtplugin, which we need to do.
		sequence_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self, plugin_file=os.path.dirname(__file__))
		self.last_removed_child = None, None
示例#4
0
    def __init__(self, name, experiment, string=None):
        """
		Constructor

		Arguments:
		name -- item name
		experiment -- experiment instance

		Keywords arguments:
		string -- a definition string (default=None)
		"""

        mouse_response_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self)
示例#5
0
	def __init__(self, name, experiment, string=None):

		"""
		Constructor

		Arguments:
		name -- item name
		experiment -- experiment instance

		Keywords arguments:
		string -- a definition string (default=None)
		"""

		keyboard_response_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
示例#6
0
    def __init__(self, name, experiment, string=None):
        """
		desc:
			Constructor.

		arguments:
			name:		The item name.
			experiment:	The experiment object.

		keywords:
			string:		A definition string.
		"""

        sequence_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self)
        self.last_removed_child = None, None
示例#7
0
    def __init__(self, name, experiment, string=None):
        """
		desc:
			Constructor

		arguments:
			name:		The item name.
			experiment: The experiment object.

		keywords:
			string:		The item definition string, or None for default
						initialization.
		"""

        mouse_response_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self)
示例#8
0
	def __init__(self, name, experiment, string=None):

		"""
		desc:
			Constructor.

		arguments:
			name:		The item name.
			experiment:	The experiment object.

		keywords:
			string:		A definition string.
		"""

		sequence_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
		self.last_removed_child = None, None
示例#9
0
	def __init__(self, name, experiment, string=None):

		"""See item."""

		synth_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
示例#10
0
    def __init__(self, name, experiment, string=None):
        """See item."""

        inline_script_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self)
示例#11
0
	def __init__(self, name, experiment, string=None):

		feedback_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
示例#12
0
    def __init__(self, plugin_file):

        qtplugin.__init__(self, plugin_file)
    def __init__(self, name, experiment, string=None):

        inline_script.__init__(self, name, experiment, string)
        qtplugin.__init__(self, plugin_file=__file__)
示例#14
0
	def __init__(self, name, experiment, string=None):

		feedback_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
示例#15
0
	def __init__(self, name, experiment, string=None):

		"""See item."""

		inline_script_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
示例#16
0
    def __init__(self, name, experiment, string=None):
        """See item."""

        logger_runtime.__init__(self, name, experiment, string)
        qtplugin.__init__(self)
示例#17
0
	def __init__(self, name, experiment, string=None):

		sketchpad_runtime.__init__(self, name, experiment, string)
		qtplugin.__init__(self)
示例#18
0
	def __init__(self, plugin_file):
		
		qtplugin.__init__(self, plugin_file)				
    def __init__(self, name, experiment, string=None):

        if self.mime_type not in SplittableCodeEditTabWidget.editors:
            SplittableCodeEditTabWidget.register_code_edit(JavaScriptCodeEdit)
        inline_script.__init__(self, name, experiment, string)
        qtplugin.__init__(self, plugin_file=__file__)