part one of new modern design
This commit is contained in:
347
wirepy.py
347
wirepy.py
@ -24,7 +24,7 @@ from shared_libs.common_tools import (
|
||||
Tooltip,
|
||||
)
|
||||
|
||||
from shared_libs.wp_app_config import AppConfig, Msg
|
||||
from wp_app_config import AppConfig, Msg
|
||||
|
||||
|
||||
class Wirepy(tk.Tk):
|
||||
@ -48,10 +48,12 @@ class Wirepy(tk.Tk):
|
||||
AppConfig.UI_CONFIG["resizable_window"][0],
|
||||
AppConfig.UI_CONFIG["resizable_window"][1],
|
||||
)
|
||||
"""self.minsize(
|
||||
AppConfig.UI_CONFIG["window_size"][0],
|
||||
AppConfig.UI_CONFIG["window_size"][1],
|
||||
)"""
|
||||
self.title(AppConfig.UI_CONFIG["window_title"])
|
||||
|
||||
self.columnconfigure(0, weight=1)
|
||||
self.rowconfigure(0, weight=1)
|
||||
self.tk.call("source", f"{AppConfig.SYSTEM_PATHS['tcl_path']}/water.tcl")
|
||||
ConfigManager.init(AppConfig.SETTINGS_FILE)
|
||||
theme = ConfigManager.get("theme")
|
||||
@ -65,6 +67,8 @@ class Wirepy(tk.Tk):
|
||||
|
||||
# Add the widgets
|
||||
FrameWidgets(self).grid()
|
||||
self.columnconfigure(0, weight=1)
|
||||
self.rowconfigure(0, weight=1)
|
||||
|
||||
# Center the window on the primary monitor
|
||||
LxTools.center_window_cross_platform(self, self.x_width, self.y_height)
|
||||
@ -87,13 +91,20 @@ class FrameWidgets(ttk.Frame):
|
||||
self.dns = None
|
||||
self.address = None
|
||||
self.auto_con = None
|
||||
self.style = ttk.Style()
|
||||
self.wg_vpn_start = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_start"])
|
||||
self.wg_vpn_stop = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_stop"])
|
||||
self.imp_pic = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_import"])
|
||||
self.tr_pic = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_trash"])
|
||||
self.exp_pic = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_export"])
|
||||
self.warning_pic = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_error"])
|
||||
self.wg_icon_header = tk.PhotoImage(file=AppConfig.IMAGE_PATHS["icon_header"])
|
||||
self.columnconfigure(0, weight=1)
|
||||
self.rowconfigure(0, weight=1)
|
||||
self.columnconfigure(1, weight=1)
|
||||
self.rowconfigure(1, weight=1)
|
||||
self.columnconfigure(2, weight=18)
|
||||
self.rowconfigure(2, weight=1)
|
||||
self.rowconfigure(3, weight=1)
|
||||
|
||||
# StringVar-Variables initialization
|
||||
self.tooltip_state = tk.BooleanVar()
|
||||
@ -122,20 +133,10 @@ class FrameWidgets(ttk.Frame):
|
||||
|
||||
# Frame for Menu
|
||||
self.menu_frame = ttk.Frame(self)
|
||||
self.menu_frame.configure(relief="flat")
|
||||
self.menu_frame.grid(column=0, row=0, columnspan=4, sticky="w")
|
||||
|
||||
# App Menu
|
||||
self.version_lb = ttk.Label(self.menu_frame, text=AppConfig.VERSION)
|
||||
self.version_lb.config(font=("Ubuntu", 11), foreground="#00c4ff")
|
||||
self.version_lb.grid(column=0, row=0, rowspan=4, padx=10)
|
||||
|
||||
Tooltip(
|
||||
self.version_lb, f"Version: {AppConfig.VERSION[2:]}", self.tooltip_state
|
||||
)
|
||||
self.menu_frame.grid(column=0, columnspan=3, row=1, sticky="we")
|
||||
|
||||
self.options_btn = ttk.Menubutton(self.menu_frame, text=_("Options"))
|
||||
self.options_btn.grid(column=1, columnspan=1, row=0)
|
||||
self.options_btn.grid(column=0, row=0)
|
||||
|
||||
Tooltip(self.options_btn, Msg.TTIP["settings"], self.tooltip_state)
|
||||
|
||||
@ -147,9 +148,8 @@ class FrameWidgets(ttk.Frame):
|
||||
command=lambda: self.update_setting(self.set_update.get()),
|
||||
variable=self.set_update,
|
||||
)
|
||||
|
||||
self.updates_lb = ttk.Label(self.menu_frame, textvariable=self.update_label)
|
||||
self.updates_lb.grid(column=4, columnspan=3, row=0, padx=10)
|
||||
self.updates_lb.grid(column=2, row=0)
|
||||
self.updates_lb.grid_remove()
|
||||
self.update_label.trace_add("write", self.update_label_display)
|
||||
self.update_foreground.trace_add("write", self.update_label_display)
|
||||
@ -177,69 +177,146 @@ class FrameWidgets(ttk.Frame):
|
||||
self.about_btn = ttk.Button(
|
||||
self.menu_frame, text=_("About"), style="Toolbutton", command=self.about
|
||||
)
|
||||
self.about_btn.grid(column=2, columnspan=2, row=0)
|
||||
self.readme = tk.Menu(self)
|
||||
self.about_btn.grid(column=1, row=0)
|
||||
|
||||
self.a = Tunnel.get_active()
|
||||
|
||||
# Label Frame 1
|
||||
self.lb_frame_btn_lbox = ttk.Frame(self)
|
||||
self.lb_frame_btn_lbox.configure(relief="flat")
|
||||
self.lb_frame_btn_lbox.grid(column=0, rowspan=3, row=1)
|
||||
|
||||
# Label Frame 2
|
||||
self.lb_frame = ttk.Frame(self)
|
||||
self.lb_frame.configure(relief="solid")
|
||||
self.lb_frame.grid(column=2, row=2, sticky="snew", padx=20, pady=5)
|
||||
|
||||
# Label Frame 3
|
||||
self.lb_frame2 = ttk.Frame(self)
|
||||
self.lb_frame2.configure(relief="solid")
|
||||
self.lb_frame2.grid(column=2, row=3, sticky="snew", padx=20, pady=5)
|
||||
|
||||
# Bottom Frame 4
|
||||
self.lb_frame3 = ttk.Frame(self)
|
||||
self.lb_frame3.configure(relief="flat")
|
||||
self.lb_frame3.grid(
|
||||
column=0, row=5, columnspan=4, sticky="snew", padx=2, pady=2
|
||||
# Header Frame
|
||||
# Festlegen der Farbe
|
||||
self.header_frame = tk.Frame(self, bg="#2c3e50")
|
||||
self.wg_icon_header_frame = tk.Frame(self.header_frame, bg="#2c3e50")
|
||||
self.header_label = tk.Label(
|
||||
self.header_frame,
|
||||
text=_("Lx Tools Wire-Py"),
|
||||
font=("Helvetica", 12, "bold"),
|
||||
fg="#ffffff",
|
||||
bg="#2c3e50",
|
||||
)
|
||||
|
||||
# Bottom Frame 5
|
||||
self.lb_frame4 = ttk.Frame(self)
|
||||
self.lb_frame4.configure(relief="flat")
|
||||
self.lb_frame4.grid(column=2, row=5, columnspan=3, sticky="e", padx=15)
|
||||
self.version_label = tk.Label(
|
||||
self.header_frame,
|
||||
text=f"{AppConfig.VERSION} • {Msg.STR["header_left_bottom"]}",
|
||||
font=("Helvetica", 9),
|
||||
fg="#bdc3c7",
|
||||
bg="#2c3e50",
|
||||
)
|
||||
self.info_label = tk.Label(
|
||||
self.header_frame,
|
||||
text=Msg.STR["header_right_top"],
|
||||
font=("Helvetica", 10),
|
||||
fg="#ecf0f1",
|
||||
bg="#2c3e50",
|
||||
)
|
||||
self.header_frame.grid(column=0, columnspan=3, row=0, sticky="nsew")
|
||||
self.wg_icon_header_frame.grid(column=0, row=0, rowspan=2, sticky="w")
|
||||
|
||||
self.wg_icon_header_label = tk.Label(
|
||||
self.wg_icon_header_frame, image=self.wg_icon_header, bg="#2c3e50"
|
||||
)
|
||||
self.wg_icon_header_label.grid(column=0, row=0, sticky="e", ipadx=10)
|
||||
|
||||
self.header_label.grid(
|
||||
column=1,
|
||||
row=0,
|
||||
sticky="w",
|
||||
padx=(5, 20),
|
||||
pady=(10, 0),
|
||||
ipady=4,
|
||||
)
|
||||
self.version_label.grid(column=1, row=1, sticky="w", padx=(5, 20), pady=(0, 10))
|
||||
self.info_label.grid(column=2, row=0, sticky="ne", padx=(10, 10), pady=(10, 0))
|
||||
self.header_frame.columnconfigure(1, weight=1, pad=2)
|
||||
self.header_frame.rowconfigure(0, weight=1)
|
||||
|
||||
# Frame for Control Buttons (Start, Stop, Import, Trash, Export)
|
||||
self.control_buttons_frame = ttk.Frame(self)
|
||||
self.control_buttons_frame.grid(column=0, row=2, sticky="w", padx=(15, 0))
|
||||
self.control_buttons_frame.columnconfigure(0, weight=1)
|
||||
self.control_buttons_frame.rowconfigure(2, weight=1)
|
||||
|
||||
# Frame for Listbox and Scrollbar
|
||||
self.list_container_frame = ttk.Frame(self)
|
||||
self.list_container_frame.grid(column=1, row=2, sticky="nsew", pady=3)
|
||||
self.list_container_frame.columnconfigure(1, weight=1)
|
||||
self.list_container_frame.rowconfigure(2, weight=1)
|
||||
self.list_frame = ttk.LabelFrame(self.list_container_frame, text=_("Tunnels"))
|
||||
self.list_frame.grid(column=0, row=0, sticky="nsew", padx=10, ipady=25)
|
||||
# Listbox with Scrollbar
|
||||
self.list_box = tk.Listbox(self.list_frame, selectmode="single")
|
||||
self.list_box.config(
|
||||
relief="flat",
|
||||
font=("Ubuntu", 12, "bold"),
|
||||
)
|
||||
self.list_box.grid(column=0, row=0, sticky="nsew")
|
||||
self.list_box.event_add("<<ClickEvent>>", "<Button-1>")
|
||||
self.list_box.bind("<<ClickEvent>>", self.enable_check_box)
|
||||
self.scrollbar = ttk.Scrollbar(
|
||||
self.list_frame, orient="vertical", command=self.list_box.yview
|
||||
)
|
||||
self.scrollbar.grid(column=1, row=0, sticky="ns")
|
||||
self.list_box.configure(yscrollcommand=self.scrollbar.set)
|
||||
self.scrollbar.columnconfigure(1, weight=1)
|
||||
self.scrollbar.rowconfigure(0, weight=1)
|
||||
|
||||
# Frame for Active Tunnel, Interface and Peer
|
||||
# Right Side Frame
|
||||
self.right_side_frame = ttk.Frame(self)
|
||||
self.right_side_frame.grid(column=2, row=2, sticky="nsew")
|
||||
self.right_side_frame.columnconfigure(2, weight=1)
|
||||
self.right_side_frame.rowconfigure(2, weight=1)
|
||||
|
||||
# Show active Label
|
||||
self.select_tunnel = None
|
||||
self.lb = ttk.Label(self, text=_("Active: "))
|
||||
self.lb.config(font=("Ubuntu", 11, "bold"))
|
||||
self.lb.grid(column=2, row=1, padx=15, pady=4, sticky="w")
|
||||
self.active_frame = ttk.LabelFrame(
|
||||
self.right_side_frame, text=_("Active Tunnel")
|
||||
)
|
||||
|
||||
self.active_frame.grid(
|
||||
column=0, row=0, sticky="nsew", padx=10, pady=5, columnspan=3
|
||||
)
|
||||
self.active_frame.columnconfigure(0, weight=1)
|
||||
self.active_frame.rowconfigure(0, weight=1)
|
||||
# Interface Label Frame
|
||||
self.interface_frame = ttk.LabelFrame(
|
||||
self.right_side_frame, text=_("Interface")
|
||||
)
|
||||
self.interface_frame.grid(
|
||||
column=0, row=1, sticky="nsew", padx=10, pady=5, columnspan=3
|
||||
)
|
||||
self.interface_frame.columnconfigure(0, weight=1)
|
||||
self.interface_frame.rowconfigure(1, weight=1)
|
||||
|
||||
# Peer Label Frame
|
||||
self.peer_frame = ttk.LabelFrame(self.right_side_frame, text=_("Peer"))
|
||||
self.peer_frame.grid(
|
||||
column=0, row=2, sticky="nsew", padx=10, pady=5, columnspan=3
|
||||
)
|
||||
self.peer_frame.columnconfigure(0, weight=1)
|
||||
self.peer_frame.rowconfigure(2, weight=1)
|
||||
|
||||
# Auto Start Label Frame
|
||||
self.autoconnect_frame = ttk.Frame(self)
|
||||
self.autoconnect_frame.grid(column=0, row=3, columnspan=2, sticky="w")
|
||||
|
||||
# Rename Frame
|
||||
self.rename_frame = ttk.Frame(self)
|
||||
self.rename_frame.grid(column=2, padx=10, row=3, sticky="nsew")
|
||||
self.rename_frame.columnconfigure(0, weight=1)
|
||||
self.rename_frame.columnconfigure(1, weight=1)
|
||||
|
||||
# Label to Show active Tunnel
|
||||
self.str_var = tk.StringVar(value=self.a)
|
||||
self.color_label()
|
||||
|
||||
# Interface Label
|
||||
self.interface = ttk.Label(self.lb_frame, text=_("Interface"))
|
||||
self.interface.grid(column=0, row=3, sticky="we", padx=120)
|
||||
self.interface = ttk.Label(self.interface_frame)
|
||||
self.interface.grid(column=0, row=4, sticky="we")
|
||||
self.interface.config(font=("Ubuntu", 9))
|
||||
|
||||
# Peer Label
|
||||
self.peer = ttk.Label(self.lb_frame2, text=_("Peer"))
|
||||
self.peer = ttk.Label(self.peer_frame)
|
||||
self.peer.config(font=("Ubuntu", 9))
|
||||
self.peer.grid(column=0, row=4, sticky="we", padx=130)
|
||||
|
||||
# Listbox with Scrollbar
|
||||
self.l_box = tk.Listbox(self.lb_frame_btn_lbox, selectmode="single")
|
||||
self.l_box.config(relief="ridge", font=("Ubuntu", 12, "bold"))
|
||||
self.l_box.grid(column=1, rowspan=4, row=0, sticky="ns")
|
||||
self.l_box.event_add("<<ClickEvent>>", "<Button-1>")
|
||||
self.l_box.bind("<<ClickEvent>>", self.enable_check_box)
|
||||
self.scrollbar = ttk.Scrollbar(
|
||||
self.lb_frame_btn_lbox, orient="vertical", command=self.l_box.yview
|
||||
)
|
||||
self.scrollbar.grid(column=1, rowspan=4, row=0, sticky="nse")
|
||||
self.l_box.configure(yscrollcommand=self.scrollbar.set)
|
||||
self.peer.grid(column=0, row=5, sticky="we")
|
||||
|
||||
# Tunnel List
|
||||
self.tl = Tunnel.parse_files_to_dictionary(directory=AppConfig.TEMP_DIR)
|
||||
@ -247,8 +324,8 @@ class FrameWidgets(ttk.Frame):
|
||||
AppConfig.ensure_directories()
|
||||
|
||||
for tunnels, values in self.tl.items():
|
||||
self.l_box.insert("end", tunnels)
|
||||
self.l_box.update()
|
||||
self.list_box.insert("end", tunnels)
|
||||
self.list_box.update()
|
||||
|
||||
# Button Vpn
|
||||
if self.a != "":
|
||||
@ -267,52 +344,55 @@ class FrameWidgets(ttk.Frame):
|
||||
|
||||
# Button Import
|
||||
self.btn_i = ttk.Button(
|
||||
self.lb_frame_btn_lbox,
|
||||
self.control_buttons_frame,
|
||||
image=self.imp_pic,
|
||||
command=self.import_sl,
|
||||
padding=0,
|
||||
)
|
||||
self.btn_i.grid(column=0, row=1, padx=15, pady=8)
|
||||
self.btn_i.grid(column=0, row=1, pady=8)
|
||||
|
||||
Tooltip(self.btn_i, Msg.TTIP["import_tl"], self.tooltip_state)
|
||||
|
||||
# Button Trash
|
||||
self.btn_tr = ttk.Button(
|
||||
self.lb_frame_btn_lbox,
|
||||
self.control_buttons_frame,
|
||||
image=self.tr_pic,
|
||||
command=self.delete,
|
||||
padding=0,
|
||||
style="CButton.TButton",
|
||||
)
|
||||
self.btn_tr.grid(column=0, row=2, padx=15, pady=8)
|
||||
self.btn_tr.grid(column=0, row=2, pady=8)
|
||||
|
||||
if self.l_box.size() == 0:
|
||||
if self.list_box.size() == 0:
|
||||
Tooltip(self.btn_tr, Msg.TTIP["trash_tl_info"], self.tooltip_state)
|
||||
else:
|
||||
Tooltip(self.btn_tr, Msg.TTIP["trash_tl"], self.tooltip_state)
|
||||
|
||||
# Button Export
|
||||
self.btn_exp = ttk.Button(
|
||||
self.lb_frame_btn_lbox,
|
||||
self.control_buttons_frame,
|
||||
image=self.exp_pic,
|
||||
command=lambda: Tunnel.export(),
|
||||
padding=0,
|
||||
)
|
||||
|
||||
self.btn_exp.grid(column=0, row=3, padx=15, pady=8)
|
||||
self.btn_exp.grid(column=0, row=3, pady=8)
|
||||
self.btn_exp.columnconfigure(0, weight=1)
|
||||
self.btn_exp.rowconfigure(3, weight=1)
|
||||
|
||||
if self.l_box.size() == 0:
|
||||
if self.list_box.size() == 0:
|
||||
Tooltip(self.btn_exp, Msg.TTIP["export_tl_info"], self.tooltip_state)
|
||||
else:
|
||||
Tooltip(self.btn_exp, Msg.TTIP["export_tl"], self.tooltip_state)
|
||||
|
||||
# Label Entry
|
||||
self.lb_rename = ttk.Entry(self.lb_frame4, width=20)
|
||||
self.lb_rename.grid(column=2, row=0, padx=8, pady=10, sticky="ne")
|
||||
self.lb_rename = ttk.Entry(self.rename_frame)
|
||||
self.lb_rename.grid(column=0, row=0, padx=8, pady=10, sticky="ne")
|
||||
self.lb_rename.config(width=15)
|
||||
|
||||
self.lb_rename.insert(0, _("Max. 12 characters!"))
|
||||
self.lb_rename.config(state="disable")
|
||||
|
||||
if self.l_box.size() != 0:
|
||||
if self.list_box.size() != 0:
|
||||
Tooltip(
|
||||
self.lb_rename,
|
||||
Msg.TTIP["rename_tl"],
|
||||
@ -331,14 +411,12 @@ class FrameWidgets(ttk.Frame):
|
||||
|
||||
# Button Rename
|
||||
self.btn_rename = ttk.Button(
|
||||
self.lb_frame4,
|
||||
self.rename_frame,
|
||||
text=_("Rename"),
|
||||
state="disable",
|
||||
command=self.tl_rename,
|
||||
padding=4,
|
||||
style="RnButton.TButton",
|
||||
)
|
||||
self.btn_rename.grid(column=3, row=0, padx=5, pady=10, sticky="ne")
|
||||
self.btn_rename.grid(column=1, row=0, pady=10, sticky="nsew")
|
||||
|
||||
# Check Buttons
|
||||
self.selected_option = tk.IntVar()
|
||||
@ -347,19 +425,21 @@ class FrameWidgets(ttk.Frame):
|
||||
|
||||
# Frame for Labels, Entry and Button
|
||||
self.autoconnect = ttk.Label(
|
||||
self.lb_frame3, textvariable=self.autoconnect_var, width=15
|
||||
self.autoconnect_frame, textvariable=self.autoconnect_var
|
||||
)
|
||||
self.autoconnect.config(font=("Ubuntu", 11))
|
||||
self.autoconnect.grid(column=1, row=0, sticky="e", pady=19)
|
||||
self.autoconnect.grid(column=1, row=0, pady=10, sticky="nsew")
|
||||
self.autoconnect.columnconfigure(1, weight=1)
|
||||
self.autoconnect.rowconfigure(0, weight=1)
|
||||
self.wg_autostart = ttk.Checkbutton(
|
||||
self.lb_frame3,
|
||||
self.autoconnect_frame,
|
||||
text=_("Autoconnect on:"),
|
||||
variable=self.selected_option,
|
||||
command=self.box_set,
|
||||
)
|
||||
self.wg_autostart.grid(column=0, row=0, pady=15, padx=15, sticky="nw")
|
||||
self.wg_autostart.grid(column=0, row=0, pady=10, padx=(10, 0), sticky="ew")
|
||||
|
||||
if self.l_box.size() >= 1 and len(self.l_box.curselection()) >= 1:
|
||||
if self.list_box.size() >= 1 and len(self.list_box.curselection()) >= 1:
|
||||
Tooltip(
|
||||
self.wg_autostart,
|
||||
Msg.TTIP["autostart"],
|
||||
@ -368,7 +448,7 @@ class FrameWidgets(ttk.Frame):
|
||||
y_offset=-40,
|
||||
)
|
||||
|
||||
if self.l_box.size() == 0:
|
||||
if self.list_box.size() == 0:
|
||||
Tooltip(
|
||||
self.wg_autostart,
|
||||
Msg.TTIP["autostart_info"],
|
||||
@ -562,7 +642,9 @@ class FrameWidgets(ttk.Frame):
|
||||
new_theme = "dark" if current_theme == "light" else "light"
|
||||
ThemeManager.change_theme(self, new_theme, new_theme)
|
||||
self.color_label()
|
||||
self.header_label.config(fg="#ffffff")
|
||||
self.update_theme_label() # Update the theme label
|
||||
|
||||
# Update Menulfield
|
||||
self.settings.entryconfigure(2, label=self.theme_label.get())
|
||||
|
||||
@ -571,14 +653,16 @@ class FrameWidgets(ttk.Frame):
|
||||
Start Button
|
||||
"""
|
||||
self.btn_stst = ttk.Button(
|
||||
self.lb_frame_btn_lbox,
|
||||
self.control_buttons_frame,
|
||||
image=self.wg_vpn_start,
|
||||
command=lambda: self.wg_switch("start"),
|
||||
padding=0,
|
||||
)
|
||||
self.btn_stst.grid(column=0, row=0, padx=5, pady=8)
|
||||
self.btn_stst.grid(column=0, row=0, pady=8)
|
||||
self.btn_stst.columnconfigure(0, weight=1)
|
||||
self.btn_stst.rowconfigure(0, weight=1)
|
||||
|
||||
if self.l_box.size() == 0:
|
||||
if self.list_box.size() == 0:
|
||||
Tooltip(self.btn_stst, Msg.TTIP["empty_list"], self.tooltip_state)
|
||||
else:
|
||||
Tooltip(self.btn_stst, Msg.TTIP["start_tl"], self.tooltip_state)
|
||||
@ -590,28 +674,32 @@ class FrameWidgets(ttk.Frame):
|
||||
if ConfigManager.get("theme") == "light":
|
||||
|
||||
self.lb_tunnel = ttk.Label(
|
||||
self, textvariable=self.str_var, foreground="green"
|
||||
self.active_frame, textvariable=self.str_var, foreground="green"
|
||||
)
|
||||
|
||||
else:
|
||||
self.lb_tunnel = ttk.Label(
|
||||
self, textvariable=self.str_var, foreground="yellow"
|
||||
self.active_frame, textvariable=self.str_var, foreground="yellow"
|
||||
)
|
||||
|
||||
self.lb_tunnel.config(font=("Ubuntu", 11, "bold"))
|
||||
self.lb_tunnel.grid(column=2, padx=10, row=1)
|
||||
self.lb_tunnel.grid(column=0, row=0, padx=10, pady=(0, 10), sticky="n")
|
||||
self.lb_tunnel.columnconfigure(0, weight=1)
|
||||
self.lb_tunnel.rowconfigure(0, weight=1)
|
||||
|
||||
def stop(self) -> None:
|
||||
"""
|
||||
Stop Button
|
||||
"""
|
||||
self.btn_stst = ttk.Button(
|
||||
self.lb_frame_btn_lbox,
|
||||
self.control_buttons_frame,
|
||||
image=self.wg_vpn_stop,
|
||||
command=lambda: self.wg_switch("stop"),
|
||||
padding=0,
|
||||
)
|
||||
self.btn_stst.grid(column=0, row=0, padx=5, pady=8)
|
||||
self.btn_stst.grid(column=0, row=0, pady=8)
|
||||
self.btn_stst.columnconfigure(0, weight=1)
|
||||
self.btn_stst.rowconfigure(0, weight=1)
|
||||
|
||||
Tooltip(self.btn_stst, Msg.TTIP["stop_tl"], self.tooltip_state)
|
||||
|
||||
@ -699,11 +787,11 @@ class FrameWidgets(ttk.Frame):
|
||||
AppConfig.ensure_directories()
|
||||
self.str_var.set("")
|
||||
self.a = Tunnel.get_active()
|
||||
self.l_box.insert(0, self.a)
|
||||
self.list_box.insert(0, self.a)
|
||||
self.wg_autostart.configure(state="normal")
|
||||
self.l_box.selection_clear(0, tk.END)
|
||||
self.l_box.update()
|
||||
self.l_box.selection_set(0)
|
||||
self.list_box.selection_clear(0, tk.END)
|
||||
self.list_box.update()
|
||||
self.list_box.selection_set(0)
|
||||
|
||||
Tooltip(
|
||||
self.wg_autostart,
|
||||
@ -748,8 +836,8 @@ class FrameWidgets(ttk.Frame):
|
||||
delete Wireguard Tunnel
|
||||
"""
|
||||
try:
|
||||
self.select_tunnel = self.l_box.curselection()
|
||||
select_tl = self.l_box.get(self.select_tunnel[0])
|
||||
self.select_tunnel = self.list_box.curselection()
|
||||
select_tl = self.list_box.get(self.select_tunnel[0])
|
||||
|
||||
process: CompletedProcess[str] = run(
|
||||
["nmcli", "connection", "delete", select_tl],
|
||||
@ -763,7 +851,7 @@ class FrameWidgets(ttk.Frame):
|
||||
f"{process.stderr} Code: {process.returncode}", exc_info=True
|
||||
)
|
||||
|
||||
self.l_box.delete(self.select_tunnel[0])
|
||||
self.list_box.delete(self.select_tunnel[0])
|
||||
Path.unlink(f"{AppConfig.CONFIG_DIR}/{select_tl}.dat")
|
||||
|
||||
if select_tl == ConfigManager.get("autostart"):
|
||||
@ -774,7 +862,7 @@ class FrameWidgets(ttk.Frame):
|
||||
self.wg_autostart.configure(state="disabled")
|
||||
|
||||
# for disabling checkbox when Listbox empty
|
||||
if self.l_box.size() == 0:
|
||||
if self.list_box.size() == 0:
|
||||
self.wg_autostart.configure(state="disabled")
|
||||
self.lb_rename.configure(state="disabled")
|
||||
Tooltip(
|
||||
@ -793,12 +881,12 @@ class FrameWidgets(ttk.Frame):
|
||||
if self.a != "" and self.a == select_tl:
|
||||
self.str_var.set(value="")
|
||||
self.start()
|
||||
self.l_box.update()
|
||||
self.list_box.update()
|
||||
self.reset_fields()
|
||||
|
||||
except IndexError:
|
||||
|
||||
if self.l_box.size() != 0:
|
||||
if self.list_box.size() != 0:
|
||||
|
||||
MessageDialog("info", Msg.STR["sel_list"], title=Msg.STR["sel_tl"])
|
||||
|
||||
@ -811,7 +899,7 @@ class FrameWidgets(ttk.Frame):
|
||||
checkbox for enable autostart Tunnel
|
||||
"""
|
||||
AppConfig.get_autostart_content()
|
||||
if self.l_box.size() != 0:
|
||||
if self.list_box.size() != 0:
|
||||
self.wg_autostart.configure(state="normal")
|
||||
self.lb_rename.config(state="normal")
|
||||
self.lb_rename.delete(0, tk.END)
|
||||
@ -838,13 +926,14 @@ class FrameWidgets(ttk.Frame):
|
||||
self.autoconnect_var.set(self.auto_con)
|
||||
|
||||
self.autoconnect = ttk.Label(
|
||||
self.lb_frame3,
|
||||
self.autoconnect_frame,
|
||||
textvariable=self.autoconnect_var,
|
||||
foreground="#0071ff",
|
||||
width=15,
|
||||
width=18,
|
||||
)
|
||||
self.autoconnect.config(font=("Ubuntu", 11))
|
||||
self.autoconnect.grid(column=1, row=0, sticky="e", pady=19)
|
||||
self.autoconnect.grid(column=1, row=0, sticky="ew", pady=19)
|
||||
self.autoconnect.rowconfigure(0, weight=1)
|
||||
|
||||
def box_set(self) -> None:
|
||||
"""
|
||||
@ -858,13 +947,13 @@ class FrameWidgets(ttk.Frame):
|
||||
to disable the autostart.
|
||||
"""
|
||||
try:
|
||||
select_tunnel = self.l_box.curselection()
|
||||
select_tl = self.l_box.get(select_tunnel[0])
|
||||
select_tunnel = self.list_box.curselection()
|
||||
select_tl = self.list_box.get(select_tunnel[0])
|
||||
|
||||
if self.selected_option.get() == 0:
|
||||
ConfigManager.set("autostart", "off")
|
||||
|
||||
if self.l_box.size() == 0:
|
||||
if self.list_box.size() == 0:
|
||||
self.wg_autostart.configure(state="disabled")
|
||||
|
||||
if self.selected_option.get() >= 1:
|
||||
@ -906,8 +995,8 @@ class FrameWidgets(ttk.Frame):
|
||||
else:
|
||||
|
||||
try:
|
||||
self.select_tunnel = self.l_box.curselection()
|
||||
select_tl = self.l_box.get(self.select_tunnel[0])
|
||||
self.select_tunnel = self.list_box.curselection()
|
||||
select_tl = self.list_box.get(self.select_tunnel[0])
|
||||
|
||||
# nmcli connection modify old connection.id iphone
|
||||
process: CompletedProcess[str] = run(
|
||||
@ -935,9 +1024,9 @@ class FrameWidgets(ttk.Frame):
|
||||
if select_tl == ConfigManager.get("autostart"):
|
||||
ConfigManager.set("autostart", self.lb_rename.get())
|
||||
self.autoconnect_var.set(value=self.lb_rename.get())
|
||||
self.l_box.delete(self.select_tunnel[0])
|
||||
self.l_box.insert("end", self.lb_rename.get())
|
||||
self.l_box.update()
|
||||
self.list_box.delete(self.select_tunnel[0])
|
||||
self.list_box.insert("end", self.lb_rename.get())
|
||||
self.list_box.update()
|
||||
self.lb_rename.delete(0, tk.END)
|
||||
self.update_connection_display()
|
||||
|
||||
@ -968,34 +1057,36 @@ class FrameWidgets(ttk.Frame):
|
||||
in the UI using ttk.Label widgets.
|
||||
Creates three labels for address, DNS, and endpoint with
|
||||
specific styling (color, font), positioning them in a
|
||||
grid layout (`lb_frame` and `lb_frame2`).
|
||||
grid layout (`lb_frame` and `peer_frame`).
|
||||
Each label is linked to a corresponding text variable
|
||||
(`self.add`, `self.DNS`, `self.enp`) for dynamic data updates.
|
||||
"""
|
||||
# Address Label
|
||||
self.address = ttk.Label(
|
||||
self.lb_frame, textvariable=self.add, foreground="#0071ff"
|
||||
self.interface_frame, textvariable=self.add, foreground="#0071ff"
|
||||
)
|
||||
self.address.grid(column=0, row=5, sticky="w", padx=10, pady=6)
|
||||
self.address.grid(column=0, row=5, sticky="w", padx=10, pady=(0, 20))
|
||||
self.address.config(font=("Ubuntu", 9))
|
||||
|
||||
# DNS Label
|
||||
self.dns = ttk.Label(self.lb_frame, textvariable=self.DNS, foreground="#0071ff")
|
||||
self.dns.grid(column=0, row=7, sticky="w", padx=10, pady=6)
|
||||
self.dns = ttk.Label(
|
||||
self.interface_frame, textvariable=self.DNS, foreground="#0071ff"
|
||||
)
|
||||
self.dns.grid(column=0, row=7, sticky="w", padx=10, pady=(0, 20))
|
||||
self.dns.config(font=("Ubuntu", 9))
|
||||
|
||||
# Endpoint Label
|
||||
self.endpoint = ttk.Label(
|
||||
self.lb_frame2, textvariable=self.enp, foreground="#0071ff"
|
||||
self.peer_frame, textvariable=self.enp, foreground="#0071ff"
|
||||
)
|
||||
self.endpoint.grid(column=0, row=8, sticky="w", padx=10, pady=20)
|
||||
self.endpoint.grid(column=0, row=8, sticky="w", padx=10, pady=(0, 30))
|
||||
self.endpoint.config(font=("Ubuntu", 9))
|
||||
|
||||
def wg_switch(self, event=None) -> None:
|
||||
"""
|
||||
Manages switching between active and inactiveVPN connections.
|
||||
If no tunnel is selected (`self.a == ""`), it starts a new connection
|
||||
with the selected tunnel from the listbox (`l_box`).
|
||||
with the selected tunnel from the listbox (`list_box`).
|
||||
Otherwise, it stops the current connection and updates
|
||||
tunnel data using `handle_tunnel_data`.
|
||||
Handles errors like `IndexError` by displaying appropriate
|
||||
@ -1003,8 +1094,8 @@ class FrameWidgets(ttk.Frame):
|
||||
"""
|
||||
try:
|
||||
if self.a == "":
|
||||
self.select_tunnel = self.l_box.curselection()
|
||||
select_tl = self.l_box.get(self.select_tunnel[0])
|
||||
self.select_tunnel = self.list_box.curselection()
|
||||
select_tl = self.list_box.get(self.select_tunnel[0])
|
||||
self.handle_connection_state("start", select_tl)
|
||||
|
||||
else:
|
||||
@ -1014,7 +1105,7 @@ class FrameWidgets(ttk.Frame):
|
||||
|
||||
except IndexError:
|
||||
|
||||
if self.l_box.size() != 0:
|
||||
if self.list_box.size() != 0:
|
||||
|
||||
MessageDialog("info", Msg.STR["sel_list"], title=Msg.STR["sel_tl"])
|
||||
|
||||
|
@ -57,18 +57,18 @@ class AppConfig:
|
||||
|
||||
# Updates
|
||||
# 1 = 1. Year, 09 = Month of the Year, 2924 = Day and Year of the Year
|
||||
VERSION: str = "v. 2.06.2425"
|
||||
VERSION: str = "v. 2.06.2625"
|
||||
UPDATE_URL: str = "https://git.ilunix.de/api/v1/repos/punix/Wire-Py/releases"
|
||||
DOWNLOAD_URL: str = "https://git.ilunix.de/punix/Wire-Py/archive"
|
||||
|
||||
# UI configuration
|
||||
UI_CONFIG: Dict[str, Any] = {
|
||||
"window_title": "Wire-Py",
|
||||
"window_title": "",
|
||||
"window_title2": "LogViewer",
|
||||
"window_size": (600, 383),
|
||||
"window_size": (558, 450),
|
||||
"font_family": "Ubuntu",
|
||||
"font_size": 11,
|
||||
"resizable_window": (False, False),
|
||||
"resizable_window": (True, True),
|
||||
}
|
||||
|
||||
# System-dependent paths
|
||||
@ -81,6 +81,7 @@ class AppConfig:
|
||||
|
||||
# Images and icons paths
|
||||
IMAGE_PATHS: Dict[str, Path] = {
|
||||
"icon_header": "/usr/share/icons/lx-icons/32/wg_vpn.png",
|
||||
"icon_vpn": "/usr/share/icons/lx-icons/48/wg_vpn.png",
|
||||
"icon_msg": "/usr/share/icons/lx-icons/48/wg_msg.png",
|
||||
"icon_import": "/usr/share/icons/lx-icons/48/wg_import.png",
|
||||
@ -193,6 +194,8 @@ class Msg:
|
||||
|
||||
STR: Dict[str, str] = {
|
||||
# Strings for messages
|
||||
"header_left_bottom": _("Simple GUI for Wireguard"),
|
||||
"header_right_top": _("Wireguard VPN Manager"),
|
||||
"sel_tl": _("Select tunnel"),
|
||||
"ren_err": _("Renaming not possible"),
|
||||
"exp_succ": _("Export successful"),
|
||||
|
Reference in New Issue
Block a user