| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
Necessary as the pixmap may be deleted at any moment if another caller
requests a differently sized pixmap.
|
|
|
|
|
|
| |
The pixmap should have the size requested and not the original size.
Note that it may be better to do resizing on the callee/method user side
as recreating a pixmap instead of scaling an existing one is expensive.
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
This looks visually more attractive and is way better than squishing the
image to fit in the display name text boundaries.
|
| |
|
|
|
|
|
|
| |
choose_icon's switch statement was missing a return statement for the
default case, which would be unreachable anyways (unless in the case of
a bug) as all enum values are already covered.
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
| |
This class still has improvements to be made, but it works and I am
satisfied with it!
|
|
|
|
| |
This shows the tooltip even when making a release build.
|
| |
|
| |
|
|
|
|
|
| |
This should avoid unnecessary recompiles of the whole project when the
git hash changes and the project is reconfigured.
|
|
|
|
|
| |
I had to make the widget a QTextBrowser as QTextEdit does not allow easy
opening of hyperlinks.
|
|
|
|
| |
Displayed in about dialog.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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!
|
|
|
|
|
|
| |
Compilation would fail due to QtConcurrent changes in Qt 6. See the
following on Qt's website:
https://doc.qt.io/qt-6/concurrent-changes-qt6.html#qtconcurrent-run
|
|
|
|
|
|
| |
The std::variants weren't used and were making the code more complex to
no advantage. All code that would have benefited from variants has
already been moved to QThreads elsewhere
|
| |
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
This type allows extension and the implementation of a more complete
archive item reference system in the future as it allows going beyond
ints.
|
|
|
|
|
|
| |
This replaces the existing method that returns HTML with a method that
gives us an APActivity object, which is more precise and allows more
extension in the future.
|
|
|
|
|
|
|
| |
Implement support for OAuth 2.0 code entry, which is then used to
retrieve a token that is stored in the application's settings.
Authentification allowed the implementation of a basic "get post from
URL" feature mostly made for testing.
|
|
|
|
|
|
|
|
| |
These icons allow users to identify the type of status with ease. I had
to make — hand draw — custom icons as I didn't find any suitable icons
in the Free Desktop Icon Theme Specification. Note that these icons are
currently suitable only for a light theme. Support for a dark theme
shouldn't be too hard to add.
|
|
|
|
|
| |
This allows terser usage and removes the need for manually invoking
QVariant's .value<T>() method.
|
| |
|
|
|
|
| |
It was only used for reference and doesn't serve anything now.
|
|
|
|
|
|
|
|
|
|
| |
This method avoids having to create a SettingsInterface object that will
be only used to read a small number of settings before being destroyed.
It creates a static object that persists between invocations. Through
the use of QSettings for reading a value, we are assured of always
reading the most up to date version of settings as this class guaranties
that changes done to one QSettings object will be immediately visible in
other QSettings objects.
|
|
|
|
|
| |
Implement the "fill address" action in the instance login settings frame
that is in the network tab.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
This class is inherited by MastodonArchive to provide Mastodon (and
compatible) archive reading support. A base Archive class allows
implementing reading support of other archive formats that are from
other services.
|
|
|
|
|
|
|
|
|
|
| |
Some list widget items have lines which where horizontally extending
outside of the viewport, creating a horizontal scrollbar and placing
ellipsis outside of the visible area. This commit fixes this problem by
making sure that ellipsis are placed at the end of the visible lines,
made possible by forbidding horizontal scroll bars which forbids
horizontal scrolling (hopefully this is not a bug as I don't see any
similar property that can be adjusted).
|
|
|
|
|
|
| |
Properly emit the text that was entered in the search bar before the
find dialog was opened. This makes sure that it is queried as expected
by the user.
|
|
|
|
|
| |
This allows us to have an action in the menu bar and a keyboard
shortcut.
|
|
|
|
|
| |
This dialog consolidates options for searching through textual elements
in lists which simplifies the logic present in the MainWindow class.
|
|
|
|
|
| |
Finish consolidating every AP…Field in one file to avoid circular
include dependencies which are very hard/impossible to work with.
|
|
|
|
|
|
|
| |
This commit adds support for dealing with ActivityPub Questions, which
are polls. They are like Notes (posts) but contain a few more keys that
record information about the poll options, number of votes and poll
closure date.
|
|
|
|
|
|
|
| |
"@context" in the outbox.json file is not always a string and sometimes
might be an array with multiple elements. This patch implements a
json_check_item method which checks for the
existence of "https://www.w3.org/ns/activitystreams" in both cases.
|
|
|
|
| |
This fixes misleading variable names.
|
| |
|
|
|
|
|
|
| |
A few CPU heavy operations, which are opening an archive and displaying
a selected Activity, have been moved to another thread to avoid having
long-running operations on the main thread.
|