Falkon Adblock dialog and remove rule

AdBlock Dialog

During the development of the AdBlock stuff I need to frequently interact with AdBlock Dialog window to modify the “Custom Rules” filter list. Since due to historical reasons and probably for the ease of use the dialog uses QTreeWidget and each item added to this list is mapped to the source QVector list (QList now) by an index number stored in the data section of the widget item.

I hope you already see where the source of my frustration and potential issues is (maybe relevant bug?). After the item was removed from the list, the underlying indexes in data section in other items where not updated which let to not deleting rules, deleting incorrect rules, crashing and maybe some other weird stuff.

SO I went to fix it with heavy guns, I wrote a simple model based on QAbstractListModel to handle the mapping between the items and underlying storage container. I chose list model because it is simpler to work with (yes, I lack experience with Qt models) and because I thought QListView would do a better job than the QTreeView. I was wrong, it turned out that QTreeView is much faster to display the data on the screen than the QListView, so I switched to it and I kept the simpler list idea (my head already hurts). to replace the original top level item, I enabled the header and use it for the same purpose. It does not look as nice as the previous version, but I hope it will be more stable and also faster to show.

The code can be found on KDE Invent.

Adblock Dialog: on left before the change, on right after the change.

Adblock Dialog: on left before the change, on right after the change.

Remove rule

Somehow I was exploring the ABP Test Pages again and when I saw the Remove rule I thought “this can be done” and went to play with it. It is the same as CSS hiding rules with an additional {remove:true} at the end. But it needs another JavaScript to work, so I am happy that the technology progressed and there is querySelectorAll(css) to select elements based on the CSS selectors. With a simple for look to remove all selected elements the deed was done.

This way, Falkon might have support for another rarely used AdBlock rule.

The code can be found on KDE Invent.

Ending thoughts

I like working on things which are rarely used.

I also updated the Falkon ABP Test Page results.

Articles from blogs I follow:

What if one of your online friends dies unexpectedly?

A lot of people experience online friends "vanishing" without notice. A new nonprofit project tries to help prevent this issue.

via unixdigest.com January 10, 2025

Calamares towards 3.3.11

I’m going to change up the Calamares release process a little. It’s been slow going as a community-maintained project – which isn’t to say that that is a bad thing. Just slow. I’ve decided to make releases marginally more predictable than “when [ade] has …

via [bobulate] October 24, 2024

Signing Android Apps Using a YubiKey (on NixOS)

In my spare time, I currently develop two Android apps using Flutter: AniTrack, a simple anime and manga tracker based on my own needs, and Moxxy, a modern XMPP client. While I don't provide release builds for AniTrack, I do for Moxxy. Those are signed u…

via PapaTutuWawa's Blog July 24, 2023

Generated by openring