mirror of
https://github.com/onionshare/onionshare.git
synced 2025-02-14 05:31:25 -05:00
Merge pull request #1327 from micahflee/1306_customization
Allow custom title for each onion service
This commit is contained in:
commit
8f9d21f783
@ -143,6 +143,12 @@ def main(cwd=None):
|
|||||||
help="Filename of persistent session",
|
help="Filename of persistent session",
|
||||||
)
|
)
|
||||||
# General args
|
# General args
|
||||||
|
parser.add_argument(
|
||||||
|
"--title",
|
||||||
|
metavar="TITLE",
|
||||||
|
default=None,
|
||||||
|
help="Set a title",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--public",
|
"--public",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
@ -234,6 +240,7 @@ def main(cwd=None):
|
|||||||
connect_timeout = int(args.connect_timeout)
|
connect_timeout = int(args.connect_timeout)
|
||||||
config_filename = args.config
|
config_filename = args.config
|
||||||
persistent_filename = args.persistent
|
persistent_filename = args.persistent
|
||||||
|
title = args.title
|
||||||
public = bool(args.public)
|
public = bool(args.public)
|
||||||
autostart_timer = int(args.autostart_timer)
|
autostart_timer = int(args.autostart_timer)
|
||||||
autostop_timer = int(args.autostop_timer)
|
autostop_timer = int(args.autostop_timer)
|
||||||
@ -280,6 +287,7 @@ def main(cwd=None):
|
|||||||
|
|
||||||
if mode_settings.just_created:
|
if mode_settings.just_created:
|
||||||
# This means the mode settings were just created, not loaded from disk
|
# This means the mode settings were just created, not loaded from disk
|
||||||
|
mode_settings.set("general", "title", title)
|
||||||
mode_settings.set("general", "public", public)
|
mode_settings.set("general", "public", public)
|
||||||
mode_settings.set("general", "autostart_timer", autostart_timer)
|
mode_settings.set("general", "autostart_timer", autostart_timer)
|
||||||
mode_settings.set("general", "autostop_timer", autostop_timer)
|
mode_settings.set("general", "autostop_timer", autostop_timer)
|
||||||
|
@ -42,6 +42,7 @@ class ModeSettings:
|
|||||||
},
|
},
|
||||||
"persistent": {"mode": None, "enabled": False},
|
"persistent": {"mode": None, "enabled": False},
|
||||||
"general": {
|
"general": {
|
||||||
|
"title": None,
|
||||||
"public": False,
|
"public": False,
|
||||||
"autostart_timer": False,
|
"autostart_timer": False,
|
||||||
"autostop_timer": False,
|
"autostop_timer": False,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>OnionShare</title>
|
<title>{% if title %}{{ title }}{% else %}OnionShare Chat{% endif %}</title>
|
||||||
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
||||||
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
||||||
</head>
|
</head>
|
||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<header class="clearfix">
|
<header class="clearfix">
|
||||||
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
||||||
<h1>OnionShare</h1>
|
<h1>{% if title %}{{ title }}{% else %}OnionShare Chat{% endif %}</h1>
|
||||||
</header>
|
</header>
|
||||||
<noscript>
|
<noscript>
|
||||||
<p>
|
<p>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>OnionShare</title>
|
<title>{% if title %}{{ title }}{% else %}OnionShare{% endif %}</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
|
||||||
@ -14,7 +14,7 @@
|
|||||||
<header class="d-flex">
|
<header class="d-flex">
|
||||||
<div class="logo-container">
|
<div class="logo-container">
|
||||||
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
||||||
<h1>OnionShare</h1>
|
<h1>{% if title %}{{ title }}{% else %}OnionShare{% endif %}</h1>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@ -57,4 +57,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -1,46 +1,49 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<title>OnionShare</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<header class="clearfix">
|
<head>
|
||||||
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
<title>{% if title %}{{ title }}{% else %}OnionShare Dropbox{% endif %}</title>
|
||||||
<h1>OnionShare</h1>
|
<meta charset="utf-8" />
|
||||||
</header>
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
||||||
|
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
||||||
|
</head>
|
||||||
|
|
||||||
<div class="upload-wrapper">
|
<body>
|
||||||
<p><img class="logo" src="{{ static_url_path }}/img/logo_large.png" title="OnionShare"></p>
|
|
||||||
|
|
||||||
<p class="upload-header">Send Files</p>
|
<header class="clearfix">
|
||||||
<p class="upload-description">Select the files you want to send, then click "Send Files"...</p>
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
||||||
|
<h1>{% if title %}{{ title }}{% else %}OnionShare Dropbox{% endif %}</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
<div id="uploads"></div>
|
<div class="upload-wrapper">
|
||||||
|
<p><img class="logo" src="{{ static_url_path }}/img/logo_large.png" title="OnionShare"></p>
|
||||||
|
|
||||||
<div>
|
<p class="upload-header">Send Files</p>
|
||||||
<ul id="flashes" class="flashes">
|
<p class="upload-description">Select the files you want to send, then click "Send Files"...</p>
|
||||||
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
||||||
{% if messages %}
|
|
||||||
{% for category, message in messages %}
|
|
||||||
<li class="{{ category }}">{{ message }}</li>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
{% endwith %}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form id="send" method="post" enctype="multipart/form-data" action="/upload">
|
<div id="uploads"></div>
|
||||||
<p><input type="file" id="file-select" name="file[]" multiple /></p>
|
|
||||||
<p><button type="submit" id="send-button" class="button">Send Files</button></p>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<ul id="flashes" class="flashes">
|
||||||
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
||||||
|
{% if messages %}
|
||||||
|
{% for category, message in messages %}
|
||||||
|
<li class="{{ category }}">{{ message }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{% endwith %}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<script src="{{ static_url_path }}/js/jquery-3.5.1.min.js"></script>
|
|
||||||
<script async src="{{ static_url_path }}/js/receive.js" id="receive-script"></script>
|
<form id="send" method="post" enctype="multipart/form-data" action="/upload">
|
||||||
</body>
|
<p><input type="file" id="file-select" name="file[]" multiple /></p>
|
||||||
</html>
|
<p><button type="submit" id="send-button" class="button">Send Files</button></p>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<script src="{{ static_url_path }}/js/jquery-3.5.1.min.js"></script>
|
||||||
|
<script async src="{{ static_url_path }}/js/receive.js" id="receive-script"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -2,9 +2,9 @@
|
|||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>OnionShare</title>
|
<title>{% if title %}{{ title }}{% else %}OnionShare{% endif %}</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
||||||
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
||||||
<meta name="onionshare-filename" content="{{ filename }}">
|
<meta name="onionshare-filename" content="{{ filename }}">
|
||||||
@ -16,7 +16,7 @@
|
|||||||
<header class="d-flex">
|
<header class="d-flex">
|
||||||
<div class="logo-container">
|
<div class="logo-container">
|
||||||
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
||||||
<h1>OnionShare</h1>
|
<h1>{% if title %}{{ title }}{% else %}OnionShare{% endif %}</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="information d-flex">
|
<div class="information d-flex">
|
||||||
<div>Total size: <strong>{{ filesize_human }}</strong> {% if is_zipped %} (compressed){% endif %}</div>
|
<div>Total size: <strong>{{ filesize_human }}</strong> {% if is_zipped %} (compressed){% endif %}</div>
|
||||||
@ -25,10 +25,11 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
{% if breadcrumbs %}
|
{% if breadcrumbs %}
|
||||||
<ul class="breadcrumbs">
|
<ul class="breadcrumbs">
|
||||||
{% for breadcrumb in breadcrumbs %}<li><a href="{{ breadcrumb[1] }}">{{ breadcrumb[0] }}</a> <span class="sep">‣</span></li>{% endfor %}<li>{{ breadcrumbs_leaf }}</li>
|
{% for breadcrumb in breadcrumbs %}<li><a href="{{ breadcrumb[1] }}">{{ breadcrumb[0] }}</a> <span
|
||||||
</ul>
|
class="sep">‣</span></li>{% endfor %}<li>{{ breadcrumbs_leaf }}</li>
|
||||||
{% endif %}
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div class="file-list" id="file-list">
|
<div class="file-list" id="file-list">
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
@ -66,4 +67,4 @@
|
|||||||
<script async src="{{ static_url_path }}/js/send.js" charset="utf-8"></script>
|
<script async src="{{ static_url_path }}/js/send.js" charset="utf-8"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -4,7 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>OnionShare is closed</title>
|
<title>OnionShare is closed</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
||||||
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
||||||
</head>
|
</head>
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<header class="clearfix">
|
<header class="clearfix">
|
||||||
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
||||||
<h1>OnionShare</h1>
|
<h1>{% if title %}{{ title }}{% else %}OnionShare{% endif %}</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="info-wrapper">
|
<div class="info-wrapper">
|
||||||
@ -24,4 +24,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -18,12 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from flask import (
|
from flask import request, render_template, make_response, jsonify, session
|
||||||
request,
|
|
||||||
render_template,
|
|
||||||
make_response,
|
|
||||||
jsonify,
|
|
||||||
session)
|
|
||||||
from flask_socketio import emit, join_room, leave_room
|
from flask_socketio import emit, join_room, leave_room
|
||||||
|
|
||||||
|
|
||||||
@ -72,6 +67,7 @@ class ChatModeWeb:
|
|||||||
"chat.html",
|
"chat.html",
|
||||||
static_url_path=self.web.static_url_path,
|
static_url_path=self.web.static_url_path,
|
||||||
username=session.get("name"),
|
username=session.get("name"),
|
||||||
|
title=self.web.settings.get("general", "title"),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
return self.web.add_security_headers(r)
|
return self.web.add_security_headers(r)
|
||||||
|
@ -64,7 +64,9 @@ class ReceiveModeWeb:
|
|||||||
self.web.add_request(self.web.REQUEST_LOAD, request.path)
|
self.web.add_request(self.web.REQUEST_LOAD, request.path)
|
||||||
r = make_response(
|
r = make_response(
|
||||||
render_template(
|
render_template(
|
||||||
"receive.html", static_url_path=self.web.static_url_path
|
"receive.html",
|
||||||
|
static_url_path=self.web.static_url_path,
|
||||||
|
title=self.web.settings.get("general", "title"),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
return self.web.add_security_headers(r)
|
return self.web.add_security_headers(r)
|
||||||
@ -168,6 +170,7 @@ class ReceiveModeWeb:
|
|||||||
"new_body": render_template(
|
"new_body": render_template(
|
||||||
"thankyou.html",
|
"thankyou.html",
|
||||||
static_url_path=self.web.static_url_path,
|
static_url_path=self.web.static_url_path,
|
||||||
|
title=self.web.settings.get("general", "title"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@ -176,6 +179,7 @@ class ReceiveModeWeb:
|
|||||||
r = make_response(
|
r = make_response(
|
||||||
render_template("thankyou.html"),
|
render_template("thankyou.html"),
|
||||||
static_url_path=self.web.static_url_path,
|
static_url_path=self.web.static_url_path,
|
||||||
|
title=self.web.settings.get("general", "title"),
|
||||||
)
|
)
|
||||||
return self.web.add_security_headers(r)
|
return self.web.add_security_headers(r)
|
||||||
|
|
||||||
|
@ -390,6 +390,7 @@ class ShareModeWeb(SendBaseModeWeb):
|
|||||||
is_zipped=self.is_zipped,
|
is_zipped=self.is_zipped,
|
||||||
static_url_path=self.web.static_url_path,
|
static_url_path=self.web.static_url_path,
|
||||||
download_individual_files=self.download_individual_files,
|
download_individual_files=self.download_individual_files,
|
||||||
|
title=self.web.settings.get("general", "title"),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -60,6 +60,7 @@ class WebsiteModeWeb(SendBaseModeWeb):
|
|||||||
breadcrumbs=breadcrumbs,
|
breadcrumbs=breadcrumbs,
|
||||||
breadcrumbs_leaf=breadcrumbs_leaf,
|
breadcrumbs_leaf=breadcrumbs_leaf,
|
||||||
static_url_path=self.web.static_url_path,
|
static_url_path=self.web.static_url_path,
|
||||||
|
title=self.web.settings.get("general", "title"),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -165,6 +165,7 @@
|
|||||||
"gui_quit_warning_cancel": "Cancel",
|
"gui_quit_warning_cancel": "Cancel",
|
||||||
"mode_settings_advanced_toggle_show": "Show advanced settings",
|
"mode_settings_advanced_toggle_show": "Show advanced settings",
|
||||||
"mode_settings_advanced_toggle_hide": "Hide advanced settings",
|
"mode_settings_advanced_toggle_hide": "Hide advanced settings",
|
||||||
|
"mode_settings_title_label": "Custom title",
|
||||||
"mode_settings_persistent_checkbox": "Save this tab, and automatically open it when I open OnionShare",
|
"mode_settings_persistent_checkbox": "Save this tab, and automatically open it when I open OnionShare",
|
||||||
"mode_settings_public_checkbox": "Don't use a password",
|
"mode_settings_public_checkbox": "Don't use a password",
|
||||||
"mode_settings_autostart_timer_checkbox": "Start onion service at scheduled time",
|
"mode_settings_autostart_timer_checkbox": "Start onion service at scheduled time",
|
||||||
|
@ -68,6 +68,11 @@ class ChatMode(Mode):
|
|||||||
self.image = QtWidgets.QWidget()
|
self.image = QtWidgets.QWidget()
|
||||||
self.image.setLayout(image_layout)
|
self.image.setLayout(image_layout)
|
||||||
|
|
||||||
|
# Set title placeholder
|
||||||
|
self.mode_settings_widget.title_lineedit.setPlaceholderText(
|
||||||
|
strings._("gui_tab_name_chat")
|
||||||
|
)
|
||||||
|
|
||||||
# Server status
|
# Server status
|
||||||
self.server_status.set_mode("chat")
|
self.server_status.set_mode("chat")
|
||||||
self.server_status.server_started_finished.connect(self.update_primary_action)
|
self.server_status.server_started_finished.connect(self.update_primary_action)
|
||||||
|
@ -57,6 +57,16 @@ class ModeSettingsWidget(QtWidgets.QWidget):
|
|||||||
else:
|
else:
|
||||||
self.public_checkbox.setCheckState(QtCore.Qt.Unchecked)
|
self.public_checkbox.setCheckState(QtCore.Qt.Unchecked)
|
||||||
|
|
||||||
|
# Title
|
||||||
|
title_label = QtWidgets.QLabel(strings._("mode_settings_title_label"))
|
||||||
|
self.title_lineedit = QtWidgets.QLineEdit()
|
||||||
|
self.title_lineedit.editingFinished.connect(self.title_editing_finished)
|
||||||
|
if self.settings.get("general", "title"):
|
||||||
|
self.title_lineedit.setText(self.settings.get("general", "title"))
|
||||||
|
title_layout = QtWidgets.QHBoxLayout()
|
||||||
|
title_layout.addWidget(title_label)
|
||||||
|
title_layout.addWidget(self.title_lineedit)
|
||||||
|
|
||||||
# Whether or not to use an auto-start timer
|
# Whether or not to use an auto-start timer
|
||||||
self.autostart_timer_checkbox = QtWidgets.QCheckBox()
|
self.autostart_timer_checkbox = QtWidgets.QCheckBox()
|
||||||
self.autostart_timer_checkbox.clicked.connect(
|
self.autostart_timer_checkbox.clicked.connect(
|
||||||
@ -152,6 +162,7 @@ class ModeSettingsWidget(QtWidgets.QWidget):
|
|||||||
# Advanced group itself
|
# Advanced group itself
|
||||||
advanced_layout = QtWidgets.QVBoxLayout()
|
advanced_layout = QtWidgets.QVBoxLayout()
|
||||||
advanced_layout.setContentsMargins(0, 0, 0, 0)
|
advanced_layout.setContentsMargins(0, 0, 0, 0)
|
||||||
|
advanced_layout.addLayout(title_layout)
|
||||||
advanced_layout.addLayout(autostart_timer_layout)
|
advanced_layout.addLayout(autostart_timer_layout)
|
||||||
advanced_layout.addLayout(autostop_timer_layout)
|
advanced_layout.addLayout(autostop_timer_layout)
|
||||||
advanced_layout.addWidget(self.legacy_checkbox)
|
advanced_layout.addWidget(self.legacy_checkbox)
|
||||||
@ -203,6 +214,33 @@ class ModeSettingsWidget(QtWidgets.QWidget):
|
|||||||
self.legacy_checkbox.hide()
|
self.legacy_checkbox.hide()
|
||||||
self.client_auth_checkbox.hide()
|
self.client_auth_checkbox.hide()
|
||||||
|
|
||||||
|
def title_editing_finished(self):
|
||||||
|
if self.title_lineedit.text().strip() == "":
|
||||||
|
self.title_lineedit.setText("")
|
||||||
|
self.settings.set("general", "title", None)
|
||||||
|
if self.tab.mode == self.common.gui.MODE_SHARE:
|
||||||
|
self.tab.change_title.emit(
|
||||||
|
self.tab.tab_id, strings._("gui_tab_name_share")
|
||||||
|
)
|
||||||
|
elif self.tab.mode == self.common.gui.MODE_RECEIVE:
|
||||||
|
self.tab.change_title.emit(
|
||||||
|
self.tab.tab_id, strings._("gui_tab_name_receive")
|
||||||
|
)
|
||||||
|
elif self.tab.mode == self.common.gui.MODE_WEBSITE:
|
||||||
|
self.tab.change_title.emit(
|
||||||
|
self.tab.tab_id, strings._("gui_tab_name_website")
|
||||||
|
)
|
||||||
|
elif self.tab.mode == self.common.gui.MODE_CHAT:
|
||||||
|
self.tab.change_title.emit(
|
||||||
|
self.tab.tab_id, strings._("gui_tab_name_chat")
|
||||||
|
)
|
||||||
|
elif self.tab_mode == None:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
title = self.title_lineedit.text()
|
||||||
|
self.settings.set("general", "title", title)
|
||||||
|
self.tab.change_title.emit(self.tab.tab_id, title)
|
||||||
|
|
||||||
def persistent_checkbox_clicked(self):
|
def persistent_checkbox_clicked(self):
|
||||||
self.settings.set("persistent", "enabled", self.persistent_checkbox.isChecked())
|
self.settings.set("persistent", "enabled", self.persistent_checkbox.isChecked())
|
||||||
self.settings.set("persistent", "mode", self.tab.mode)
|
self.settings.set("persistent", "mode", self.tab.mode)
|
||||||
|
@ -106,6 +106,11 @@ class ReceiveMode(Mode):
|
|||||||
self.hide_webhook_url()
|
self.hide_webhook_url()
|
||||||
self.mode_settings_widget.mode_specific_layout.addLayout(webhook_url_layout)
|
self.mode_settings_widget.mode_specific_layout.addLayout(webhook_url_layout)
|
||||||
|
|
||||||
|
# Set title placeholder
|
||||||
|
self.mode_settings_widget.title_lineedit.setPlaceholderText(
|
||||||
|
strings._("gui_tab_name_receive")
|
||||||
|
)
|
||||||
|
|
||||||
# Server status
|
# Server status
|
||||||
self.server_status.set_mode("receive")
|
self.server_status.set_mode("receive")
|
||||||
self.server_status.server_started_finished.connect(self.update_primary_action)
|
self.server_status.server_started_finished.connect(self.update_primary_action)
|
||||||
|
@ -77,6 +77,11 @@ class ShareMode(Mode):
|
|||||||
for filename in self.filenames:
|
for filename in self.filenames:
|
||||||
self.file_selection.file_list.add_file(filename)
|
self.file_selection.file_list.add_file(filename)
|
||||||
|
|
||||||
|
# Set title placeholder
|
||||||
|
self.mode_settings_widget.title_lineedit.setPlaceholderText(
|
||||||
|
strings._("gui_tab_name_share")
|
||||||
|
)
|
||||||
|
|
||||||
# Server status
|
# Server status
|
||||||
self.server_status.set_mode("share", self.file_selection)
|
self.server_status.set_mode("share", self.file_selection)
|
||||||
self.server_status.server_started.connect(self.file_selection.server_started)
|
self.server_status.server_started.connect(self.file_selection.server_started)
|
||||||
|
@ -77,6 +77,11 @@ class WebsiteMode(Mode):
|
|||||||
for filename in self.filenames:
|
for filename in self.filenames:
|
||||||
self.file_selection.file_list.add_file(filename)
|
self.file_selection.file_list.add_file(filename)
|
||||||
|
|
||||||
|
# Set title placeholder
|
||||||
|
self.mode_settings_widget.title_lineedit.setPlaceholderText(
|
||||||
|
strings._("gui_tab_name_website")
|
||||||
|
)
|
||||||
|
|
||||||
# Server status
|
# Server status
|
||||||
self.server_status.set_mode("website", self.file_selection)
|
self.server_status.set_mode("website", self.file_selection)
|
||||||
self.server_status.server_started.connect(self.file_selection.server_started)
|
self.server_status.server_started.connect(self.file_selection.server_started)
|
||||||
|
@ -176,6 +176,11 @@ class TabWidget(QtWidgets.QTabWidget):
|
|||||||
)
|
)
|
||||||
|
|
||||||
tab.init(mode_settings)
|
tab.init(mode_settings)
|
||||||
|
|
||||||
|
# Make sure the title is set
|
||||||
|
if tab.get_mode():
|
||||||
|
tab.get_mode().mode_settings_widget.title_editing_finished()
|
||||||
|
|
||||||
# If it's persistent, set the persistent image in the tab
|
# If it's persistent, set the persistent image in the tab
|
||||||
self.change_persistent(tab.tab_id, tab.settings.get("persistent", "enabled"))
|
self.change_persistent(tab.tab_id, tab.settings.get("persistent", "enabled"))
|
||||||
|
|
||||||
@ -183,8 +188,13 @@ class TabWidget(QtWidgets.QTabWidget):
|
|||||||
self.bring_to_front.emit()
|
self.bring_to_front.emit()
|
||||||
|
|
||||||
def change_title(self, tab_id, title):
|
def change_title(self, tab_id, title):
|
||||||
|
shortened_title = title
|
||||||
|
if len(shortened_title) > 11:
|
||||||
|
shortened_title = shortened_title[:10] + "..."
|
||||||
|
|
||||||
index = self.indexOf(self.tabs[tab_id])
|
index = self.indexOf(self.tabs[tab_id])
|
||||||
self.setTabText(index, title)
|
self.setTabText(index, shortened_title)
|
||||||
|
self.setTabToolTip(index, title)
|
||||||
|
|
||||||
def change_icon(self, tab_id, icon_path):
|
def change_icon(self, tab_id, icon_path):
|
||||||
index = self.indexOf(self.tabs[tab_id])
|
index = self.indexOf(self.tabs[tab_id])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user