Commit fab79678 authored by Daniel Nyström's avatar Daniel Nyström Committed by Peter Korsgaard
Browse files

qt: add option to hide mouse cursor



Allow the user to build Qt with the QT_NO_QWS_CURSOR macro set.

Signed-off-by: default avatarDaniel Nyström <daniel.nystrom@timeterminal.se>
Acked-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent eaf18b8b
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -15,4 +15,11 @@ config BR2_PACKAGE_QT_MOUSE_TSLIB
config BR2_PACKAGE_QT_MOUSE_QVFB
	bool "qvfb"

comment "Mouse Options"

config BR2_PACKAGE_QT_MOUSE_NO_QWS_CURSOR
	bool "Hide the mouse cursor"
	help
	  Do not show the mouse cursor in QWS.

endmenu
+3 −0
Original line number Diff line number Diff line
@@ -154,6 +154,9 @@ QT_CONFIGURE += -qt-mouse-qvfb
else
QT_CONFIGURE += -no-mouse-qvfb
endif
ifeq ($(BR2_PACKAGE_QT_MOUSE_NO_QWS_CURSOR),y)
QT_CONFIGURE+= -D QT_NO_QWS_CURSOR
endif

### Keyboard drivers
ifeq ($(BR2_PACKAGE_QT_KEYBOARD_TTY),y)