Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
96de9705
Commit
96de9705
authored
Mar 25, 2011
by
Kai Koehne
Browse files
QmlProfiler: Use QtQuick 1.0 namespace
Allow profiler to run also with 4.7.1
parent
d8f83e2b
Changes
8
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmlprofiler/Detail.qml
View file @
96de9705
...
...
@@ -31,7 +31,7 @@
**
**************************************************************************/
import
QtQuick
1.
1
import
QtQuick
1.
0
import
Monitor
1.0
import
"
MainView.js
"
as
Plotter
...
...
@@ -61,7 +61,7 @@ Item {
font.pixelSize
:
12
anchors.baseline
:
lbl
.
baseline
anchors.left
:
guideline
.
right
maximumLineCount
:
maxLines
//
maximumLineCount: maxLines
onLinkActivated
:
detail
.
linkActivated
(
link
)
}
}
src/plugins/qmlprofiler/Label.qml
View file @
96de9705
...
...
@@ -31,7 +31,7 @@
**
**************************************************************************/
import
QtQuick
1.
1
import
QtQuick
1.
0
Item
{
property
alias
text
:
txt
.
text
...
...
src/plugins/qmlprofiler/MainView.qml
View file @
96de9705
...
...
@@ -31,7 +31,7 @@
**
**************************************************************************/
import
QtQuick
1.
1
import
QtQuick
1.
0
import
Monitor
1.0
import
"
MainView.js
"
as
Plotter
...
...
src/plugins/qmlprofiler/RangeDetails.qml
View file @
96de9705
...
...
@@ -31,7 +31,7 @@
**
**************************************************************************/
import
QtQuick
1.
1
import
QtQuick
1.
0
import
Monitor
1.0
import
"
MainView.js
"
as
Plotter
...
...
src/plugins/qmlprofiler/RangeMover.qml
View file @
96de9705
...
...
@@ -32,7 +32,7 @@
**************************************************************************/
import
"
MainView.js
"
as
Plotter
import
QtQuick
1.
1
import
QtQuick
1.
0
import
Monitor
1.0
Item
{
...
...
src/plugins/qmlprofiler/RecordButton.qml
View file @
96de9705
...
...
@@ -31,7 +31,7 @@
**
**************************************************************************/
import
QtQuick
1.
1
import
QtQuick
1.
0
Rectangle
{
id
:
button
...
...
src/plugins/qmlprofiler/ToolButton.qml
View file @
96de9705
...
...
@@ -31,7 +31,7 @@
**
**************************************************************************/
import
QtQuick
1.
1
import
QtQuick
1.
0
import
Monitor
1.0
import
"
MainView.js
"
as
Plotter
...
...
src/plugins/qmlprofiler/qmlprofilertool.cpp
View file @
96de9705
...
...
@@ -155,13 +155,13 @@ IAnalyzerEngine *QmlProfilerTool::createEngine(ProjectExplorer::RunConfiguration
void
QmlProfilerTool
::
initialize
(
ExtensionSystem
::
IPlugin
*/
*
plugin
*/
)
{
qmlRegisterType
<
Canvas
>
(
"
QtQuick
"
,
1
,
1
,
"Canvas"
);
qmlRegisterType
<
TiledCanvas
>
(
"
QtQuick
"
,
1
,
1
,
"TiledCanvas"
);
qmlRegisterType
<
Canvas
>
(
"
th Monitor
"
,
1
,
0
,
"Canvas"
);
qmlRegisterType
<
TiledCanvas
>
(
"
Monitor
"
,
1
,
0
,
"TiledCanvas"
);
qmlRegisterType
<
Context2D
>
();
qmlRegisterType
<
CanvasImage
>
();
qmlRegisterType
<
CanvasGradient
>
();
qmlRegisterType
<
TimelineView
>
(
"Monitor"
,
1
,
0
,
"TimelineView"
);
qmlRegisterType
<
TimelineView
>
(
"Monitor"
,
1
,
0
,
"TimelineView"
);
d
->
m_client
=
new
QDeclarativeDebugConnection
;
d
->
m_traceWindow
=
new
TraceWindow
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment