From 8f058b2581462f6b6d1d2e1d10ce79f8fc7f7144 Mon Sep 17 00:00:00 2001 From: Prince Gupta <34717789+jagannatharjun@users.noreply.github.com> Date: Sat, 9 May 2020 00:11:48 +0530 Subject: [PATCH] Updated Create custom themes for qBittorrent (markdown) --- Create-custom-themes-for-qBittorrent.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Create-custom-themes-for-qBittorrent.md b/Create-custom-themes-for-qBittorrent.md index 467b15a..0fb0470 100644 --- a/Create-custom-themes-for-qBittorrent.md +++ b/Create-custom-themes-for-qBittorrent.md @@ -15,7 +15,14 @@ You can check out this Python script([here](https://github.com/jagannatharjun/qb At runtime, qBittorrent loads the `stylesheet.qss` file to support theming. `stylesheet.qss` is a [Qt stylesheet](https://doc.qt.io/qt-5/stylesheet.html), which is basically custom CSS for Qt. You can read more about Qt stylesheet syntax [here](https://doc.qt.io/Qt-5/stylesheet-syntax.html). A reference is also available [here](https://doc.qt.io/qt-5/stylesheet.html). -qBittorrent mounts the `.qbttheme` file under the `:uitheme` prefix, so every file should be referenced accordingly inside `stylesheet.qss`. +qBittorrent uses [QResources::registerResource](https://doc.qt.io/qt-5/qresource.html#registerResource) to use the bundle file, you can imagine it like QBittorrent extracts bundle file in a special path which is `:/uitheme`, so every file should be referenced accordingly f.e let's see we have to change the image QRadiaButtons indicator, so to reference a `light/radio_button.svg` that we had it inside our rcc, we should reference it something like this +``` +QRadioButton::indicator:unchecked, +QRadioButton::indicator:unchecked:focus +{ + image: url(:/uitheme/dark/radio_unchecked_disabled.svg); +} +``` # Examples