def __init__(self, name, experiment, script=None):
		# Call parent constructors.
		media_player_mpy.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)

		# Connect playaudio value change to function that enables or disables
		# sound renderer selection.
		# Account for Qt4/5 inconsistency here
		
		try:
			self.play_audio.currentTextChanged.connect(self.set_soundrenderer_status)
		except:
			self.play_audio.editTextChanged.connect(self.set_soundrenderer_status)
		
		# Init the setting for when the experiment is loaded.
		if self.var.playaudio == "yes":
			self.sound_renderer.setDisabled(False)
		elif self.var.playaudio == "no":
			self.sound_renderer.setDisabled(True)

		# Issue a warning if user selects options that potentially cause an infinite
		# loop
		try:
			self.loop_video.currentTextChanged.connect(self.check_for_infinite_loops)
		except:
			self.loop_video.editTextChanged.connect(self.check_for_infinite_loops)

		self.line_edit_duration.editingFinished.connect(self.check_for_infinite_loops)
    def __init__(self, name, experiment, script=None):

        """Plug-in GUI"""

        radboudbox_send_control.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
        self.text_version.setText(
        u'<small>Radboudbox version %s</small>' % VERSION)
    def __init__(self, name, experiment, script=None):

        """Experiment Manager plug-in GUI"""

        parallel_port_trigger.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
        self.text_pptrigger_version.setText(
        u'<small>Parallel Port Trigger version %s</small>' % VERSION)
	def __init__(self, name, experiment, script=None):

		"""
		Constructor.

		Arguments:
		name		--	The item name.
		experiment	--	The experiment object.

		Keyword arguments:
		script		--	The definition script. (default=None).
		"""

		media_player_vlc.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #5
0
	def __init__(self, name, experiment, script=None):
		
		"""
		Constructor.
		
		Arguments:
		name		--	The name of the plug-in.
		experiment	--	The experiment object.
		
		Keyword arguments:
		script		--	A definition script. (default=None)
		"""

		pygaze_start_recording.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
	def __init__(self, name, experiment, script=None):

		"""
		Constructor.

		Arguments:
		name		--	The name of the plug-in.
		experiment	--	The experiment object.

		Keyword arguments:
		script		--	A definition script. (default=None)
		"""

		quest_staircase_next.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
	def __init__(self, name, experiment, script=None):

		"""
		desc:
			Constructor.

		arguments:
			name:		The name of the plug-in.
			experiment:	The experiment object.

		keywords:
			script:		A definition script.
		"""

		quest_staircase_next.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
	def __init__(self, name, experiment, script=None):
		
		"""
		Constructor.
		
		Arguments:
		name		--	The name of the plug-in.
		experiment	--	The experiment object.
		
		Keyword arguments:
		script		--	A definition script. (default=None)
		"""

		pygaze_drift_correct.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
		self.custom_interactions()
	def __init__(self, name, experiment, string=None):

		"""
		Constructor

		Arguments:
		name		--	The name of the item.
		experiment	--	The experiment instance.

		Keyword arguments:
		string		--	A definition string. (default=None)
		"""
		
		form_multiple_choice.__init__(self, name, experiment, string)
		qtautoplugin.__init__(self, __file__)
		self.custom_interactions()
Beispiel #10
0
	def __init__(self, name, experiment, script=None):

		"""
		Constructor.

		Arguments:
		name		--	The name of the plug-in.
		experiment	--	The experiment object.

		Keyword arguments:
		script		--	A definition script. (default=None)
		"""

		pygaze_init.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
		self.text_pygaze_version.setText(
			u'<small>PyGaze version %s</small>' % pygaze.version)
Beispiel #11
0
	def __init__(self, name, experiment, script=None):

		"""
		Constructor.
		
		Arguments:
		name		--	The name of the plug-in.
		experiment	--	The experiment object.
		
		Keyword arguments:
		script		--	A definition script. (default=None)
		"""

		# We don't need to do anything here, except call the parent
		# constructors.
		auto_example.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #12
