Skip to content
GitLab
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
b407810b
Commit
b407810b
authored
Jan 12, 2010
by
Christiaan Janssen
Browse files
QmlDesigner.statesEditor: Implementing some missing virtual methods of the View
parent
590adf32
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp
View file @
b407810b
...
...
@@ -303,6 +303,26 @@ void StatesEditorView::stateChanged(const QmlModelState &newQmlModelState, const
m_editorModel
->
emitChangedToState
(
m_modelStates
.
indexOf
(
newQmlModelState
));
}
void
StatesEditorView
::
transformChanged
(
const
QmlObjectNode
&
qmlObjectNode
)
{
QmlModelView
::
transformChanged
(
qmlObjectNode
);
}
void
StatesEditorView
::
parentChanged
(
const
QmlObjectNode
&
qmlObjectNode
)
{
QmlModelView
::
parentChanged
(
qmlObjectNode
);
}
void
StatesEditorView
::
otherPropertyChanged
(
const
QmlObjectNode
&
qmlObjectNode
)
{
QmlModelView
::
otherPropertyChanged
(
qmlObjectNode
);
}
void
StatesEditorView
::
updateItem
(
const
QmlObjectNode
&
qmlObjectNode
)
{
QmlModelView
::
updateItem
(
qmlObjectNode
);
}
void
StatesEditorView
::
customNotification
(
const
AbstractView
*
view
,
const
QString
&
identifier
,
const
QList
<
ModelNode
>
&
nodeList
,
const
QList
<
QVariant
>
&
data
)
{
QmlModelView
::
customNotification
(
view
,
identifier
,
nodeList
,
data
);
...
...
src/plugins/qmldesigner/components/stateseditor/stateseditorview.h
View file @
b407810b
...
...
@@ -68,6 +68,10 @@ public:
// QmlModelView
void
stateChanged
(
const
QmlModelState
&
newQmlModelState
,
const
QmlModelState
&
oldQmlModelState
);
void
transformChanged
(
const
QmlObjectNode
&
qmlObjectNode
)
;
void
parentChanged
(
const
QmlObjectNode
&
qmlObjectNode
);
void
otherPropertyChanged
(
const
QmlObjectNode
&
qmlObjectNode
);
void
updateItem
(
const
QmlObjectNode
&
qmlObjectNode
);
void
customNotification
(
const
AbstractView
*
view
,
const
QString
&
identifier
,
const
QList
<
ModelNode
>
&
nodeList
,
const
QList
<
QVariant
>
&
data
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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