Normalize signal & slot signatures in connection
Profiling showed that Qt Creator spent 2% of its load time normalizing signals and slots. By pre-normalizing everything, we ensure that there is no runtime cost. Profiling after this commit and the others in this series shows that the cost dropped down to zero. Change-Id: Ifc5a2c2552e245fb9a5f31514e9dd683c5c55327 Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
parent
d7287f595a
commit
3a3a7f8842
@ -74,8 +74,8 @@ FileReader::FileReader(QWidget *parent)
|
||||
//! [2]
|
||||
//slower due to signature normalization at runtime
|
||||
|
||||
connect(signalMapper, SIGNAL(mapped(const QString &)),
|
||||
this, SLOT(readFile(const QString &)));
|
||||
connect(signalMapper, SIGNAL(mapped(QString)),
|
||||
this, SLOT(readFile(QString)));
|
||||
//! [2]
|
||||
*/
|
||||
QHBoxLayout *buttonLayout = new QHBoxLayout;
|
||||
|
@ -59,8 +59,8 @@ ClipWindow::ClipWindow(QWidget *parent)
|
||||
//! [0]
|
||||
connect(clipboard, SIGNAL(dataChanged()), this, SLOT(updateClipboard()));
|
||||
//! [0]
|
||||
connect(mimeTypeCombo, SIGNAL(activated(const QString &)),
|
||||
this, SLOT(updateData(const QString &)));
|
||||
connect(mimeTypeCombo, SIGNAL(activated(QString)),
|
||||
this, SLOT(updateData(QString)));
|
||||
|
||||
QVBoxLayout *currentLayout = new QVBoxLayout(currentItem);
|
||||
currentLayout->addWidget(mimeTypeLabel);
|
||||
|
@ -54,10 +54,10 @@ MainWindow::MainWindow(QWidget *parent)
|
||||
QLabel *dataLabel = new QLabel(tr("Amount of data (bytes):"), centralWidget);
|
||||
dragWidget = new DragWidget(centralWidget);
|
||||
|
||||
connect(dragWidget, SIGNAL(mimeTypes(const QStringList &)),
|
||||
this, SLOT(setMimeTypes(const QStringList &)));
|
||||
connect(dragWidget, SIGNAL(dragResult(const QString &)),
|
||||
this, SLOT(setDragResult(const QString &)));
|
||||
connect(dragWidget, SIGNAL(mimeTypes(QStringList)),
|
||||
this, SLOT(setMimeTypes(QStringList)));
|
||||
connect(dragWidget, SIGNAL(dragResult(QString)),
|
||||
this, SLOT(setDragResult(QString)));
|
||||
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout(centralWidget);
|
||||
mainLayout->addWidget(mimeTypeLabel);
|
||||
|
@ -119,8 +119,8 @@ void Viewer::createMenus()
|
||||
connect(openAction, SIGNAL(triggered()), this, SLOT(chooseFile()));
|
||||
connect(saveAction, SIGNAL(triggered()), this, SLOT(saveImage()));
|
||||
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
|
||||
connect(brightnessMenu, SIGNAL(triggered(QAction *)), this,
|
||||
SLOT(setBrightness(QAction *)));
|
||||
connect(brightnessMenu, SIGNAL(triggered(QAction*)), this,
|
||||
SLOT(setBrightness(QAction*)));
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -171,7 +171,7 @@ bool QSpiApplicationAdaptor::eventFilter(QObject *target, QEvent *event)
|
||||
// FIXME: this is critical, the timeout should probably be pretty low to allow normal processing
|
||||
int timeout = 100;
|
||||
bool sent = dbusConnection.callWithCallback(m, this, SLOT(notifyKeyboardListenerCallback(QDBusMessage)),
|
||||
SLOT(notifyKeyboardListenerError(QDBusError, QDBusMessage)), timeout);
|
||||
SLOT(notifyKeyboardListenerError(QDBusError,QDBusMessage)), timeout);
|
||||
if (sent) {
|
||||
//queue the event and send it after callback
|
||||
keyEvents.enqueue(QPair<QPointer<QObject>, QKeyEvent*> (QPointer<QObject>(target), copyKeyEvent(keyEvent)));
|
||||
|
@ -98,8 +98,8 @@ void QConnmanEngine::initialize()
|
||||
ofonoContextManager = new QOfonoDataConnectionManagerInterface(ofonoManager->currentModem(),this);
|
||||
connect(ofonoContextManager,SIGNAL(roamingAllowedChanged(bool)),this,SLOT(reEvaluateCellular()));
|
||||
|
||||
connect(connmanManager,SIGNAL(servicesChanged(ConnmanMapList, QList<QDBusObjectPath>)),
|
||||
this, SLOT(updateServices(ConnmanMapList, QList<QDBusObjectPath>)));
|
||||
connect(connmanManager,SIGNAL(servicesChanged(ConnmanMapList,QList<QDBusObjectPath>)),
|
||||
this, SLOT(updateServices(ConnmanMapList,QList<QDBusObjectPath>)));
|
||||
|
||||
connect(connmanManager,SIGNAL(servicesReady(QStringList)),this,SLOT(servicesReady(QStringList)));
|
||||
connect(connmanManager,SIGNAL(scanFinished()),this,SLOT(finishedScan()));
|
||||
|
@ -2697,8 +2697,8 @@ QPixmap QMessageBoxPrivate::standardIcon(QMessageBox::Icon icon, QMessageBox *mb
|
||||
void QMessageBoxPrivate::initHelper(QPlatformDialogHelper *h)
|
||||
{
|
||||
Q_Q(QMessageBox);
|
||||
QObject::connect(h, SIGNAL(clicked(QPlatformDialogHelper::StandardButton, QPlatformDialogHelper::ButtonRole)),
|
||||
q, SLOT(_q_clicked(QPlatformDialogHelper::StandardButton, QPlatformDialogHelper::ButtonRole)));
|
||||
QObject::connect(h, SIGNAL(clicked(QPlatformDialogHelper::StandardButton,QPlatformDialogHelper::ButtonRole)),
|
||||
q, SLOT(_q_clicked(QPlatformDialogHelper::StandardButton,QPlatformDialogHelper::ButtonRole)));
|
||||
static_cast<QPlatformMessageDialogHelper *>(h)->setOptions(options);
|
||||
}
|
||||
|
||||
|
@ -197,7 +197,7 @@ QWindowContainer::QWindowContainer(QWindow *embeddedWindow, QWidget *parent, Qt:
|
||||
d->window = embeddedWindow;
|
||||
d->window->setParent(&d->fakeParent);
|
||||
|
||||
connect(QGuiApplication::instance(), SIGNAL(focusWindowChanged(QWindow *)), this, SLOT(focusWindowChanged(QWindow *)));
|
||||
connect(QGuiApplication::instance(), SIGNAL(focusWindowChanged(QWindow*)), this, SLOT(focusWindowChanged(QWindow*)));
|
||||
}
|
||||
|
||||
QWindow *QWindowContainer::containedWindow() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user