aboutsummaryrefslogtreecommitdiffstats
path: root/src/widgets
Commit message (Collapse)AuthorAge
* Implement Recent files list and menuConfuSomu2024-06-01
|
* Implement basic Welcome tab for greeting userConfuSomu2024-05-29
|
* Use shared pointer in APAttachment::get_pixmap()ConfuSomu2024-03-24
| | | | | Necessary as the pixmap may be deleted at any moment if another caller requests a differently sized pixmap.
* Scale header image to nicely fill username labelConfuSomu2024-03-24
| | | | | | | This is similar to what the Mastodon web interface (and other clients, such as SubwayTooter) does with header images, only in an empty zone above the display name label. We could evidently change this with ease in the future.
* Draw Actor header image centeredConfuSomu2024-03-20
| | | | | This looks visually more attractive and is way better than squishing the image to fit in the display name text boundaries.
* Use smart pointers with AP classes and InstanceConfuSomu2024-03-20
|
* Display header image in actor info tabConfuSomu2024-01-26
|
* Use QStringLiteral in some placesConfuSomu2024-01-26
| | | | | | This should provide a light performance improvement as the QString is built at compile time, with the generated data being stored in the read-only segment of the built object file.
* Clear Activity list when invalid archive openedConfuSomu2024-01-26
|
* Show error message in actor info tab when no actorConfuSomu2024-01-24
|
* Implemement Actor information tabConfuSomu2024-01-20
| | | | | This class still has improvements to be made, but it works and I am satisfied with it!
* Make mastodonpp support configurableConfuSomu2024-01-08
|
* Make hyperlinks clickable in StatusInfoWidgetConfuSomu2024-01-06
| | | | | I had to make the widget a QTextBrowser as QTextEdit does not allow easy opening of hyperlinks.
* Rerun search if new archive is openedConfuSomu2024-01-05
|
* Remove useless codeConfuSomu2024-01-04
|
* Move activity list to a tab widgetConfuSomu2024-01-03
| | | | | | | | This allows us to have more tabs in the future with additional information, such as information about the Actor or even other activity views. This commit was quite a lot of work and refactoring!
* Fix extraneous margin around status info widgetConfuSomu2023-11-18
|
* Move status info widget to its own widgetConfuSomu2023-11-12
It is responsable of processing list items which are given to it, via signals, and then displaying them on the interface. Making this widget separate and modular will allow creating more advanced status views that aren't only HTML-based and that are more intuitive to use.