mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 08:07:10 -04:00
Fix issue with the configurations menu on Mac OS X
On Mac OS X due to the Qt use of native menu widgets the connections for a menu action get disconnected before they are triggered when using QMenu::aboutToHide() to remove the items dynamically. Changed to depopulate the sub menu just before re-population in the QMenu::aboutToShow() event. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7263 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
717c2da431
commit
fb307e5cdd
@ -429,16 +429,24 @@ QMenu * MultiSettings::impl::create_sub_menu (QMainWindow * main_window,
|
||||
QString const& menu_title,
|
||||
QActionGroup * action_group)
|
||||
{
|
||||
QMenu * sub_menu = parent_menu->addMenu (menu_title);
|
||||
auto sub_menu = parent_menu->addMenu (menu_title);
|
||||
if (action_group) action_group->addAction (sub_menu->menuAction ());
|
||||
sub_menu->menuAction ()->setCheckable (true);
|
||||
|
||||
// populate sub-menu actions before showing
|
||||
connect (sub_menu, &QMenu::aboutToShow, [this, main_window, parent_menu, sub_menu] () {
|
||||
// depopulate before populating and showing because on Mac OS X
|
||||
// there is an issue with depopulating in QMenu::aboutToHide()
|
||||
// with connections being disconnected before they are actioned
|
||||
while (!sub_menu->actions ().isEmpty ())
|
||||
{
|
||||
sub_menu->removeAction (sub_menu->actions ().last ());
|
||||
}
|
||||
|
||||
bool is_current {sub_menu->menuAction ()->text () == current_};
|
||||
if (!is_current)
|
||||
{
|
||||
auto * select_action = new QAction {tr ("&Switch To"), this};
|
||||
auto select_action = new QAction {tr ("&Switch To"), this};
|
||||
sub_menu->addAction (select_action);
|
||||
connect (select_action, &QAction::triggered, [this, main_window, sub_menu] (bool) {
|
||||
select_configuration (main_window, sub_menu);
|
||||
@ -446,7 +454,7 @@ QMenu * MultiSettings::impl::create_sub_menu (QMainWindow * main_window,
|
||||
sub_menu->addSeparator ();
|
||||
}
|
||||
|
||||
auto * clone_action = new QAction {tr ("&Clone"), this};
|
||||
auto clone_action = new QAction {tr ("&Clone"), this};
|
||||
sub_menu->addAction (clone_action);
|
||||
connect (clone_action, &QAction::triggered, [this, main_window, parent_menu, sub_menu] (bool) {
|
||||
clone_configuration (main_window, parent_menu, sub_menu);
|
||||
@ -457,20 +465,20 @@ QMenu * MultiSettings::impl::create_sub_menu (QMainWindow * main_window,
|
||||
SettingsGroup alternatives {&settings_, multi_settings_root_group};
|
||||
if (settings_.childGroups ().size ())
|
||||
{
|
||||
auto * clone_into_action = new QAction {tr ("Clone &Into ..."), this};
|
||||
auto clone_into_action = new QAction {tr ("Clone &Into ..."), this};
|
||||
sub_menu->addAction (clone_into_action);
|
||||
connect (clone_into_action, &QAction::triggered, [this, main_window, sub_menu] (bool) {
|
||||
clone_into_configuration (main_window, sub_menu);
|
||||
});
|
||||
}
|
||||
if (current_group.size ()) settings_.beginGroup (current_group);
|
||||
auto * reset_action = new QAction {tr ("R&eset"), this};
|
||||
auto reset_action = new QAction {tr ("R&eset"), this};
|
||||
sub_menu->addAction (reset_action);
|
||||
connect (reset_action, &QAction::triggered, [this, main_window, sub_menu] (bool) {
|
||||
reset_configuration (main_window, sub_menu);
|
||||
});
|
||||
|
||||
auto * rename_action = new QAction {tr ("&Rename ..."), this};
|
||||
auto rename_action = new QAction {tr ("&Rename ..."), this};
|
||||
sub_menu->addAction (rename_action);
|
||||
connect (rename_action, &QAction::triggered, [this, main_window, sub_menu] (bool) {
|
||||
rename_configuration (main_window, sub_menu);
|
||||
@ -478,7 +486,7 @@ QMenu * MultiSettings::impl::create_sub_menu (QMainWindow * main_window,
|
||||
|
||||
if (!is_current)
|
||||
{
|
||||
auto * delete_action = new QAction {tr ("&Delete"), this};
|
||||
auto delete_action = new QAction {tr ("&Delete"), this};
|
||||
sub_menu->addAction (delete_action);
|
||||
connect (delete_action, &QAction::triggered, [this, main_window, sub_menu] (bool) {
|
||||
delete_configuration (main_window, sub_menu);
|
||||
@ -486,14 +494,6 @@ QMenu * MultiSettings::impl::create_sub_menu (QMainWindow * main_window,
|
||||
}
|
||||
});
|
||||
|
||||
// depopulate sub-menu actions before hiding
|
||||
connect (sub_menu, &QMenu::aboutToHide, [this, sub_menu] () {
|
||||
while (!sub_menu->actions ().isEmpty ())
|
||||
{
|
||||
sub_menu->removeAction (sub_menu->actions ().last ());
|
||||
}
|
||||
});
|
||||
|
||||
return sub_menu;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user