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
c24e9666
Commit
c24e9666
authored
5 years ago
by
Juan Manuel Carmona Loaiza
Browse files
Options
Downloads
Patches
Plain Diff
Add a function to open a dialog and save the pic as a png file
parent
a5f38257
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
GUI/coregui/Views/RealSpaceWidgets/RealSpaceCanvas.cpp
+29
-2
29 additions, 2 deletions
GUI/coregui/Views/RealSpaceWidgets/RealSpaceCanvas.cpp
GUI/coregui/Views/RealSpaceWidgets/RealSpaceCanvas.h
+1
-0
1 addition, 0 deletions
GUI/coregui/Views/RealSpaceWidgets/RealSpaceCanvas.h
with
30 additions
and
2 deletions
GUI/coregui/Views/RealSpaceWidgets/RealSpaceCanvas.cpp
+
29
−
2
View file @
c24e9666
...
...
@@ -12,6 +12,8 @@
//
// ************************************************************************** //
#include
"AppSvc.h"
#include
"projectmanager.h"
#include
"RealSpaceCanvas.h"
#include
"RealSpaceBuilder.h"
#include
"RealSpaceModel.h"
...
...
@@ -20,8 +22,10 @@
#include
"SessionItemUtils.h"
#include
"WarningSign.h"
#include
"FilterPropertyProxy.h"
#include
<QFileDialog>
#include
<QApplication>
#include
<QVBoxLayout>
#include
<QMessageBox>
RealSpaceCanvas
::
RealSpaceCanvas
(
QWidget
*
parent
)
:
QWidget
(
parent
),
m_sampleModel
(
nullptr
),
m_view
(
new
RealSpaceView
),
m_selectionModel
(
nullptr
),
...
...
@@ -123,10 +127,33 @@ void RealSpaceCanvas::onChangeLayerSizeAction(double layerSizeChangeScale)
void
RealSpaceCanvas
::
onSavePictureAction
()
{
QPixmap
pixmap
(
this
->
size
());
this
->
render
(
&
pixmap
,
QPoint
(),
childrenRegion
());
//pixmap.save("path/to/save/file.png");
render
(
&
pixmap
,
QPoint
(),
childrenRegion
());
savePicture
(
pixmap
);
}
void
RealSpaceCanvas
::
savePicture
(
const
QPixmap
&
pixmap
)
{
QString
dirname
=
AppSvc
::
projectManager
()
->
userExportDir
();
QString
defaultExtension
=
".png"
;
QString
selectedFilter
(
"*"
+
defaultExtension
);
QString
defaultName
=
dirname
+
QString
(
"/untitled"
);
QString
fileName
=
QFileDialog
::
getSaveFileName
(
nullptr
,
"Save 3D real space view"
,
defaultName
,
selectedFilter
);
QString
nameToSave
=
fileName
.
endsWith
(
defaultExtension
)
?
fileName
:
fileName
+
defaultExtension
;
if
(
!
nameToSave
.
isEmpty
())
{
try
{
pixmap
.
save
(
nameToSave
);
}
catch
(
const
std
::
exception
&
ex
)
{
QString
message
=
"Attempt to save file with the name '"
;
message
.
append
(
nameToSave
);
message
.
append
(
"' has failed with following error message
\n\n
"
);
message
.
append
(
QString
::
fromStdString
(
ex
.
what
()));
QMessageBox
::
warning
(
nullptr
,
"Houston, we have a problem."
,
message
);
}
}
}
void
RealSpaceCanvas
::
onDataChanged
(
const
QModelIndex
&
index
)
{
auto
item
=
m_sampleModel
->
itemForIndex
(
index
);
...
...
This diff is collapsed.
Click to expand it.
GUI/coregui/Views/RealSpaceWidgets/RealSpaceCanvas.h
+
1
−
0
View file @
c24e9666
...
...
@@ -119,6 +119,7 @@ private:
bool
m_view_locked
;
std
::
unique_ptr
<
SceneGeometry
>
m_sceneGeometry
;
WarningSign
*
m_warningSign
;
void
savePicture
(
const
QPixmap
&
pixmap
);
};
#endif // REALSPACESCENE_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