2018-05-17 19:39:26 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.qt;
|
|
|
|
|
|
2023-02-20 12:30:29 +01:00
|
|
|
|
# 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;
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
|
in {
|
2018-05-17 19:39:26 +02:00
|
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
imports = [
|
2020-02-02 00:39:17 +01:00
|
|
|
|
(mkChangedOptionModule [ "qt" "useGtkTheme" ] [ "qt" "platformTheme" ]
|
2019-03-31 16:01:41 +02:00
|
|
|
|
(config:
|
2020-02-02 00:39:17 +01:00
|
|
|
|
if getAttrFromPath [ "qt" "useGtkTheme" ] config then "gtk" else null))
|
2019-03-31 16:01:41 +02:00
|
|
|
|
];
|
|
|
|
|
|
2018-05-17 19:39:26 +02:00
|
|
|
|
options = {
|
|
|
|
|
qt = {
|
|
|
|
|
enable = mkEnableOption "Qt 4 and 5 configuration";
|
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
platformTheme = mkOption {
|
|
|
|
|
type = types.nullOr (types.enum [ "gtk" "gnome" ]);
|
|
|
|
|
default = null;
|
|
|
|
|
example = "gnome";
|
2020-02-02 00:39:17 +01:00
|
|
|
|
relatedPackages =
|
|
|
|
|
[ "qgnomeplatform" [ "libsForQt5" "qtstyleplugins" ] ];
|
2018-05-17 19:39:26 +02:00
|
|
|
|
description = ''
|
2023-02-20 12:30:29 +01:00
|
|
|
|
Platform theme to use for Qt applications.</para>
|
2019-03-31 16:01:41 +02:00
|
|
|
|
<para>The options are
|
|
|
|
|
<variablelist>
|
|
|
|
|
<varlistentry>
|
|
|
|
|
<term><literal>gtk</literal></term>
|
|
|
|
|
<listitem><para>Use GTK theme with
|
|
|
|
|
<link xlink:href="https://github.com/qt/qtstyleplugins">qtstyleplugins</link>
|
|
|
|
|
</para></listitem>
|
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
|
|
|
|
<term><literal>gnome</literal></term>
|
|
|
|
|
<listitem><para>Use GNOME theme with
|
|
|
|
|
<link xlink:href="https://github.com/FedoraQt/QGnomePlatform">qgnomeplatform</link>
|
|
|
|
|
</para></listitem>
|
|
|
|
|
</varlistentry>
|
|
|
|
|
</variablelist>
|
2018-05-17 19:39:26 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2021-03-04 04:20:17 +01:00
|
|
|
|
|
|
|
|
|
style = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
|
|
|
|
example = "adwaita-dark";
|
|
|
|
|
relatedPackages = [ "adwaita-qt" [ "libsForQt5" "qtstyleplugins" ] ];
|
|
|
|
|
description = ''
|
2023-02-20 12:30:29 +01:00
|
|
|
|
Style to use for Qt5 applications. Case-insensitive.
|
|
|
|
|
</para>
|
|
|
|
|
<para>Some examples are
|
2021-03-04 04:20:17 +01:00
|
|
|
|
<variablelist>
|
|
|
|
|
<varlistentry>
|
|
|
|
|
<term><literal>adwaita</literal></term>
|
|
|
|
|
<term><literal>adwaita-dark</literal></term>
|
2023-02-20 12:30:29 +01:00
|
|
|
|
<term><literal>adwaita-highcontrast</literal></term>
|
|
|
|
|
<term><literal>adwaita-highcontrastinverse</literal></term>
|
|
|
|
|
<listitem><para>Use the Adwaita style from
|
2021-03-04 04:20:17 +01:00
|
|
|
|
<link xlink:href="https://github.com/FedoraQt/adwaita-qt">adwaita</link>
|
|
|
|
|
</para></listitem>
|
|
|
|
|
</varlistentry>
|
|
|
|
|
<varlistentry>
|
2023-02-20 12:30:29 +01:00
|
|
|
|
<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>
|
2021-03-04 04:20:17 +01:00
|
|
|
|
<term><literal>cleanlooks</literal></term>
|
|
|
|
|
<term><literal>gtk2</literal></term>
|
|
|
|
|
<term><literal>motif</literal></term>
|
|
|
|
|
<term><literal>plastique</literal></term>
|
|
|
|
|
<listitem><para>Use styles from
|
|
|
|
|
<link xlink:href="https://github.com/qt/qtstyleplugins">qtstyleplugins</link>
|
|
|
|
|
</para></listitem>
|
|
|
|
|
</varlistentry>
|
|
|
|
|
</variablelist>
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
|
type = types.nullOr types.package;
|
|
|
|
|
default = null;
|
2021-10-09 11:14:08 +02:00
|
|
|
|
example = literalExpression "pkgs.adwaita-qt";
|
2023-02-20 12:30:29 +01:00
|
|
|
|
description = ''
|
|
|
|
|
Theme package to be used in Qt5 applications.
|
|
|
|
|
Auto-detected from <option>qt.style.name</option> if possible.
|
|
|
|
|
'';
|
2021-03-04 04:20:17 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
2018-05-17 19:39:26 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
config = mkIf (cfg.enable && cfg.platformTheme != null) {
|
2021-03-04 04:20:17 +01:00
|
|
|
|
assertions = [{
|
2023-02-20 12:30:29 +01:00
|
|
|
|
assertion = cfg.platformTheme == "gnome" -> cfg.style.name != null
|
|
|
|
|
&& cfg.style.package != null;
|
2021-03-04 04:20:17 +01:00
|
|
|
|
message = ''
|
|
|
|
|
`qt.platformTheme` "gnome" must have `qt.style` set to a theme that
|
2023-02-20 12:30:29 +01:00
|
|
|
|
supports both Qt and Gtk, for example "adwaita", "adwaita-dark", or "breeze".
|
2021-03-04 04:20:17 +01:00
|
|
|
|
'';
|
|
|
|
|
}];
|
|
|
|
|
|
2023-02-20 12:30:29 +01:00
|
|
|
|
qt.style.package = mkIf (cfg.style.name != null)
|
|
|
|
|
(mkDefault (stylePackages.${toLower cfg.style.name} or null));
|
|
|
|
|
|
|
|
|
|
# Necessary because home.sessionVariables doesn't support mkIf
|
|
|
|
|
home.sessionVariables = filterAttrs (n: v: v != null) {
|
2021-03-04 04:20:17 +01:00
|
|
|
|
QT_QPA_PLATFORMTHEME =
|
|
|
|
|
if cfg.platformTheme == "gnome" then "gnome" else "gtk2";
|
|
|
|
|
QT_STYLE_OVERRIDE = cfg.style.name;
|
2023-02-20 12:30:29 +01:00
|
|
|
|
};
|
2019-03-31 16:01:41 +02:00
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
|
home.packages = if cfg.platformTheme == "gnome" then
|
|
|
|
|
[ pkgs.qgnomeplatform ]
|
2021-03-04 04:20:17 +01:00
|
|
|
|
++ lib.optionals (cfg.style.package != null) [ cfg.style.package ]
|
2020-02-02 00:39:17 +01:00
|
|
|
|
else
|
|
|
|
|
[ pkgs.libsForQt5.qtstyleplugins ];
|
2019-03-31 16:01:41 +02:00
|
|
|
|
|
2021-03-04 04:20:17 +01:00
|
|
|
|
xsession.importedVariables = [ "QT_QPA_PLATFORMTHEME" ]
|
2023-02-20 12:30:29 +01:00
|
|
|
|
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
2018-05-17 19:39:26 +02:00
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
# Enable GTK+ style for Qt4 in either case.
|
|
|
|
|
# It doesn’t support the platform theme packages.
|
2020-02-02 00:39:17 +01:00
|
|
|
|
home.activation.useGtkThemeInQt4 = hm.dag.entryAfter [ "writeBoundary" ] ''
|
2018-05-17 19:39:26 +02:00
|
|
|
|
$DRY_RUN_CMD ${pkgs.crudini}/bin/crudini $VERBOSE_ARG \
|
2019-03-27 20:51:29 +01:00
|
|
|
|
--set "${config.xdg.configHome}/Trolltech.conf" Qt style GTK+
|
2018-05-17 19:39:26 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|