From: jean at iddad.fr <jean@iddad.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] Option to disable mouse cursor in QT
Date: Wed, 29 Sep 2010 15:35:07 +0200 [thread overview]
Message-ID: <33739.1285767307@iddad.fr> (raw)
Adds a configuration option to disable Mouse Cursor in QT.
This is especially useful with touchscreens where we don't need a mouse cursor.
Signed-off-by: Jean-Gregoire Foulon <jean@iddad.fr>
---
diff -ru buildroot-2010.08/package/qt/Config.in buildroot-2010.08-patched/package/qt/Config.in
--- buildroot-2010.08/package/qt/Config.in 2010-08-31 23:07:06.000000000 +0100
+++ buildroot-2010.08-patched/package/qt/Config.in 2010-09-28 08:56:31.000000000 +0100
@@ -373,4 +373,12 @@
Build the Qt Script Tools module.
if unsure, say n.
+config BR2_PACKAGE_QT_CURSOR
+ bool "Mouse Cursor"
+ default y
+ help
+ Enables the mouse cursor.
+ If using a touchscreen, say n to prevent the cursor from being displayed.
+
+
endif # BR2_PACKAGE_QT
diff -ru buildroot-2010.08/package/qt/qt.mk buildroot-2010.08-patched/package/qt/qt.mk
--- buildroot-2010.08/package/qt/qt.mk 2010-08-31 23:07:06.000000000 +0100
+++ buildroot-2010.08-patched/package/qt/qt.mk 2010-09-28 08:56:54.000000000 +0100
@@ -371,6 +371,12 @@
QT_CONFIGURE += -no-pch
endif
+ifeq ($(BR2_PACKAGE_QT_CURSOR),y)
+QT_CONFIGURE+= -feature-CURSOR
+else
+QT_CONFIGURE+= -no-feature-CURSOR
+endif
+
BR2_PACKAGE_QT_EMB_PLATFORM:=$(call qstrip,$(BR2_PACKAGE_QT_EMB_PLATFORM))
# x86x86fix
next reply other threads:[~2010-09-29 13:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-29 13:35 jean at iddad.fr [this message]
-- strict thread matches above, loose matches on Subject: below --
2010-09-28 15:18 [Buildroot] [PATCH] Option to disable mouse cursor in QT jean at iddad.fr
2010-09-28 17:19 ` Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=33739.1285767307@iddad.fr \
--to=jean@iddad.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox