Oops. Never mind. The answer, of course, is Qt's Style Sheets. I got the effect I want by modifying each tool button's style sheet as follows.
QToolButton:hover
{border
: 2px solid grey; border
-radius
: 12px
} QToolButton:checked
{border
: 2px solid green; border
-radius
: 12px; background
: rgba
(0,
0,
0,
25)}
QToolButton:hover {border: 2px solid grey; border-radius: 12px}
QToolButton:checked {border: 2px solid green; border-radius: 12px; background: rgba(0,0,0,25)}
To copy to clipboard, switch view to plain text mode
I'm all set.
Bookmarks