QMenu - 2 + columns of items
Unsolved
General and Desktop
-
Hi
Maybe you can use
https://doc.qt.io/qt-5/qwidgetaction.html#details
to build such menu yourself using a custom widget. -
@mrjj said in QMenu - 2 + columns of items:
Hi
Maybe you can use
https://doc.qt.io/qt-5/qwidgetaction.html#details
to build such menu yourself using a custom widget.Hmm could try that, I was slowly thinking of making new QWidget for it and just make it pretend to be menu but maybe QWidgetAction could be used here o.o
-
@dariusz
Well the QMenu will still treat it as one item so its also kinda pretending :)
I agree. you could also make a complete custom popup (like the drop down in ComboBox) type
of menu and open it from a button but its harder to integrated with the rest of the QMenu if you have such one.