Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
3d34ce42
Commit
3d34ce42
authored
15 years ago
by
Roberto Raggi
Browse files
Options
Downloads
Patches
Plain Diff
Removed obsolete code.
parent
8de6ccc7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/qmljseditor/qmlcompletionvisitor.cpp
+0
-119
0 additions, 119 deletions
src/plugins/qmljseditor/qmlcompletionvisitor.cpp
src/plugins/qmljseditor/qmlcompletionvisitor.h
+0
-72
0 additions, 72 deletions
src/plugins/qmljseditor/qmlcompletionvisitor.h
with
0 additions
and
191 deletions
src/plugins/qmljseditor/qmlcompletionvisitor.cpp
deleted
100644 → 0
+
0
−
119
View file @
8de6ccc7
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include
<QtCore/QDebug>
#include
"qmlcompletionvisitor.h"
#include
"qmljsast_p.h"
using
namespace
QmlJS
;
using
namespace
QmlJS
::
AST
;
namespace
QmlEditor
{
namespace
Internal
{
QmlCompletionVisitor
::
QmlCompletionVisitor
()
{
}
QSet
<
QString
>
QmlCompletionVisitor
::
operator
()(
QmlJS
::
AST
::
UiProgram
*
ast
,
int
pos
)
{
m_completions
.
clear
();
m_pos
=
(
quint32
)
pos
;
Node
::
acceptChild
(
ast
,
this
);
return
m_completions
;
}
bool
QmlCompletionVisitor
::
preVisit
(
QmlJS
::
AST
::
Node
*
node
)
{
if
(
!
m_parentStack
.
isEmpty
())
m_nodeParents
[
node
]
=
m_parentStack
.
top
();
m_parentStack
.
push
(
node
);
return
true
;
}
static
QString
toString
(
Statement
*
stmt
)
{
if
(
ExpressionStatement
*
exprStmt
=
AST
::
cast
<
ExpressionStatement
*>
(
stmt
))
{
if
(
IdentifierExpression
*
idExpr
=
AST
::
cast
<
IdentifierExpression
*>
(
exprStmt
->
expression
))
{
return
idExpr
->
name
->
asString
();
}
}
return
QString
();
}
bool
QmlCompletionVisitor
::
visit
(
UiScriptBinding
*
ast
)
{
if
(
!
ast
)
return
false
;
UiObjectDefinition
*
parentObject
=
findParentObject
(
ast
);
if
(
ast
->
qualifiedId
&&
ast
->
qualifiedId
->
name
->
asString
()
==
QLatin1String
(
"id"
))
{
const
QString
nodeId
=
toString
(
ast
->
statement
);
if
(
!
nodeId
.
isEmpty
())
m_objectToId
[
parentObject
]
=
nodeId
;
}
else
if
(
m_objectToId
.
contains
(
parentObject
))
{
if
(
ast
->
qualifiedId
&&
ast
->
qualifiedId
->
name
)
{
const
QString
parentId
=
m_objectToId
[
parentObject
];
m_completions
.
insert
(
parentId
+
"."
+
ast
->
qualifiedId
->
name
->
asString
());
}
}
if
(
ast
->
firstSourceLocation
().
begin
()
>=
m_pos
&&
m_pos
<=
ast
->
lastSourceLocation
().
end
())
{
UiObjectDefinition
*
parentsParent
=
findParentObject
(
parentObject
);
if
(
parentsParent
)
{
m_completions
.
insert
(
QLatin1String
(
"parent"
));
}
}
return
true
;
}
UiObjectDefinition
*
QmlCompletionVisitor
::
findParentObject
(
Node
*
node
)
const
{
if
(
!
node
)
return
0
;
Node
*
candidate
=
m_nodeParents
[
node
];
if
(
candidate
==
0
)
return
0
;
if
(
UiObjectDefinition
*
parentObject
=
AST
::
cast
<
UiObjectDefinition
*>
(
candidate
))
return
parentObject
;
else
return
findParentObject
(
candidate
);
}
}
// namespace Internal
}
// namespace QmlEditor
This diff is collapsed.
Click to expand it.
src/plugins/qmljseditor/qmlcompletionvisitor.h
deleted
100644 → 0
+
0
−
72
View file @
8de6ccc7
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#ifndef COMPLETIONVISITOR_H
#define COMPLETIONVISITOR_H
#include
<QtCore/QMap>
#include
<QtCore/QSet>
#include
<QtCore/QStack>
#include
<QtCore/QString>
#include
"qmljsastfwd_p.h"
#include
"qmljsastvisitor_p.h"
#include
"qmljsengine_p.h"
namespace
QmlEditor
{
namespace
Internal
{
class
QmlCompletionVisitor
:
protected
QmlJS
::
AST
::
Visitor
{
public:
QmlCompletionVisitor
();
QSet
<
QString
>
operator
()(
QmlJS
::
AST
::
UiProgram
*
ast
,
int
pos
);
protected:
virtual
bool
preVisit
(
QmlJS
::
AST
::
Node
*
node
);
virtual
void
postVisit
(
QmlJS
::
AST
::
Node
*
)
{
m_parentStack
.
pop
();
}
virtual
bool
visit
(
QmlJS
::
AST
::
UiScriptBinding
*
ast
);
private
:
QmlJS
::
AST
::
UiObjectDefinition
*
findParentObject
(
QmlJS
::
AST
::
Node
*
node
)
const
;
private
:
QSet
<
QString
>
m_completions
;
quint32
m_pos
;
QStack
<
QmlJS
::
AST
::
Node
*>
m_parentStack
;
QMap
<
QmlJS
::
AST
::
Node
*
,
QmlJS
::
AST
::
Node
*>
m_nodeParents
;
QMap
<
QmlJS
::
AST
::
Node
*
,
QString
>
m_objectToId
;
};
}
// namespace Internal
}
// namespace QmlEditor
#endif // COMPLETIONVISITOR_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment