Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
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
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
8d49201b
Commit
8d49201b
authored
9 months ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
rm unused string util
parent
5266343a
No related branches found
No related tags found
1 merge request
!2619
test file names match test names; rm unused string util
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GUI/Model/Util/String.cpp
+0
-31
0 additions, 31 deletions
GUI/Model/Util/String.cpp
GUI/Model/Util/String.h
+0
-7
0 additions, 7 deletions
GUI/Model/Util/String.h
Tests/Unit/GUI/TestString.cpp
+0
-22
0 additions, 22 deletions
Tests/Unit/GUI/TestString.cpp
with
0 additions
and
60 deletions
GUI/Model/Util/String.cpp
+
0
−
31
View file @
8d49201b
...
@@ -24,34 +24,3 @@ QStringList GUI::Util::String::fromStdStrings(const std::vector<std::string>& co
...
@@ -24,34 +24,3 @@ QStringList GUI::Util::String::fromStdStrings(const std::vector<std::string>& co
result
.
append
(
QString
::
fromStdString
(
str
));
result
.
append
(
QString
::
fromStdString
(
str
));
return
result
;
return
result
;
}
}
QString
GUI
::
Util
::
String
::
suggestName
(
const
QStringList
&
existingNames
,
const
QString
&
name
)
{
int
newNumber
=
-
1
;
QRegularExpression
regexp
(
R"(\((\d+)\))"
);
QString
baseName
=
name
;
{
QRegularExpressionMatch
matched
{
regexp
.
match
(
baseName
)};
if
(
matched
.
hasMatch
())
{
newNumber
=
matched
.
captured
(
1
).
toInt
();
baseName
.
replace
(
matched
.
captured
(
0
),
""
);
baseName
=
baseName
.
trimmed
();
}
}
for
(
const
auto
&
n
:
existingNames
)
{
if
(
n
==
baseName
)
newNumber
=
std
::
max
(
newNumber
,
2
);
else
{
QRegularExpressionMatch
matched
{
regexp
.
match
(
n
)};
if
(
matched
.
hasMatch
())
newNumber
=
std
::
max
(
newNumber
,
matched
.
captured
(
1
).
toInt
()
+
1
);
}
}
if
(
newNumber
==
-
1
)
return
baseName
;
return
QString
(
"%1 (%2)"
).
arg
(
baseName
).
arg
(
newNumber
);
}
This diff is collapsed.
Click to expand it.
GUI/Model/Util/String.h
+
0
−
7
View file @
8d49201b
...
@@ -20,15 +20,8 @@
...
@@ -20,15 +20,8 @@
namespace
GUI
::
Util
::
String
{
namespace
GUI
::
Util
::
String
{
//! Returns a name suggestion based on the given name.
//!
//! Tries to add a reasonable numbering in brackets if necessary (e.g. "GISAS" -> "GISAS (2)")
QString
suggestName
(
const
QStringList
&
existingNames
,
const
QString
&
name
);
QStringList
fromStdStrings
(
const
std
::
vector
<
std
::
string
>&
container
);
QStringList
fromStdStrings
(
const
std
::
vector
<
std
::
string
>&
container
);
QString
readTextFile
(
const
QString
&
fname
);
}
// namespace GUI::Util::String
}
// namespace GUI::Util::String
#endif // BORNAGAIN_GUI_MODEL_UTIL_STRING_H
#endif // BORNAGAIN_GUI_MODEL_UTIL_STRING_H
This diff is collapsed.
Click to expand it.
Tests/Unit/GUI/TestString.cpp
deleted
100644 → 0
+
0
−
22
View file @
5266343a
#include
"GUI/Model/Util/String.h"
#include
"Tests/GTestWrapper/google_test.h"
#include
<QStringList>
#include
<QVector>
TEST
(
StringUtil
,
suggestName
)
{
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
,
"B"
,
"C"
},
"A"
),
"A (2)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
,
"B"
,
"C"
},
"D"
),
"D"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A (1)"
,
"A (19)"
},
"A"
),
"A (20)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A (x)"
},
"A"
),
"A"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
,
"A (2)"
},
"A (2)"
),
"A (3)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
,
"A (X)"
},
"A (X)"
),
"A (X) (2)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
,
"A (3)"
},
"A (2)"
),
"A (4)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
},
"A (2)"
),
"A (2)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A"
},
"A (7)"
),
"A (7)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A (0)"
},
"A"
),
"A (1)"
);
EXPECT_EQ
(
GUI
::
Util
::
String
::
suggestName
({
"A, A (0)"
},
"A"
),
"A (1)"
);
}
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