CustusX  18.04
An IGT application
cxScreenShotImageWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 #ifndef CXSCREENSHOTIMAGEWRITER_H
12 #define CXSCREENSHOTIMAGEWRITER_H
13 
14 #include <QObject>
15 #include <QPointer>
16 #include <QMainWindow>
17 #include "vtkSmartPointer.h"
18 #include "cxVisServices.h"
19 #include "cxForwardDeclarations.h"
20 
21 namespace cx
22 {
23 typedef boost::shared_ptr<class ScreenShotImageWriter> ScreenShotImageWriterPtr;
24 
28 class cxResourceVisualization_EXPORT ScreenShotImageWriter
29 {
30 public:
31  static ScreenShotImageWriterPtr create(PatientModelServicePtr patient) { return ScreenShotImageWriterPtr(new ScreenShotImageWriter(patient)); }
32  void grabAllScreensToFile();
33 
34  void save(QImage image, QString id);
35  QString getName(unsigned screenid);
36  QPixmap grab(unsigned screenid);
37 
39 
40 private:
41  PatientModelServicePtr mPatient;
42 };
43 
44 } // namespace cx
45 
46 #endif // CXSCREENSHOTIMAGEWRITER_H
boost::shared_ptr< class PatientModelService > PatientModelServicePtr
boost::shared_ptr< class ScreenShotImageWriter > ScreenShotImageWriterPtr
static ScreenShotImageWriterPtr create(PatientModelServicePtr patient)
Namespace for all CustusX production code.