From patchwork Wed Jul 8 13:30:15 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Chretien X-Patchwork-Id: 11651659 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id DE4D214B7 for ; Wed, 8 Jul 2020 13:30:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D03A220774 for ; Wed, 8 Jul 2020 13:30:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729378AbgGHNab (ORCPT ); Wed, 8 Jul 2020 09:30:31 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:39011 "EHLO relay12.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729597AbgGHNab (ORCPT ); Wed, 8 Jul 2020 09:30:31 -0400 Received: from localhost.localdomain (static-176-185-171-128.axione.abo.bbox.fr [176.185.171.128]) (Authenticated sender: maxime.chretien@bootlin.com) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 32DF620001B; Wed, 8 Jul 2020 13:30:29 +0000 (UTC) From: Maxime Chretien To: masahiroy@kernel.org Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Maxime Chretien Subject: [PATCH] kconfig qconf: Add grey background for hidden options Date: Wed, 8 Jul 2020 15:30:15 +0200 Message-Id: <20200708133015.12286-1-maxime.chretien@bootlin.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org This is useful to see which configuration parameters can be edited or not when "Show All Options" is enabled. Signed-off-by: Maxime Chretien --- scripts/kconfig/qconf.cc | 7 +++++++ scripts/kconfig/qconf.h | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index c0ac8f7b5f1a..be9ff4651da1 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -208,6 +208,13 @@ void ConfigItem::updateMenu(void) } if (!sym_has_value(sym) && visible) prompt += " (NEW)"; + + if(!visible) { + setBackground(promptColIdx, QBrush(QColor("#E0E0E0"))); + } else { + setBackground(promptColIdx, QBrush()); + } + set_prompt: setText(promptColIdx, prompt); } diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index c879d79ce817..79e47e8c1ae7 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -174,6 +174,10 @@ class ConfigItem : public QTreeWidgetItem { { return Parent::text(idx); } + void setBackground(colIdx idx, const QBrush& brush) + { + Parent::setBackground(idx, brush); + } void setPixmap(colIdx idx, const QIcon &icon) { Parent::setIcon(idx, icon);