2014-09-02 20:30:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2016-02-16 01:37:28 -05:00
|
|
|
Copyright (C) 2016 Micah Lee <micah@micahflee.com>
|
2014-09-02 15:10:42 -04:00
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
2016-02-12 18:12:27 -05:00
|
|
|
from PyQt5 import QtCore, QtWidgets
|
2014-08-27 19:46:19 -04:00
|
|
|
|
|
|
|
from onionshare import strings, helpers
|
|
|
|
|
2016-02-12 18:12:27 -05:00
|
|
|
class Options(QtWidgets.QHBoxLayout):
|
2015-11-15 22:01:20 -05:00
|
|
|
"""
|
|
|
|
The extra onionshare options in the GUI.
|
|
|
|
"""
|
2015-11-20 16:43:19 -05:00
|
|
|
def __init__(self, web, app):
|
2014-08-27 19:46:19 -04:00
|
|
|
super(Options, self).__init__()
|
2014-08-28 02:52:56 -04:00
|
|
|
|
|
|
|
self.web = web
|
2015-11-20 16:43:19 -05:00
|
|
|
self.app = app
|
2015-09-08 00:48:49 -04:00
|
|
|
|
2014-08-27 19:46:19 -04:00
|
|
|
# close automatically
|
2016-02-12 18:12:27 -05:00
|
|
|
self.close_automatically = QtWidgets.QCheckBox()
|
2014-08-28 02:52:56 -04:00
|
|
|
if self.web.stay_open:
|
2014-08-27 20:27:54 -04:00
|
|
|
self.close_automatically.setCheckState(QtCore.Qt.Unchecked)
|
|
|
|
else:
|
|
|
|
self.close_automatically.setCheckState(QtCore.Qt.Checked)
|
2014-09-15 22:09:37 -04:00
|
|
|
self.close_automatically.setText(strings._("close_on_finish", True))
|
2016-02-12 18:12:27 -05:00
|
|
|
self.close_automatically.stateChanged.connect(self.stay_open_changed)
|
2014-08-27 19:46:19 -04:00
|
|
|
|
|
|
|
# add the widgets
|
|
|
|
self.addWidget(self.close_automatically)
|
|
|
|
|
2014-08-28 02:52:56 -04:00
|
|
|
def stay_open_changed(self, state):
|
2015-11-15 22:01:20 -05:00
|
|
|
"""
|
|
|
|
When the 'close automatically' checkbox is toggled, let the web app know.
|
|
|
|
"""
|
2014-08-28 02:52:56 -04:00
|
|
|
if state > 0:
|
|
|
|
self.web.set_stay_open(False)
|
2015-11-20 16:43:19 -05:00
|
|
|
self.app.stay_open = False
|
2014-08-28 02:52:56 -04:00
|
|
|
else:
|
|
|
|
self.web.set_stay_open(True)
|
2015-11-20 16:43:19 -05:00
|
|
|
self.app.stay_open = True
|