ui_graphicalTransformationDlg.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. /********************************************************************************
  2. ** Form generated from reading UI file 'graphicalTransformationDlg.ui'
  3. **
  4. ** Created by: Qt User Interface Compiler version 5.15.10
  5. **
  6. ** WARNING! All changes made in this file will be lost when recompiling UI file!
  7. ********************************************************************************/
  8. #ifndef UI_GRAPHICALTRANSFORMATIONDLG_H
  9. #define UI_GRAPHICALTRANSFORMATIONDLG_H
  10. #include <QtCore/QVariant>
  11. #include <QtGui/QIcon>
  12. #include <QtWidgets/QApplication>
  13. #include <QtWidgets/QCheckBox>
  14. #include <QtWidgets/QComboBox>
  15. #include <QtWidgets/QDialog>
  16. #include <QtWidgets/QDoubleSpinBox>
  17. #include <QtWidgets/QFrame>
  18. #include <QtWidgets/QHBoxLayout>
  19. #include <QtWidgets/QLabel>
  20. #include <QtWidgets/QPushButton>
  21. #include <QtWidgets/QRadioButton>
  22. #include <QtWidgets/QSpacerItem>
  23. #include <QtWidgets/QToolButton>
  24. #include <QtWidgets/QVBoxLayout>
  25. QT_BEGIN_NAMESPACE
  26. class Ui_GraphicalTransformationDlg
  27. {
  28. public:
  29. QVBoxLayout *verticalLayout;
  30. QFrame *frame;
  31. QHBoxLayout *horizontalLayout;
  32. QSpacerItem *horizontalSpacer;
  33. QToolButton *pauseButton;
  34. QToolButton *razButton;
  35. QToolButton *okButton;
  36. QToolButton *cancelButton;
  37. QHBoxLayout *horizontalLayout_2;
  38. QLabel *label;
  39. QComboBox *rotComboBox;
  40. QHBoxLayout *horizontalLayout_3;
  41. QCheckBox *TxCheckBox;
  42. QCheckBox *TyCheckBox;
  43. QCheckBox *TzCheckBox;
  44. QHBoxLayout *horizontalLayout_4;
  45. QSpacerItem *horizontalSpacer_4;
  46. QPushButton *advPushButton;
  47. QHBoxLayout *horizontalLayout_5;
  48. QLabel *translateLabel;
  49. QComboBox *advTranslateComboBox;
  50. QHBoxLayout *horizontalLayout_6;
  51. QLabel *rotateLabel;
  52. QComboBox *advRotateComboBox;
  53. QLabel *rotAxisLabel;
  54. QHBoxLayout *horizontalLayout_7;
  55. QRadioButton *objCenterRadio;
  56. QRadioButton *refAxisRadio;
  57. QLabel *IncrementalTransformLabel;
  58. QHBoxLayout *horizontalLayout_8;
  59. QLabel *incrementalRotLabel;
  60. QDoubleSpinBox *incrementalRotSpin;
  61. QHBoxLayout *horizontalLayout_9;
  62. QLabel *incrementalTransLabel;
  63. QDoubleSpinBox *incrementalTransSpin;
  64. QHBoxLayout *horizontalLayout_11;
  65. QSpacerItem *horizontalSpacer_2;
  66. QPushButton *incrementalBackwardButton;
  67. QPushButton *incrementalForwardButton;
  68. void setupUi(QDialog *GraphicalTransformationDlg)
  69. {
  70. if (GraphicalTransformationDlg->objectName().isEmpty())
  71. GraphicalTransformationDlg->setObjectName(QString::fromUtf8("GraphicalTransformationDlg"));
  72. GraphicalTransformationDlg->resize(730, 465);
  73. QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
  74. sizePolicy.setHorizontalStretch(0);
  75. sizePolicy.setVerticalStretch(0);
  76. sizePolicy.setHeightForWidth(GraphicalTransformationDlg->sizePolicy().hasHeightForWidth());
  77. GraphicalTransformationDlg->setSizePolicy(sizePolicy);
  78. verticalLayout = new QVBoxLayout(GraphicalTransformationDlg);
  79. verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
  80. verticalLayout->setSizeConstraint(QLayout::SetDefaultConstraint);
  81. verticalLayout->setContentsMargins(6, 6, 6, 6);
  82. frame = new QFrame(GraphicalTransformationDlg);
  83. frame->setObjectName(QString::fromUtf8("frame"));
  84. QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Maximum);
  85. sizePolicy1.setHorizontalStretch(0);
  86. sizePolicy1.setVerticalStretch(0);
  87. sizePolicy1.setHeightForWidth(frame->sizePolicy().hasHeightForWidth());
  88. frame->setSizePolicy(sizePolicy1);
  89. horizontalLayout = new QHBoxLayout(frame);
  90. horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
  91. horizontalLayout->setContentsMargins(0, 0, 0, 0);
  92. horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Preferred, QSizePolicy::Minimum);
  93. horizontalLayout->addItem(horizontalSpacer);
  94. pauseButton = new QToolButton(frame);
  95. pauseButton->setObjectName(QString::fromUtf8("pauseButton"));
  96. pauseButton->setMinimumSize(QSize(25, 25));
  97. QIcon icon;
  98. icon.addFile(QString::fromUtf8(":/CC/images/smallPause.png"), QSize(), QIcon::Normal, QIcon::Off);
  99. pauseButton->setIcon(icon);
  100. pauseButton->setCheckable(true);
  101. pauseButton->setChecked(false);
  102. horizontalLayout->addWidget(pauseButton);
  103. razButton = new QToolButton(frame);
  104. razButton->setObjectName(QString::fromUtf8("razButton"));
  105. razButton->setMinimumSize(QSize(25, 25));
  106. razButton->setText(QString::fromUtf8("..."));
  107. QIcon icon1;
  108. icon1.addFile(QString::fromUtf8(":/CC/images/smallReset.png"), QSize(), QIcon::Normal, QIcon::Off);
  109. razButton->setIcon(icon1);
  110. horizontalLayout->addWidget(razButton);
  111. okButton = new QToolButton(frame);
  112. okButton->setObjectName(QString::fromUtf8("okButton"));
  113. okButton->setMinimumSize(QSize(25, 25));
  114. okButton->setText(QString::fromUtf8("..."));
  115. QIcon icon2;
  116. icon2.addFile(QString::fromUtf8(":/CC/images/smallValidate.png"), QSize(), QIcon::Normal, QIcon::Off);
  117. okButton->setIcon(icon2);
  118. horizontalLayout->addWidget(okButton);
  119. cancelButton = new QToolButton(frame);
  120. cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
  121. cancelButton->setMinimumSize(QSize(25, 25));
  122. cancelButton->setText(QString::fromUtf8("..."));
  123. QIcon icon3;
  124. icon3.addFile(QString::fromUtf8(":/CC/images/smallCancel.png"), QSize(), QIcon::Normal, QIcon::Off);
  125. cancelButton->setIcon(icon3);
  126. horizontalLayout->addWidget(cancelButton);
  127. verticalLayout->addWidget(frame);
  128. horizontalLayout_2 = new QHBoxLayout();
  129. horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
  130. label = new QLabel(GraphicalTransformationDlg);
  131. label->setObjectName(QString::fromUtf8("label"));
  132. QSizePolicy sizePolicy2(QSizePolicy::Maximum, QSizePolicy::Preferred);
  133. sizePolicy2.setHorizontalStretch(0);
  134. sizePolicy2.setVerticalStretch(0);
  135. sizePolicy2.setHeightForWidth(label->sizePolicy().hasHeightForWidth());
  136. label->setSizePolicy(sizePolicy2);
  137. label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
  138. horizontalLayout_2->addWidget(label);
  139. rotComboBox = new QComboBox(GraphicalTransformationDlg);
  140. rotComboBox->addItem(QString::fromUtf8("XYZ"));
  141. rotComboBox->addItem(QString::fromUtf8("X"));
  142. rotComboBox->addItem(QString::fromUtf8("Y"));
  143. rotComboBox->addItem(QString::fromUtf8("Z"));
  144. rotComboBox->addItem(QString());
  145. rotComboBox->setObjectName(QString::fromUtf8("rotComboBox"));
  146. QSizePolicy sizePolicy3(QSizePolicy::Preferred, QSizePolicy::Fixed);
  147. sizePolicy3.setHorizontalStretch(0);
  148. sizePolicy3.setVerticalStretch(0);
  149. sizePolicy3.setHeightForWidth(rotComboBox->sizePolicy().hasHeightForWidth());
  150. rotComboBox->setSizePolicy(sizePolicy3);
  151. rotComboBox->setLayoutDirection(Qt::RightToLeft);
  152. horizontalLayout_2->addWidget(rotComboBox);
  153. verticalLayout->addLayout(horizontalLayout_2);
  154. horizontalLayout_3 = new QHBoxLayout();
  155. horizontalLayout_3->setSpacing(0);
  156. horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
  157. TxCheckBox = new QCheckBox(GraphicalTransformationDlg);
  158. TxCheckBox->setObjectName(QString::fromUtf8("TxCheckBox"));
  159. QSizePolicy sizePolicy4(QSizePolicy::Maximum, QSizePolicy::Fixed);
  160. sizePolicy4.setHorizontalStretch(0);
  161. sizePolicy4.setVerticalStretch(0);
  162. sizePolicy4.setHeightForWidth(TxCheckBox->sizePolicy().hasHeightForWidth());
  163. TxCheckBox->setSizePolicy(sizePolicy4);
  164. TxCheckBox->setText(QString::fromUtf8("Tx"));
  165. TxCheckBox->setChecked(true);
  166. horizontalLayout_3->addWidget(TxCheckBox);
  167. TyCheckBox = new QCheckBox(GraphicalTransformationDlg);
  168. TyCheckBox->setObjectName(QString::fromUtf8("TyCheckBox"));
  169. sizePolicy4.setHeightForWidth(TyCheckBox->sizePolicy().hasHeightForWidth());
  170. TyCheckBox->setSizePolicy(sizePolicy4);
  171. TyCheckBox->setText(QString::fromUtf8("Ty"));
  172. TyCheckBox->setChecked(true);
  173. horizontalLayout_3->addWidget(TyCheckBox);
  174. TzCheckBox = new QCheckBox(GraphicalTransformationDlg);
  175. TzCheckBox->setObjectName(QString::fromUtf8("TzCheckBox"));
  176. sizePolicy4.setHeightForWidth(TzCheckBox->sizePolicy().hasHeightForWidth());
  177. TzCheckBox->setSizePolicy(sizePolicy4);
  178. TzCheckBox->setText(QString::fromUtf8("Tz"));
  179. TzCheckBox->setChecked(true);
  180. horizontalLayout_3->addWidget(TzCheckBox);
  181. verticalLayout->addLayout(horizontalLayout_3);
  182. horizontalLayout_4 = new QHBoxLayout();
  183. horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
  184. horizontalSpacer_4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
  185. horizontalLayout_4->addItem(horizontalSpacer_4);
  186. advPushButton = new QPushButton(GraphicalTransformationDlg);
  187. advPushButton->setObjectName(QString::fromUtf8("advPushButton"));
  188. advPushButton->setCheckable(true);
  189. horizontalLayout_4->addWidget(advPushButton);
  190. verticalLayout->addLayout(horizontalLayout_4);
  191. horizontalLayout_5 = new QHBoxLayout();
  192. horizontalLayout_5->setObjectName(QString::fromUtf8("horizontalLayout_5"));
  193. translateLabel = new QLabel(GraphicalTransformationDlg);
  194. translateLabel->setObjectName(QString::fromUtf8("translateLabel"));
  195. horizontalLayout_5->addWidget(translateLabel);
  196. advTranslateComboBox = new QComboBox(GraphicalTransformationDlg);
  197. advTranslateComboBox->addItem(QString());
  198. advTranslateComboBox->setObjectName(QString::fromUtf8("advTranslateComboBox"));
  199. QSizePolicy sizePolicy5(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
  200. sizePolicy5.setHorizontalStretch(0);
  201. sizePolicy5.setVerticalStretch(0);
  202. sizePolicy5.setHeightForWidth(advTranslateComboBox->sizePolicy().hasHeightForWidth());
  203. advTranslateComboBox->setSizePolicy(sizePolicy5);
  204. horizontalLayout_5->addWidget(advTranslateComboBox);
  205. verticalLayout->addLayout(horizontalLayout_5);
  206. horizontalLayout_6 = new QHBoxLayout();
  207. horizontalLayout_6->setObjectName(QString::fromUtf8("horizontalLayout_6"));
  208. rotateLabel = new QLabel(GraphicalTransformationDlg);
  209. rotateLabel->setObjectName(QString::fromUtf8("rotateLabel"));
  210. QSizePolicy sizePolicy6(QSizePolicy::Minimum, QSizePolicy::Preferred);
  211. sizePolicy6.setHorizontalStretch(0);
  212. sizePolicy6.setVerticalStretch(0);
  213. sizePolicy6.setHeightForWidth(rotateLabel->sizePolicy().hasHeightForWidth());
  214. rotateLabel->setSizePolicy(sizePolicy6);
  215. horizontalLayout_6->addWidget(rotateLabel);
  216. advRotateComboBox = new QComboBox(GraphicalTransformationDlg);
  217. advRotateComboBox->addItem(QString());
  218. advRotateComboBox->setObjectName(QString::fromUtf8("advRotateComboBox"));
  219. sizePolicy5.setHeightForWidth(advRotateComboBox->sizePolicy().hasHeightForWidth());
  220. advRotateComboBox->setSizePolicy(sizePolicy5);
  221. horizontalLayout_6->addWidget(advRotateComboBox);
  222. verticalLayout->addLayout(horizontalLayout_6);
  223. rotAxisLabel = new QLabel(GraphicalTransformationDlg);
  224. rotAxisLabel->setObjectName(QString::fromUtf8("rotAxisLabel"));
  225. QSizePolicy sizePolicy7(QSizePolicy::Preferred, QSizePolicy::Preferred);
  226. sizePolicy7.setHorizontalStretch(0);
  227. sizePolicy7.setVerticalStretch(0);
  228. sizePolicy7.setHeightForWidth(rotAxisLabel->sizePolicy().hasHeightForWidth());
  229. rotAxisLabel->setSizePolicy(sizePolicy7);
  230. verticalLayout->addWidget(rotAxisLabel);
  231. horizontalLayout_7 = new QHBoxLayout();
  232. horizontalLayout_7->setObjectName(QString::fromUtf8("horizontalLayout_7"));
  233. objCenterRadio = new QRadioButton(GraphicalTransformationDlg);
  234. objCenterRadio->setObjectName(QString::fromUtf8("objCenterRadio"));
  235. sizePolicy7.setHeightForWidth(objCenterRadio->sizePolicy().hasHeightForWidth());
  236. objCenterRadio->setSizePolicy(sizePolicy7);
  237. horizontalLayout_7->addWidget(objCenterRadio);
  238. refAxisRadio = new QRadioButton(GraphicalTransformationDlg);
  239. refAxisRadio->setObjectName(QString::fromUtf8("refAxisRadio"));
  240. sizePolicy7.setHeightForWidth(refAxisRadio->sizePolicy().hasHeightForWidth());
  241. refAxisRadio->setSizePolicy(sizePolicy7);
  242. horizontalLayout_7->addWidget(refAxisRadio);
  243. verticalLayout->addLayout(horizontalLayout_7);
  244. IncrementalTransformLabel = new QLabel(GraphicalTransformationDlg);
  245. IncrementalTransformLabel->setObjectName(QString::fromUtf8("IncrementalTransformLabel"));
  246. verticalLayout->addWidget(IncrementalTransformLabel);
  247. horizontalLayout_8 = new QHBoxLayout();
  248. horizontalLayout_8->setObjectName(QString::fromUtf8("horizontalLayout_8"));
  249. incrementalRotLabel = new QLabel(GraphicalTransformationDlg);
  250. incrementalRotLabel->setObjectName(QString::fromUtf8("incrementalRotLabel"));
  251. incrementalRotLabel->setEnabled(false);
  252. horizontalLayout_8->addWidget(incrementalRotLabel);
  253. incrementalRotSpin = new QDoubleSpinBox(GraphicalTransformationDlg);
  254. incrementalRotSpin->setObjectName(QString::fromUtf8("incrementalRotSpin"));
  255. incrementalRotSpin->setEnabled(false);
  256. incrementalRotSpin->setReadOnly(false);
  257. incrementalRotSpin->setButtonSymbols(QAbstractSpinBox::NoButtons);
  258. incrementalRotSpin->setDecimals(6);
  259. incrementalRotSpin->setMinimum(-10000000.000000000000000);
  260. incrementalRotSpin->setMaximum(100000000.000000000000000);
  261. incrementalRotSpin->setStepType(QAbstractSpinBox::AdaptiveDecimalStepType);
  262. horizontalLayout_8->addWidget(incrementalRotSpin);
  263. verticalLayout->addLayout(horizontalLayout_8);
  264. horizontalLayout_9 = new QHBoxLayout();
  265. horizontalLayout_9->setObjectName(QString::fromUtf8("horizontalLayout_9"));
  266. incrementalTransLabel = new QLabel(GraphicalTransformationDlg);
  267. incrementalTransLabel->setObjectName(QString::fromUtf8("incrementalTransLabel"));
  268. horizontalLayout_9->addWidget(incrementalTransLabel);
  269. incrementalTransSpin = new QDoubleSpinBox(GraphicalTransformationDlg);
  270. incrementalTransSpin->setObjectName(QString::fromUtf8("incrementalTransSpin"));
  271. incrementalTransSpin->setEnabled(true);
  272. incrementalTransSpin->setReadOnly(false);
  273. incrementalTransSpin->setButtonSymbols(QAbstractSpinBox::NoButtons);
  274. incrementalTransSpin->setDecimals(6);
  275. incrementalTransSpin->setMinimum(-10000000.000000000000000);
  276. incrementalTransSpin->setMaximum(100000000.000000000000000);
  277. incrementalTransSpin->setStepType(QAbstractSpinBox::AdaptiveDecimalStepType);
  278. horizontalLayout_9->addWidget(incrementalTransSpin);
  279. verticalLayout->addLayout(horizontalLayout_9);
  280. horizontalLayout_11 = new QHBoxLayout();
  281. horizontalLayout_11->setObjectName(QString::fromUtf8("horizontalLayout_11"));
  282. horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
  283. horizontalLayout_11->addItem(horizontalSpacer_2);
  284. incrementalBackwardButton = new QPushButton(GraphicalTransformationDlg);
  285. incrementalBackwardButton->setObjectName(QString::fromUtf8("incrementalBackwardButton"));
  286. horizontalLayout_11->addWidget(incrementalBackwardButton);
  287. incrementalForwardButton = new QPushButton(GraphicalTransformationDlg);
  288. incrementalForwardButton->setObjectName(QString::fromUtf8("incrementalForwardButton"));
  289. horizontalLayout_11->addWidget(incrementalForwardButton);
  290. verticalLayout->addLayout(horizontalLayout_11);
  291. retranslateUi(GraphicalTransformationDlg);
  292. QMetaObject::connectSlotsByName(GraphicalTransformationDlg);
  293. } // setupUi
  294. void retranslateUi(QDialog *GraphicalTransformationDlg)
  295. {
  296. GraphicalTransformationDlg->setWindowTitle(QCoreApplication::translate("GraphicalTransformationDlg", "Graphical Transformation", nullptr));
  297. #if QT_CONFIG(tooltip)
  298. pauseButton->setToolTip(QCoreApplication::translate("GraphicalTransformationDlg", "Pause transformation (allow rotation/panning of 3D view)", nullptr));
  299. #endif // QT_CONFIG(tooltip)
  300. #if QT_CONFIG(statustip)
  301. pauseButton->setStatusTip(QCoreApplication::translate("GraphicalTransformationDlg", "Pause transformation (allow rotation/panning of 3D view)", nullptr));
  302. #endif // QT_CONFIG(statustip)
  303. pauseButton->setText(QCoreApplication::translate("GraphicalTransformationDlg", "pause", nullptr));
  304. label->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Rotation", nullptr));
  305. rotComboBox->setItemText(4, QCoreApplication::translate("GraphicalTransformationDlg", "None", nullptr));
  306. advPushButton->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Advanced", nullptr));
  307. translateLabel->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Translate Along:", nullptr));
  308. advTranslateComboBox->setItemText(0, QCoreApplication::translate("GraphicalTransformationDlg", "Origin", nullptr));
  309. rotateLabel->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Rotate Around:", nullptr));
  310. advRotateComboBox->setItemText(0, QCoreApplication::translate("GraphicalTransformationDlg", "Origin", nullptr));
  311. rotAxisLabel->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Rotation Axis Selection:", nullptr));
  312. objCenterRadio->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Object Center", nullptr));
  313. refAxisRadio->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Reference Axis", nullptr));
  314. IncrementalTransformLabel->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Incremental tranform:", nullptr));
  315. incrementalRotLabel->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Rotation", nullptr));
  316. incrementalTransLabel->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Translation", nullptr));
  317. #if QT_CONFIG(tooltip)
  318. incrementalBackwardButton->setToolTip(QCoreApplication::translate("GraphicalTransformationDlg", "Incremental transform: transform backward", nullptr));
  319. #endif // QT_CONFIG(tooltip)
  320. incrementalBackwardButton->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Backward", nullptr));
  321. #if QT_CONFIG(shortcut)
  322. incrementalBackwardButton->setShortcut(QCoreApplication::translate("GraphicalTransformationDlg", "Left", nullptr));
  323. #endif // QT_CONFIG(shortcut)
  324. #if QT_CONFIG(tooltip)
  325. incrementalForwardButton->setToolTip(QString());
  326. #endif // QT_CONFIG(tooltip)
  327. incrementalForwardButton->setText(QCoreApplication::translate("GraphicalTransformationDlg", "Forward", nullptr));
  328. #if QT_CONFIG(shortcut)
  329. incrementalForwardButton->setShortcut(QCoreApplication::translate("GraphicalTransformationDlg", "Right", nullptr));
  330. #endif // QT_CONFIG(shortcut)
  331. } // retranslateUi
  332. };
  333. namespace Ui {
  334. class GraphicalTransformationDlg: public Ui_GraphicalTransformationDlg {};
  335. } // namespace Ui
  336. QT_END_NAMESPACE
  337. #endif // UI_GRAPHICALTRANSFORMATIONDLG_H