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
dee3e2dd
Commit
dee3e2dd
authored
2 years ago
by
Mikhail Svechnikov
Browse files
Options
Downloads
Patches
Plain Diff
SelectionProperty: inherits from AbstractSelectionProperty
parent
c1312808
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1176
GUI: delete SelectionDescriptors class
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GUI/Model/Descriptor/SelectionProperty.h
+37
-5
37 additions, 5 deletions
GUI/Model/Descriptor/SelectionProperty.h
with
37 additions
and
5 deletions
GUI/Model/Descriptor/SelectionProperty.h
+
37
−
5
View file @
dee3e2dd
...
...
@@ -18,6 +18,18 @@
#include
"GUI/Model/Descriptor/SelectionDescriptor.h"
#include
"GUI/Support/XML/Streamer.h"
//! Abstract base class for SelectionProperty to ease referencing.
class
AbstractSelectionProperty
{
public:
virtual
~
AbstractSelectionProperty
()
=
default
;
//! Set currently selected option
virtual
void
setCurrentIndex
(
int
newIndex
)
=
0
;
//! Get currently selected option
virtual
int
currentIndex
()
const
=
0
;
};
//! Class for representing a selection, its attributes and its accessors.
//!
//! A "selection" in this context is a class instance out of a range of possible class instances.
...
...
@@ -49,7 +61,7 @@
//! \sa SelectionDescriptor
//!
template
<
typename
Catalog
>
class
SelectionProperty
{
class
SelectionProperty
:
public
AbstractSelectionProperty
{
public:
using
CatalogedType
=
typename
Catalog
::
CatalogedType
;
...
...
@@ -61,7 +73,9 @@ public:
template
<
typename
...
ArgsForCreation
>
void
init
(
const
QString
&
label
,
const
QString
&
tooltip
,
ArgsForCreation
...
argsForCreation
)
{
initFields
(
label
,
tooltip
);
initFieldsAndSetter
(
label
,
tooltip
,
argsForCreation
...);
setCurrentIndex
(
0
);
initDescriptor
(
label
,
tooltip
,
argsForCreation
...);
m_descriptor
.
setCurrentIndex
(
0
);
}
...
...
@@ -83,7 +97,9 @@ public:
{
m_initializer
=
initializer
;
initFields
(
label
,
tooltip
);
initFieldsAndSetter
(
label
,
tooltip
);
setCurrentIndex
(
0
);
initDescriptor
(
label
,
tooltip
);
m_descriptor
.
setCurrentIndex
(
0
);
}
...
...
@@ -108,7 +124,9 @@ public:
m_initializer
=
initializer
;
m_types
=
types
;
initFields
(
label
,
tooltip
);
initFieldsAndSetter
(
label
,
tooltip
);
setCurrentIndex
(
0
);
initDescriptor
(
label
,
tooltip
);
m_descriptor
.
setCurrentIndex
(
0
);
}
...
...
@@ -154,14 +172,22 @@ public:
}
private
:
void
initFields
(
const
QString
&
label
,
const
QString
&
tooltip
)
{
template
<
typename
...
ArgsForCreation
>
void
initFieldsAndSetter
(
const
QString
&
label
,
const
QString
&
tooltip
,
ArgsForCreation
...
argsForCreation
)
{
m_label
=
label
;
m_tooltip
=
tooltip
;
m_options
.
clear
();
for
(
const
auto
type
:
m_types
)
m_options
<<
Catalog
::
uiInfo
(
type
).
menuEntry
;
currentIndexSetter
=
[
=
](
int
current
)
{
auto
*
p
=
Catalog
::
create
(
m_types
[
current
],
argsForCreation
...);
if
(
m_initializer
)
m_initializer
(
p
,
m_p
.
get
());
m_p
.
reset
(
p
);
};
}
template
<
typename
...
ArgsForCreation
>
void
initDescriptor
(
const
QString
&
label
,
const
QString
&
tooltip
,
ArgsForCreation
...
argsForCreation
)
...
...
@@ -190,6 +216,9 @@ private:
QStringList
options
()
{
return
m_options
;}
CatalogedType
*
currentItem
()
{
return
m_p
.
get
();}
void
setCurrentIndex
(
int
newIndex
)
override
{
currentIndexSetter
(
newIndex
);
}
int
currentIndex
()
const
override
{
return
m_types
.
indexOf
(
Catalog
::
type
(
m_p
.
get
()));
}
private
:
SelectionDescriptor
<
CatalogedType
*>
m_descriptor
;
//!< descriptor, holding attributes like label, tooltip
...
...
@@ -201,6 +230,9 @@ private:
QStringList
m_options
;
//!< List of options, usually presented as combo entries
QVector
<
typename
Catalog
::
Type
>
m_types
=
Catalog
::
types
();
//! Reimplementable function to set currently selected option.
std
::
function
<
void
(
int
)
>
currentIndexSetter
=
nullptr
;
//! initializer function. Can be empty.
//! The first argument is the new item, the second is the old one if present; can be null.
//! This is intended to maybe copy values from the old to the new selection. oldItem also can be
...
...
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