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
e42b01e0
Commit
e42b01e0
authored
3 months ago
by
Mikhail Svechnikov
Browse files
Options
Downloads
Plain Diff
[m.0] Set limits for rectangle mask spinboxes (
#1049
) (Closes
#1049
)
Merging branch 'm.0' into 'main'. See merge request
!2791
parents
e3240b9f
5f487b0d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2791
Set limits for rectangle mask spinboxes (#1049)
Pipeline
#179112
failed
3 months ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Device/Mask/Ellipse.cpp
+1
-1
1 addition, 1 deletion
Device/Mask/Ellipse.cpp
Device/Mask/Rectangle.cpp
+4
-4
4 additions, 4 deletions
Device/Mask/Rectangle.cpp
GUI/View/Setup/MasksPanel.cpp
+7
-0
7 additions, 0 deletions
GUI/View/Setup/MasksPanel.cpp
with
12 additions
and
5 deletions
Device/Mask/Ellipse.cpp
+
1
−
1
View file @
e42b01e0
...
@@ -29,7 +29,7 @@ Ellipse::Ellipse(double xcenter, double ycenter, double xradius, double yradius,
...
@@ -29,7 +29,7 @@ Ellipse::Ellipse(double xcenter, double ycenter, double xradius, double yradius,
,
m_yr
(
yradius
)
,
m_yr
(
yradius
)
,
m_theta
(
theta
)
,
m_theta
(
theta
)
{
{
if
(
xradius
<
=
0.0
||
yradius
<
=
0.0
)
if
(
xradius
<
0.0
||
yradius
<
0.0
)
throw
std
::
runtime_error
(
throw
std
::
runtime_error
(
"Ellipse::Ellipse(double xcenter, double ycenter, double xradius, double yradius) "
"Ellipse::Ellipse(double xcenter, double ycenter, double xradius, double yradius) "
"-> Error. Radius cannot be negative
\n
"
);
"-> Error. Radius cannot be negative
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Device/Mask/Rectangle.cpp
+
4
−
4
View file @
e42b01e0
...
@@ -25,16 +25,16 @@ Rectangle::Rectangle(double xlow, double ylow, double xup, double yup, bool inve
...
@@ -25,16 +25,16 @@ Rectangle::Rectangle(double xlow, double ylow, double xup, double yup, bool inve
:
IShape2D
(
"Rectangle"
)
:
IShape2D
(
"Rectangle"
)
,
m_inverted
(
inverted
)
,
m_inverted
(
inverted
)
{
{
if
(
xup
<
=
xlow
)
{
if
(
xup
<
xlow
)
{
std
::
ostringstream
message
;
std
::
ostringstream
message
;
message
<<
"Rectangle(double xlow, double ylow, double xup, double yup) -> Error. "
;
message
<<
"Rectangle(double xlow, double ylow, double xup, double yup) -> Error. "
;
message
<<
" xup <
=
xlow"
<<
std
::
endl
;
message
<<
" xup < xlow"
<<
std
::
endl
;
throw
std
::
runtime_error
(
message
.
str
());
throw
std
::
runtime_error
(
message
.
str
());
}
}
if
(
yup
<
=
ylow
)
{
if
(
yup
<
ylow
)
{
std
::
ostringstream
message
;
std
::
ostringstream
message
;
message
<<
"Rectangle(double xlow, double ylow, double xup, double yup) -> Error. "
;
message
<<
"Rectangle(double xlow, double ylow, double xup, double yup) -> Error. "
;
message
<<
" yup <
=
ylow"
<<
std
::
endl
;
message
<<
" yup < ylow"
<<
std
::
endl
;
throw
std
::
runtime_error
(
message
.
str
());
throw
std
::
runtime_error
(
message
.
str
());
}
}
m_xlow
=
xlow
;
m_xlow
=
xlow
;
...
...
This diff is collapsed.
Click to expand it.
GUI/View/Setup/MasksPanel.cpp
+
7
−
0
View file @
e42b01e0
...
@@ -31,6 +31,13 @@ void addSpinBox(MaskItem* mask, QFormLayout* layout, DoubleProperty& property)
...
@@ -31,6 +31,13 @@ void addSpinBox(MaskItem* mask, QFormLayout* layout, DoubleProperty& property)
auto
*
spinbox
=
new
DSpinBox
(
&
property
);
auto
*
spinbox
=
new
DSpinBox
(
&
property
);
layout
->
addRow
(
property
.
label
()
+
":"
,
spinbox
);
layout
->
addRow
(
property
.
label
()
+
":"
,
spinbox
);
QObject
::
connect
(
spinbox
,
&
DSpinBox
::
valueChanged
,
[
mask
](
double
)
{
QObject
::
connect
(
spinbox
,
&
DSpinBox
::
valueChanged
,
[
mask
](
double
)
{
// set dynamic limits for rectangle
if
(
auto
*
rect
=
dynamic_cast
<
RectangleItem
*>
(
mask
))
{
rect
->
xLow
().
setLimits
(
RealLimits
::
upperLimited
(
rect
->
xUp
().
dVal
()));
rect
->
xUp
().
setLimits
(
RealLimits
::
lowerLimited
(
rect
->
xLow
().
dVal
()));
rect
->
yLow
().
setLimits
(
RealLimits
::
upperLimited
(
rect
->
yUp
().
dVal
()));
rect
->
yUp
().
setLimits
(
RealLimits
::
lowerLimited
(
rect
->
yLow
().
dVal
()));
}
gDoc
->
setModified
();
gDoc
->
setModified
();
ASSERT
(
mask
);
ASSERT
(
mask
);
emit
mask
->
maskGeometryChanged
();
emit
mask
->
maskGeometryChanged
();
...
...
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