forked from qt-creator/qt-creator
CppEditor: Remove some pointer indirection in timer access
Change-Id: Id2531b7841a0a173f07f7310fb0dc434ac5ec5f8 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
This commit is contained in:
@@ -92,18 +92,6 @@ using namespace CPlusPlus;
|
|||||||
using namespace CppTools;
|
using namespace CppTools;
|
||||||
using namespace CppEditor::Internal;
|
using namespace CppEditor::Internal;
|
||||||
|
|
||||||
namespace {
|
|
||||||
|
|
||||||
QTimer *newSingleShotTimer(QObject *parent, int msecInterval)
|
|
||||||
{
|
|
||||||
QTimer *timer = new QTimer(parent);
|
|
||||||
timer->setSingleShot(true);
|
|
||||||
timer->setInterval(msecInterval);
|
|
||||||
return timer;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // end of anonymous namespace
|
|
||||||
|
|
||||||
namespace CppEditor {
|
namespace CppEditor {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
@@ -134,8 +122,8 @@ public:
|
|||||||
|
|
||||||
CppDocumentationCommentHelper m_cppDocumentationCommentHelper;
|
CppDocumentationCommentHelper m_cppDocumentationCommentHelper;
|
||||||
|
|
||||||
QTimer *m_updateUsesTimer;
|
QTimer m_updateUsesTimer;
|
||||||
QTimer *m_updateFunctionDeclDefLinkTimer;
|
QTimer m_updateFunctionDeclDefLinkTimer;
|
||||||
QHash<int, QTextCharFormat> m_semanticHighlightFormatMap;
|
QHash<int, QTextCharFormat> m_semanticHighlightFormatMap;
|
||||||
|
|
||||||
CppLocalRenaming m_localRenaming;
|
CppLocalRenaming m_localRenaming;
|
||||||
@@ -209,12 +197,17 @@ CppEditorWidget::CppEditorWidget(TextEditor::BaseTextDocumentPtr doc, CPPEditor
|
|||||||
this, SLOT(onLocalRenamingProcessKeyPressNormally(QKeyEvent*)));
|
this, SLOT(onLocalRenamingProcessKeyPressNormally(QKeyEvent*)));
|
||||||
|
|
||||||
// Tool bar creation
|
// Tool bar creation
|
||||||
d->m_updateUsesTimer = newSingleShotTimer(this, UPDATE_USES_INTERVAL);
|
d->m_updateUsesTimer.setSingleShot(true);
|
||||||
connect(d->m_updateUsesTimer, SIGNAL(timeout()), this, SLOT(updateUsesNow()));
|
d->m_updateUsesTimer.setInterval(UPDATE_USES_INTERVAL);
|
||||||
|
|
||||||
d->m_updateFunctionDeclDefLinkTimer = newSingleShotTimer(this, UPDATE_FUNCTION_DECL_DEF_LINK_INTERVAL);
|
connect(&d->m_updateUsesTimer, &QTimer::timeout,
|
||||||
connect(d->m_updateFunctionDeclDefLinkTimer, SIGNAL(timeout()),
|
this, &CppEditorWidget::updateUsesNow);
|
||||||
this, SLOT(updateFunctionDeclDefLinkNow()));
|
|
||||||
|
d->m_updateFunctionDeclDefLinkTimer.setSingleShot(true);
|
||||||
|
d->m_updateFunctionDeclDefLinkTimer.setInterval(UPDATE_FUNCTION_DECL_DEF_LINK_INTERVAL);
|
||||||
|
|
||||||
|
connect(&d->m_updateFunctionDeclDefLinkTimer, &QTimer::timeout,
|
||||||
|
this, &CppEditorWidget::updateFunctionDeclDefLinkNow);
|
||||||
|
|
||||||
connect(this, SIGNAL(cursorPositionChanged()),
|
connect(this, SIGNAL(cursorPositionChanged()),
|
||||||
d->m_cppEditorOutline, SLOT(updateIndex()));
|
d->m_cppEditorOutline, SLOT(updateIndex()));
|
||||||
@@ -509,7 +502,7 @@ void CppEditorWidget::updateUses()
|
|||||||
{
|
{
|
||||||
// Block premature semantic info calculation when editor is created.
|
// Block premature semantic info calculation when editor is created.
|
||||||
if (d->m_modelManager && d->m_modelManager->cppEditorSupport(editor())->initialized())
|
if (d->m_modelManager && d->m_modelManager->cppEditorSupport(editor())->initialized())
|
||||||
d->m_updateUsesTimer->start();
|
d->m_updateUsesTimer.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CppEditorWidget::updateUsesNow()
|
void CppEditorWidget::updateUsesNow()
|
||||||
@@ -967,7 +960,7 @@ void CppEditorWidget::updateFunctionDeclDefLink()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
d->m_updateFunctionDeclDefLinkTimer->start();
|
d->m_updateFunctionDeclDefLinkTimer.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CppEditorWidget::updateFunctionDeclDefLinkNow()
|
void CppEditorWidget::updateFunctionDeclDefLinkNow()
|
||||||
|
|||||||
Reference in New Issue
Block a user