/usr/share/pyshared/libqtopensesame/items/feedback.py is in opensesame 0.27.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | #-*- coding:utf-8 -*-
"""
This file is part of OpenSesame.
OpenSesame is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenSesame is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenSesame. If not, see <http://www.gnu.org/licenses/>.
"""
import libopensesame.feedback
from libqtopensesame.items import qtplugin, feedpad
from libqtopensesame.widgets import sketchpad_widget
from PyQt4 import QtCore, QtGui
class feedback(libopensesame.feedback.feedback, feedpad.feedpad, \
qtplugin.qtplugin):
"""The GUI for the feedback item"""
def __init__(self, name, experiment, string=None):
"""
Constructor
Arguments:
name -- the name of the item
experiment -- an instance of libopensesame.experiment
Keyword arguments:
string -- a string with the item definition (default = None)
"""
libopensesame.feedback.feedback.__init__(self, name, experiment, string)
qtplugin.qtplugin.__init__(self)
def apply_edit_changes(self):
"""Apply changes to the controls"""
if not qtplugin.qtplugin.apply_edit_changes(self, False) or self.lock:
return False
self.experiment.main_window.refresh(self.name)
return True
def edit_widget(self):
"""Update the controls based on the items settings"""
self.lock = True
qtplugin.qtplugin.edit_widget(self)
self.lock = False
self.tools_widget.refresh()
return self._edit_widget
def init_edit_widget(self):
"""Construct the edit widget that contains the controls"""
qtplugin.qtplugin.init_edit_widget(self, False)
self.add_line_edit_control('duration', 'Duration', tooltip= \
'A numeric value (duration in milliseconds), "keypress", or "mouseclick"')
self.add_checkbox_control('reset_variables', 'Reset feedback variables',
tooltip='Reset feedback variables, such as "accuracy" and "avg_rt"')
self.popout_button = QtGui.QPushButton(self.experiment.icon( \
self.item_type), 'Open editor in new window')
self.popout_button.setIconSize(QtCore.QSize(16,16))
self.popout_button.setToolTip( \
"Open the sketchpad editor in a new window")
QtCore.QObject.connect(self.popout_button, QtCore.SIGNAL("clicked()"), \
self.popout)
self.add_control('', self.popout_button,
'Open the feedback editor in a new window')
self.tools_widget = sketchpad_widget.sketchpad_widget(self)
self.edit_vbox.addWidget(self.tools_widget)
|