That is a part of it:
@
[Visualizer]
;QT_DEBUG_START (Qt Visual Studio Add-in v1.1.9)
; Nokia Qt 4.x visualizers -----------------------------------------[ start ]--
;------------------------------------------------------------------------------
; Feel free to modify these visualizers to suit yours needs! But please let us
; know about the changes you make, so we continuously improve the visualizers.
QString{
preview ([$e.d->data,su])
stringview ([$e.d->data,sub])
children
(
#(
d: $c.d,
[size]: $c.d->size,
[referenced]: $c.d->ref._q_value
)
)
}
QByteArray{
preview ([$e.d->data,s])
stringview ([$e.d->data,sb])
children
(
#(
d: $c.d,
[size]: $c.d->size,
[referenced]: $c.d->ref._q_value
)
)
}
QUrl{
preview
(
#if ($e.d.stateFlags == 0) (
$e.d
) #else (
#( $e.d->scheme, $e.d->host, $e.d->path )
)
)
children
(
#(
scheme: $c.d->scheme,
host: $c.d->host,
path: $c.d->path,
username: $c.d->userName,
password: $c.d->password,
encodedOriginal: $c.d->encodedOriginal,
query: $c.d->query,
fragment: $c.d->fragment
)
)
}
@
I was not completely right about my post. Further up I can find also part of what you have posted. However, since QString is not there it did show me only the other section.
@
[AutoExpand]
;QT_DEBUG_START (Qt Visual Studio Add-in v1.1.9)
QByteArray=<d->data,s> size=<d->size,u>
QPoint =x=<xp> y=<yp>
QPointF =x=<xp> y=<yp>
QRect =x1=<x1> y1=<y1> x2=<x2> y2=<y2>
QRectF =x=<xp> y=<yp> w=<w> h=<h>
QSize =width=<wd> height=<ht>
QSizeF =width=<wd> height=<ht>
QHash<> =size=<d->size>
QVarLengthArray<> =size=<s> data=<ptr>
;QT_DEBUG_END
.
.
.
@
I have simply installed vsaddin as to be dowloaded from devnet. So I did not follow gitoruos link.