How to stop screen reader(Narrator) in Qt
Unsolved
General and Desktop
-
Hi all ,
I want to enable and disable the voice announment using qt program. By default qt support the voice announment, when we turn on the Windows Narrator. I want do announce some widget and some not. For example button b1 want announce name and button b2 dont want to announce name. Is there any possiblity to disable announment using qt? There is an option in qml side like :Accessible.ignored: true/flase based on condition to enable or disable .
b1=new QPushButton("custom button");
b1->setAccessibleName("click voice over announment");
b1->setAccessibleDescription("custom button made by user");
b2=new QPushButton("Click Here");
I'm using 5.12.X kit.