Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Dmitri Naumov
ogs
Commits
76e8fe9c
Commit
76e8fe9c
authored
10 years ago
by
Karsten Rink
Browse files
Options
Downloads
Patches
Plain Diff
changed access to name-information for geo tree models
parent
b6d09eae
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Applications/DataExplorer/DataView/GeoTreeModel.cpp
+9
-7
9 additions, 7 deletions
Applications/DataExplorer/DataView/GeoTreeModel.cpp
with
9 additions
and
7 deletions
Applications/DataExplorer/DataView/GeoTreeModel.cpp
+
9
−
7
View file @
76e8fe9c
...
@@ -56,20 +56,21 @@ void GeoTreeModel::addPointList(QString geoName, GeoLib::PointVec const& pointVe
...
@@ -56,20 +56,21 @@ void GeoTreeModel::addPointList(QString geoName, GeoLib::PointVec const& pointVe
for
(
size_t
j
=
0
;
j
<
nPoints
;
j
++
)
for
(
size_t
j
=
0
;
j
<
nPoints
;
j
++
)
{
{
const
GeoLib
::
Point
&
pnt
(
*
(
*
points
)[
j
]);
const
GeoLib
::
Point
&
pnt
(
*
(
*
points
)[
j
]);
std
::
string
pnt_name
(
""
);
pointVec
.
getNameOfElementByID
(
j
,
pnt_name
);
QList
<
QVariant
>
pnt_data
;
QList
<
QVariant
>
pnt_data
;
pnt_data
.
reserve
(
5
);
pnt_data
.
reserve
(
5
);
pnt_data
<<
static_cast
<
unsigned
>
(
j
)
pnt_data
<<
static_cast
<
unsigned
>
(
j
)
<<
QString
::
number
(
pnt
[
0
],
'f'
)
<<
QString
::
number
(
pnt
[
0
],
'f'
)
<<
QString
::
number
(
pnt
[
1
],
'f'
)
<<
QString
::
number
(
pnt
[
1
],
'f'
)
<<
QString
::
number
(
pnt
[
2
],
'f'
)
<<
QString
::
number
(
pnt
[
2
],
'f'
)
<<
QString
::
fromStdString
(
pnt_name
)
;
<<
""
;
pointList
->
appendChild
(
new
GeoTreeItem
(
pnt_data
,
pointList
->
appendChild
(
new
GeoTreeItem
(
pnt_data
,
pointList
,
pointList
,
static_cast
<
const
GeoLib
::
Point
*>
(
&
pnt
)));
static_cast
<
const
GeoLib
::
Point
*>
(
&
pnt
)));
}
}
for
(
auto
pnt
=
pointVec
.
getNameIDMapBegin
();
pnt
!=
pointVec
.
getNameIDMapEnd
();
++
pnt
)
QVariant
pnt_data
(
pointList
->
child
(
pnt
->
second
)
->
setData
(
4
,
QString
::
fromStdString
(
pnt
->
first
)));
INFO
(
"Geometry
\"
%s
\"
built. %d points added."
,
geoName
.
toStdString
().
c_str
(),
nPoints
);
INFO
(
"Geometry
\"
%s
\"
built. %d points added."
,
geoName
.
toStdString
().
c_str
(),
nPoints
);
reset
();
reset
();
...
@@ -135,10 +136,7 @@ void GeoTreeModel::addChildren(GeoObjectListItem* plyList,
...
@@ -135,10 +136,7 @@ void GeoTreeModel::addChildren(GeoObjectListItem* plyList,
{
{
QList
<
QVariant
>
line_data
;
QList
<
QVariant
>
line_data
;
line_data
.
reserve
(
4
);
line_data
.
reserve
(
4
);
std
::
string
ply_name
(
""
);
line_data
<<
"Line "
+
QString
::
number
(
i
)
<<
""
<<
""
<<
""
;
if
(
polyline_vec
.
getNameOfElementByID
(
i
,
ply_name
))
line_data
<<
"Line "
+
QString
::
number
(
i
)
<<
QString
::
fromStdString
(
ply_name
)
<<
""
<<
""
;
else
line_data
<<
"Line "
+
QString
::
number
(
i
)
<<
""
<<
""
<<
""
;
const
GeoLib
::
Polyline
&
line
(
*
(
lines
[
i
]));
const
GeoLib
::
Polyline
&
line
(
*
(
lines
[
i
]));
GeoTreeItem
*
lineItem
(
new
GeoTreeItem
(
line_data
,
plyList
,
&
line
));
GeoTreeItem
*
lineItem
(
new
GeoTreeItem
(
line_data
,
plyList
,
&
line
));
...
@@ -158,6 +156,10 @@ void GeoTreeModel::addChildren(GeoObjectListItem* plyList,
...
@@ -158,6 +156,10 @@ void GeoTreeModel::addChildren(GeoObjectListItem* plyList,
lineItem
->
appendChild
(
new
TreeItem
(
pnt_data
,
lineItem
));
lineItem
->
appendChild
(
new
TreeItem
(
pnt_data
,
lineItem
));
}
}
}
}
for
(
auto
pnt
=
polyline_vec
.
getNameIDMapBegin
();
pnt
!=
polyline_vec
.
getNameIDMapEnd
();
++
pnt
)
QVariant
pnt_data
(
plyList
->
child
(
pnt
->
second
)
->
setData
(
4
,
QString
::
fromStdString
(
pnt
->
first
)));
INFO
(
"%d polylines added."
,
end_index
-
start_index
);
INFO
(
"%d polylines added."
,
end_index
-
start_index
);
}
}
...
...
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