0
	def __init__(self, name, experiment, script=None):

		video_player.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
	def __init__(self, name, experiment, script=None):

		mousetrap_form.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
		self.custom_interactions()
Beispiel #14
0
	def __init__(self, name, experiment, script=None):

		# Call parent constructors.
		joystick.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #15
0
	def __init__(self, name, experiment, script=None):
		LabScribe_send_message.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #16
0
	def __init__(self, name, experiment, script=None):

		srbox.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #17
0
    def __init__(self, name, experiment, script=None):

        mousetrap_form.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
        self.custom_interactions()
	def __init__(self, name, experiment, script=None):
		# Call parent constructors.
		media_player_mpy.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, script=None):
        """Experiment Manager plug-in GUI"""

        parallel_port_trigger_send.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #20
0
    def __init__(self, name, experiment, script=None):
        """Plug-in GUI"""

        audio_low_latency_play_resume.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #21
0
    def __init__(self, name, experiment, script=None):

        text_input.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #22
0
	def __init__(self, name, experiment, script=None):

		fixation_dot.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #23
0
    def __init__(self, name, experiment, string=None):

        #Pass the word on to the parents
        EVTxx.__init__(self, name, experiment, string)
        qtautoplugin.__init__(self, __file__)
Beispiel #24
0
    def __init__(self, name, experiment, script=None):

        # Call parent constructors.
        repeat_cycle.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #25
0
    def __init__(self, name, experiment, script=None):

        pygaze_roi.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #26
0
	def __init__(self, name, experiment, script=None):

		text_input.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, script=None):

        radboudbox_wait_buttons.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
        self.text_version.setText(
        u'<small>Radboudbox version %s</small>' % VERSION)
    def __init__(self, name, experiment, script=None):

        form_text_display.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #29
0
    def __init__(self, name, experiment, script=None):

        psynteract_reassign.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #30
0
    def __init__(self, name, experiment, script=None):

        notepad.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #31
0
	def __init__(self, name, experiment, script=None):

		advanced_delay.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #32
0
	def __init__(self, name, experiment, script=None):

		# Call parent constructors.
		joystick.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, string=None):

        inline_html.__init__(self, name, experiment, string)
        qtautoplugin.__init__(self, plugin_file=__file__)
Beispiel #34
0
    def __init__(self, name, experiment, script=None):
        """Plug-in GUI"""

        radboudbox_send_control.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #35
0
	def __init__(self, name, experiment, script=None):

		form_text_display.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, script=None):

        pygaze_start_recording.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #37
0
    def __init__(self, name, experiment, script=None):

        video_player.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #38
0
	def __init__(self, name, experiment, script=None):

		form_base.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #39
0
    def __init__(self, name, experiment, script=None):

        # Call parent constructors.
        kinect_stop_recording.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #40
0
    def __init__(self, name, experiment, script=None):

        psychopy_gratingstim.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #41
0
    def __init__(self, name, experiment, script=None):

        pygaze_log.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
	def __init__(self, name, experiment, script=None):
		
		pygaze_start_recording.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #43
0
	def __init__(self, name, experiment, script=None):

		reset_feedback.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
Beispiel #44
0
    def __init__(self, name, experiment, script=None):

        # Call parent constructors.
        repeat_cycle.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, script=None):

        psynteract_wait.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
        self.custom_interactions()
    def __init__(self, name, experiment, script=None):

        psynteract_reassign.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #47
0
    def __init__(self, name, experiment, script=None):

        advanced_delay.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, script=None):

        media_player_vlc.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
    def __init__(self, name, experiment, script=None):

        radboudbox_get_buttons_wait.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #50
0
    def __init__(self, name, experiment, script=None):
        """plug-in GUI"""

        audio_low_latency_record_pause.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
Beispiel #51
0
    def __init__(self, name, experiment, script=None):

        form_consent.__init__(self, name, experiment, script)
        qtautoplugin.__init__(self, __file__)
	def __init__(self, name, experiment, script=None):

		psynteract_push.__init__(self, name, experiment, script)
		qtautoplugin.__init__(self, __file__)
		self.custom_interactions()