From f27d1ccbb24ec2fd4098f2976503478831006cc8 Mon Sep 17 00:00:00 2001 From: Gabriel de Dietrich Date: Wed, 9 Aug 2017 11:10:40 +0700 Subject: QCocoaMenu: De-pessimize the number of calls to validateMenuItem: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calling -[NSMenu update] every time we add a new item can result in a quadratic behavior since the function itself will iterate over all the items in the menu. We solve this by using a 0-timer which will trigger the call to update the next time the event loop spins. Menurama manual test updated. Change-Id: Ic155d364515cc93eb81b1c8085c8e44c93799954 Task-number: QTBUG-62396 Reviewed-by: Tor Arne Vestbø --- tests/manual/cocoa/menurama/mainwindow.cpp | 13 +++++ tests/manual/cocoa/menurama/mainwindow.ui | 92 ++++++++++++++++++------------ 2 files changed, 69 insertions(+), 36 deletions(-) (limited to 'tests/manual/cocoa/menurama') diff --git a/tests/manual/cocoa/menurama/mainwindow.cpp b/tests/manual/cocoa/menurama/mainwindow.cpp index 5cccc16974..06867bd7c9 100644 --- a/tests/manual/cocoa/menurama/mainwindow.cpp +++ b/tests/manual/cocoa/menurama/mainwindow.cpp @@ -56,6 +56,19 @@ MainWindow::MainWindow(QWidget *parent) : connect(ui->pushButton, &QPushButton::clicked, [=] { menuApp->populateMenu(ui->menuOn_Click, true /*clear*/); }); + + connect(ui->addManyButton, &QPushButton::clicked, [=] { + QMenu *menu = new QMenu(QLatin1String("Many More ") + + QString::number(ui->menuBar->actions().count())); + ui->menuBar->insertMenu(ui->menuDynamic_Stuff->menuAction(), menu); + for (int i = 0; i < 2000; i++) { + auto *action = menu->addAction(QLatin1String("Item ") + QString::number(i)); + if (i & 0x1) + action->setEnabled(false); + if (i & 0x2) + action->setVisible(false); + } + }); } MainWindow::~MainWindow() diff --git a/tests/manual/cocoa/menurama/mainwindow.ui b/tests/manual/cocoa/menurama/mainwindow.ui index d3caa6c608..18cded70d2 100644 --- a/tests/manual/cocoa/menurama/mainwindow.ui +++ b/tests/manual/cocoa/menurama/mainwindow.ui @@ -6,50 +6,60 @@ 0 0 - 429 - 251 + 486 + 288 MainWindow - + - - - 24 - - - - - The "Help" menu should NOT be visible. + + + The "Help" menu should NOT be visible. Click on "Dynamic Stuff" then move left and right to other menus. Disabled items should remain that way. - - - false - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - true - - - - - - - Enable "Stuff" Menu - - - true - - - + + + false + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Enable "Stuff" Menu + + + true + + + + + + + + 0 + 0 + + + + Populate Dynamic Submenu + + + + + - + 0 @@ -57,7 +67,17 @@ Click on "Dynamic Stuff" then move left and right to other menus. Disa - Populate Dynamic Submenu + Add Many Items + + + + + + + Adding hundreds of items should not block the UI for noticeable periods of time. Odd numbered items should be disabled, those with 2nd LSB on should be hidden. + + + true @@ -70,7 +90,7 @@ Click on "Dynamic Stuff" then move left and right to other menus. Disa 0 0 - 429 + 486 22 -- cgit v1.2.3