Refactor code completion, container layouts, and webkit settings

- Renamed alt_provider.py file under words completer
- Improve word completion matching logic with character validation
- Change container orientations (header→vertical, left/right→horizontal)
- Add separators to all container edges
- Refactor webkit UI loading into separate load_url/load_context_base_path methods
- Add comprehensive webkit browser-like settings
This commit is contained in:
2026-02-20 00:15:46 -06:00
parent 6714053776
commit eb9e124df5
10 changed files with 148 additions and 18 deletions

View File

@@ -6,6 +6,7 @@ gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
from ..widgets.separator_widget import Separator
from ..widgets.controls.open_files_button import OpenFilesButton
from ..widgets.controls.transparency_scale import TransparencyScale
@@ -27,7 +28,7 @@ class HeaderContainer(Gtk.Box):
self.ctx = self.get_style_context()
self.ctx.add_class("header-container")
self.set_orientation(Gtk.Orientation.HORIZONTAL)
self.set_orientation(Gtk.Orientation.VERTICAL)
self.set_hexpand(True)
def _setup_signals(self):
@@ -42,6 +43,7 @@ class HeaderContainer(Gtk.Box):
button = Gtk.Button(label = "Interactive Debug")
button.connect("clicked", self._interactive_debug)
self.add( Separator("separator-header", 0) )
self.add( OpenFilesButton() )
self.add( TransparencyScale() )
self.add(button)