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:

Agentic test processes, LLM benchmarks, and other notes on agentic coding from Galapagos Island

I've been using AI fairly heavily since last November and the whole thing is a funny experience. An agent will do something that, if a human did it, you'd immediately fire them. My reaction, of course, is to act as if this is great and spin up a t…

via danluu.com July 3, 2026

Stop telling people to sanitize user input

Whether you're dealing with a web application or some other application, all user input should always be considered "hostile" and "dangerous", but you should not just universally sanitize user input.

via Unix Digest - Articles March 7, 2026

GPG Update 2026

A recent toot of mine got the response “friends don’t let friends use GPG” which, I suppose, is true enough. It certainly isn’t the attestation-friendly thing to use, and the opsec failures that are so easy with GPG-encrypted mail make it a hazard there. …

via [bobulate] February 3, 2026

Generated by openring