2018-05-17 19:39:26 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.qt;
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
imports = [
|
|
|
|
|
(mkChangedOptionModule
|
|
|
|
|
[ "qt" "useGtkTheme" ]
|
|
|
|
|
[ "qt" "platformTheme" ]
|
|
|
|
|
(config:
|
|
|
|
|
if getAttrFromPath [ "qt" "useGtkTheme" ] config
|
|
|
|
|
then "gtk"
|
|
|
|
|
else null))
|
|
|
|
|
];
|
|
|
|
|
|
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";
|
|
|
|
|
relatedPackages = [
|
|
|
|
|
"qgnomeplatform"
|
|
|
|
|
["libsForQt5" "qtstyleplugins"]
|
|
|
|
|
];
|
2018-05-17 19:39:26 +02:00
|
|
|
|
description = ''
|
2019-03-31 16:01:41 +02:00
|
|
|
|
Selects the platform theme to use for Qt applications.</para>
|
|
|
|
|
<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
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
config = mkIf (cfg.enable && cfg.platformTheme != null) {
|
|
|
|
|
home.sessionVariables.QT_QPA_PLATFORMTHEME =
|
|
|
|
|
if cfg.platformTheme == "gnome" then "gnome" else "gtk2";
|
|
|
|
|
|
|
|
|
|
home.packages =
|
|
|
|
|
if cfg.platformTheme == "gnome"
|
|
|
|
|
then [ pkgs.qgnomeplatform ]
|
|
|
|
|
else [ pkgs.libsForQt5.qtstyleplugins ];
|
|
|
|
|
|
2019-06-23 14:06:29 +02:00
|
|
|
|
xsession.importedVariables = [ "QT_QPA_PLATFORMTHEME" ];
|
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-01-16 23:41:14 +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
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|