2014-08-27 16:46:19 -07:00
|
|
|
from PyQt4 import QtCore, QtGui
|
|
|
|
|
|
|
|
import common
|
|
|
|
from onionshare import strings, helpers
|
|
|
|
|
|
|
|
class Options(QtGui.QHBoxLayout):
|
2014-08-27 17:27:54 -07:00
|
|
|
def __init__(self, stay_open=False):
|
2014-08-27 16:46:19 -07:00
|
|
|
super(Options, self).__init__()
|
|
|
|
self.addSpacing(10)
|
|
|
|
|
|
|
|
# close automatically
|
|
|
|
self.close_automatically = QtGui.QCheckBox()
|
2014-08-27 17:27:54 -07:00
|
|
|
if stay_open:
|
|
|
|
self.close_automatically.setCheckState(QtCore.Qt.Unchecked)
|
|
|
|
else:
|
|
|
|
self.close_automatically.setCheckState(QtCore.Qt.Checked)
|
2014-08-27 16:46:19 -07:00
|
|
|
self.close_automatically.setText(strings._("close_on_finish"))
|
|
|
|
|
|
|
|
# add the widgets
|
|
|
|
self.addWidget(self.close_automatically)
|
|
|
|
|