diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-10-07 18:14:05 +0100 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-10-07 18:14:05 +0100 |
commit | 1af1f7d958fcec70817962563ce1608d985c9a44 (patch) | |
tree | 5bd5542b10c29a8aeb69fec6bcb6c91d40eeb6a4 /src/chat.py | |
parent | 3d3b7109cfe85292cc790f8380cb2f2b3aa0821e (diff) |
fix various exceptions from missing Qweechat code
Diffstat (limited to 'src/chat.py')
-rw-r--r-- | src/chat.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/chat.py b/src/chat.py index ede2817..93b49a3 100644 --- a/src/chat.py +++ b/src/chat.py @@ -102,6 +102,18 @@ class WeegtkChat(Adw.Bin): self.messages.scroll_to(n_items - 1, Gtk.ListScrollFlags.FOCUS) self.window.emit("scroll_child", Gtk.ScrollType.END, False) + def nicklist_add_item(self, parent, group, prefix, name, visible): + # TODO start handling nicklist + pass + + def nicklist_remove_item(self, parent, group, name): + # TODO start handling nicklist + pass + + def nicklist_refresh(self): + # TODO start handling nicklist + pass + def update_prompt(self): # TODO code copied from QWeechat, figure out what I should do with it pass |