forked from qt-creator/qt-creator
QmlProfiler: put all of the traceview in one QQuickView
Having multiple views not only is bad for performance but also creates difficult to debug problems on some hardware configurations and is fairly confusing. Task-number: QTBUG-38222 Change-Id: I885e800b1ededab9137874105e3b2f9ec88a06e8 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com> Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
@@ -105,10 +105,6 @@ public slots:
|
||||
|
||||
private slots:
|
||||
void updateCursorPosition();
|
||||
void toggleRangeMode(bool);
|
||||
void updateRangeButton();
|
||||
void toggleLockMode(bool);
|
||||
void updateLockButton();
|
||||
|
||||
void updateRange();
|
||||
|
||||
@@ -121,24 +117,12 @@ protected:
|
||||
virtual void mousePressEvent(QMouseEvent *event);
|
||||
virtual void mouseReleaseEvent(QMouseEvent *event);
|
||||
|
||||
private slots:
|
||||
void setZoomSliderEnabled(bool enabled);
|
||||
void setZoomSliderVisible(bool visible);
|
||||
|
||||
signals:
|
||||
void gotoSourceLocation(const QString &fileUrl, int lineNumber, int columNumber);
|
||||
|
||||
void jumpToPrev();
|
||||
void jumpToNext();
|
||||
void rangeModeChanged(bool);
|
||||
void lockModeChanged(bool);
|
||||
void enableToolbar(bool);
|
||||
void showZoomSlider(bool);
|
||||
|
||||
void resized();
|
||||
|
||||
private:
|
||||
QWidget *createToolbar();
|
||||
void enableToolbar(bool);
|
||||
|
||||
private:
|
||||
class QmlProfilerTraceViewPrivate;
|
||||
|
||||
Reference in New Issue
Block a user