# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 24
# self = https://watcher.sour.is/conv/wwc44pq
I'm currently writing my own tview tree table widget where items can be multiple lines long. Turns out scrolling and offsets are quite a challenge. I might have to revisit my mental model. Building this on top of urwid was much easier as I could use some existing widgets as building blocks like a list that already implemented scrolling for arbitrary long items. Tview on the other hand doesn't offer me anything that I can reuse for this undertaking. Starting from scratch.
@lyse Yup, implementing stuff like that is way more complicated and annoying than one might think. 🤔
@lyse Yup, implementing stuff like that is way more complicated and annoying than one might think. 🤔
@lyse Yup, implementing stuff like that is way more complicated and annoying than one might think. 🤔
@lyse What about txwidgets?
@lyse What about txwidgets?
@lyse What about txwidgets?
@lyse What about txwidgets?
@movq Absolutely. Stopped for today, have to consult my pillow. @prologic What's that? I don't find anything useful with that term.
@lyse Sorry tvxwidgets
@lyse Sorry tvxwidgets
@lyse Sorry tvxwidgets
@lyse Sorry tvxwidgets
@prologic Ah, that only provides graph stuff. Unfortunately, doesn't help me.

I could paint on a second screen and then copy over the cropped segment that should be in view. I think I've seen this happening in urwird for scrolling. I could be wrong.
@lyse I could have sworn I saw some List type widgets and even a Tree widgetn somewhere though hmmm ... 🤔
@lyse I could have sworn I saw some List type widgets and even a Tree widgetn somewhere though hmmm ... 🤔
@lyse I could have sworn I saw some List type widgets and even a Tree widgetn somewhere though hmmm ... 🤔
@lyse I could have sworn I saw some List type widgets and even a Tree widgetn somewhere though hmmm ... 🤔
@prologic Tview itself ships a list and tree widget, but they're extremely limited. List items must all have either one or two lines, tree items can only be one line long.
@lyse Ahhh! I see, so you're trying to improve upon this? 🤔
@lyse Ahhh! I see, so you're trying to improve upon this? 🤔
@lyse Ahhh! I see, so you're trying to improve upon this? 🤔
@lyse Ahhh! I see, so you're trying to improve upon this? 🤔
@prologic At least that's the goal. However, progress will not be made until the weekend, that's for sure.