<html><head>
<style id="css_styles">
blockquote.cite { margin-left: 5px; margin-right: 0px; padding-left: 10px; padding-right:0px; border-left: 1px solid #cccccc }
blockquote.cite2 {margin-left: 5px; margin-right: 0px; padding-left: 10px; padding-right:0px; border-left: 1px solid #cccccc; margin-top: 3px; padding-top: 0px; }
a img { border: 0px; }
table { border-collapse: collapse; }
li[style='text-align: center;'], li[style='text-align: center; '], li[style='text-align: right;'], li[style='text-align: right; '] { list-style-position: inside;}
body { font-family: 'Segoe UI'; font-size: 12pt; }
.quote { margin-left: 1em; margin-right: 1em; border-left: 5px #ebebeb solid; padding-left: 0.3em; }
a.em-mention[href] { text-decoration: none; color: inherit; border-radius: 3px; padding-left: 2px; padding-right: 2px; background-color: #e2e2e2; }
</style>
</head>
<body>This probably qualifies as one of those things it occurred to me I <i>should</i> be able to do. So then, of course, I set out to try it. And it doesn't seem to work quite as I expect. (Perhaps the best answer is "Don't do that"?)<div><br /></div><div>I've got a <font face="Consolas">QToolButton</font> object with a menu attached to it. My idea is to implement menu shortcut keys. So if you hit an alphabetic key, it makes active the first item in the menu that starts with that letter. If you hit the same key again, it takes you to the next matching item. And so on. (And if you get to the last, it wraps around and re-selects the first again).</div><div><br /></div><div>To that end, I create a custom <font face="Consolas" size="3" style="font-size: 16px;">Menu</font> class derived from <font face="Consolas" size="3" style="font-size: 16px;">QMenu</font>. The button's main menu is an object of the <font face="Consolas" size="3" style="font-size: 16px;">Menu</font> class. Also, one item in the main menu has a submenu, which is also an instance of <font face="Consolas" size="3" style="font-size: 16px;">Menu</font>. I re-implement the <font face="Consolas" size="3" style="font-size: 16px;">Menu</font> class <font face="Consolas" size="3" style="font-size: 16px;">.keyPressEvent()</font> method, and when matching letters are hit, set the active menu item with <font face="Consolas" size="3" style="font-size: 16px;">.setActiveAction()</font>.</div><div><br /></div><div>Everything seems to work fine until I display the submenu. Then things turn flaky.</div><div><br /></div><div>I have a small reproducible example attached. 'Flaky' behavior can be observed (at least, on my machine) as follows:</div><div><br /></div><div>Click the button, and a menu of some cities displays. Hit 'A', 'B', 'H', or 'L' to select cities starting with those letters (the non-submenu items), and all works as expected.</div><div><br /></div><div>Now hit 'D' to select Denver. It makes that item active and displays the submenu. Hit the left arrow to make the submenu disappear. Then hit 'A' to select Anchorage. It highlights ... for about a second. And then the selection background disappears.</div><div><br /></div><div>Any ideas why this would be? My first thought was that Qt maintains some state information regarding which menu item is active, and the main menu and submenu are interfering with each other. It is true that the are the same class. But they are separate instances of that class, so I'd have expected they'd be able to function independently of one another.</div><div><br /></div><div>Any thoughts appreciated.</div><div><br /></div><div>Thanks!</div><div><br /></div><div>/John</div></body></html>