qt: auto-detect style package from name (#3692)
* qt: auto-detect style package from name * qt: test package auto-detection
This commit is contained in:
parent
ebb21e1bf6
commit
72ce74d3ea
|
@ -6,6 +6,24 @@ let
|
||||||
|
|
||||||
cfg = config.qt;
|
cfg = config.qt;
|
||||||
|
|
||||||
|
# Maps known lowercase style names to style packages. Non-exhaustive.
|
||||||
|
stylePackages = with pkgs; {
|
||||||
|
bb10bright = libsForQt5.qtstyleplugins;
|
||||||
|
bb10dark = libsForQt5.qtstyleplugins;
|
||||||
|
cleanlooks = libsForQt5.qtstyleplugins;
|
||||||
|
gtk2 = libsForQt5.qtstyleplugins;
|
||||||
|
motif = libsForQt5.qtstyleplugins;
|
||||||
|
cde = libsForQt5.qtstyleplugins;
|
||||||
|
plastique = libsForQt5.qtstyleplugins;
|
||||||
|
|
||||||
|
adwaita = adwaita-qt;
|
||||||
|
adwaita-dark = adwaita-qt;
|
||||||
|
adwaita-highcontrast = adwaita-qt;
|
||||||
|
adwaita-highcontrastinverse = adwaita-qt;
|
||||||
|
|
||||||
|
breeze = libsForQt5.breeze-qt5;
|
||||||
|
};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
meta.maintainers = [ maintainers.rycee ];
|
meta.maintainers = [ maintainers.rycee ];
|
||||||
|
|
||||||
|
@ -26,7 +44,7 @@ in {
|
||||||
relatedPackages =
|
relatedPackages =
|
||||||
[ "qgnomeplatform" [ "libsForQt5" "qtstyleplugins" ] ];
|
[ "qgnomeplatform" [ "libsForQt5" "qtstyleplugins" ] ];
|
||||||
description = ''
|
description = ''
|
||||||
Selects the platform theme to use for Qt applications.</para>
|
Platform theme to use for Qt applications.</para>
|
||||||
<para>The options are
|
<para>The options are
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
|
@ -52,17 +70,29 @@ in {
|
||||||
example = "adwaita-dark";
|
example = "adwaita-dark";
|
||||||
relatedPackages = [ "adwaita-qt" [ "libsForQt5" "qtstyleplugins" ] ];
|
relatedPackages = [ "adwaita-qt" [ "libsForQt5" "qtstyleplugins" ] ];
|
||||||
description = ''
|
description = ''
|
||||||
Selects the style to use for Qt5 applications.</para>
|
Style to use for Qt5 applications. Case-insensitive.
|
||||||
<para>The options are
|
</para>
|
||||||
|
<para>Some examples are
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><literal>adwaita</literal></term>
|
<term><literal>adwaita</literal></term>
|
||||||
<term><literal>adwaita-dark</literal></term>
|
<term><literal>adwaita-dark</literal></term>
|
||||||
<listitem><para>Use Adwaita Qt style with
|
<term><literal>adwaita-highcontrast</literal></term>
|
||||||
|
<term><literal>adwaita-highcontrastinverse</literal></term>
|
||||||
|
<listitem><para>Use the Adwaita style from
|
||||||
<link xlink:href="https://github.com/FedoraQt/adwaita-qt">adwaita</link>
|
<link xlink:href="https://github.com/FedoraQt/adwaita-qt">adwaita</link>
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
|
<term><literal>breeze</literal></term>
|
||||||
|
<listitem><para>Use the Breeze style from
|
||||||
|
<link xlink:href="https://github.com/KDE/breeze">breeze</link>
|
||||||
|
</para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><literal>bb10bright</literal></term>
|
||||||
|
<term><literal>bb10dark</literal></term>
|
||||||
|
<term><literal>cde</literal></term>
|
||||||
<term><literal>cleanlooks</literal></term>
|
<term><literal>cleanlooks</literal></term>
|
||||||
<term><literal>gtk2</literal></term>
|
<term><literal>gtk2</literal></term>
|
||||||
<term><literal>motif</literal></term>
|
<term><literal>motif</literal></term>
|
||||||
|
@ -79,7 +109,10 @@ in {
|
||||||
type = types.nullOr types.package;
|
type = types.nullOr types.package;
|
||||||
default = null;
|
default = null;
|
||||||
example = literalExpression "pkgs.adwaita-qt";
|
example = literalExpression "pkgs.adwaita-qt";
|
||||||
description = "Theme package to be used in Qt5 applications.";
|
description = ''
|
||||||
|
Theme package to be used in Qt5 applications.
|
||||||
|
Auto-detected from <option>qt.style.name</option> if possible.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -87,20 +120,23 @@ in {
|
||||||
|
|
||||||
config = mkIf (cfg.enable && cfg.platformTheme != null) {
|
config = mkIf (cfg.enable && cfg.platformTheme != null) {
|
||||||
assertions = [{
|
assertions = [{
|
||||||
assertion = (cfg.platformTheme == "gnome")
|
assertion = cfg.platformTheme == "gnome" -> cfg.style.name != null
|
||||||
-> ((cfg.style.name != null) && (cfg.style.package != null));
|
&& cfg.style.package != null;
|
||||||
message = ''
|
message = ''
|
||||||
`qt.platformTheme` "gnome" must have `qt.style` set to a theme that
|
`qt.platformTheme` "gnome" must have `qt.style` set to a theme that
|
||||||
supports both Qt and Gtk, for example "adwaita" or "adwaita-dark".
|
supports both Qt and Gtk, for example "adwaita", "adwaita-dark", or "breeze".
|
||||||
'';
|
'';
|
||||||
}];
|
}];
|
||||||
|
|
||||||
# Necessary because home.sessionVariables is of types.attrs
|
qt.style.package = mkIf (cfg.style.name != null)
|
||||||
home.sessionVariables = (filterAttrs (n: v: v != null) {
|
(mkDefault (stylePackages.${toLower cfg.style.name} or null));
|
||||||
|
|
||||||
|
# Necessary because home.sessionVariables doesn't support mkIf
|
||||||
|
home.sessionVariables = filterAttrs (n: v: v != null) {
|
||||||
QT_QPA_PLATFORMTHEME =
|
QT_QPA_PLATFORMTHEME =
|
||||||
if cfg.platformTheme == "gnome" then "gnome" else "gtk2";
|
if cfg.platformTheme == "gnome" then "gnome" else "gtk2";
|
||||||
QT_STYLE_OVERRIDE = cfg.style.name;
|
QT_STYLE_OVERRIDE = cfg.style.name;
|
||||||
});
|
};
|
||||||
|
|
||||||
home.packages = if cfg.platformTheme == "gnome" then
|
home.packages = if cfg.platformTheme == "gnome" then
|
||||||
[ pkgs.qgnomeplatform ]
|
[ pkgs.qgnomeplatform ]
|
||||||
|
@ -109,7 +145,7 @@ in {
|
||||||
[ pkgs.libsForQt5.qtstyleplugins ];
|
[ pkgs.libsForQt5.qtstyleplugins ];
|
||||||
|
|
||||||
xsession.importedVariables = [ "QT_QPA_PLATFORMTHEME" ]
|
xsession.importedVariables = [ "QT_QPA_PLATFORMTHEME" ]
|
||||||
++ lib.optionals (cfg.style != null) [ "QT_STYLE_OVERRIDE" ];
|
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
||||||
|
|
||||||
# Enable GTK+ style for Qt4 in either case.
|
# Enable GTK+ style for Qt4 in either case.
|
||||||
# It doesn’t support the platform theme packages.
|
# It doesn’t support the platform theme packages.
|
||||||
|
|
|
@ -5,10 +5,7 @@
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "gnome";
|
platformTheme = "gnome";
|
||||||
style = {
|
style.name = "adwaita";
|
||||||
name = "adwaita";
|
|
||||||
package = config.lib.test.mkStubPackage { };
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
test.stubs.qgnomeplatform = { };
|
test.stubs.qgnomeplatform = { };
|
||||||
|
|
Loading…
Reference in a new issue