-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathExportImageDialog.h
49 lines (34 loc) · 1018 Bytes
/
ExportImageDialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once
// qt
#include <QDialog>
#include <QTimer>
// studio
#include <Data/Preferences.h>
class Ui_ExportImageDialog;
namespace shapeworks {
class Visualizer;
class AnalysisTool;
/*!
* The ExportImageDialog is a QDialog that implements the user interface for exporting images
*/
class ExportImageDialog : public QDialog {
Q_OBJECT
public:
ExportImageDialog(QWidget* parent, Preferences& prefs, QSharedPointer<AnalysisTool> analysis_tool,
QSharedPointer<Visualizer> visualizer, bool pca_mode);
private Q_SLOTS:
void export_clicked();
Q_SIGNALS:
private:
void update_preview();
void drawRotatedText(QPainter& painter, QString text, QPointF point, qreal angle, QRect rect);
QVector<int> get_modes(QString string);
Ui_ExportImageDialog* ui_;
QSharedPointer<Visualizer> visualizer_;
Preferences& prefs_;
QPixmap pixmap_;
bool pca_mode_ = false;
QTimer update_preview_timer_;
QSharedPointer<AnalysisTool> analysis_tool_;
};
} // namespace shapeworks