9 #ifndef UI_PQSLACACTIONHOLDER_H 10 #define UI_PQSLACACTIONHOLDER_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QWidget> 37 if (pqSLACActionHolder->objectName().isEmpty())
38 pqSLACActionHolder->setObjectName(QString::fromUtf8(
"pqSLACActionHolder"));
39 pqSLACActionHolder->resize(400, 300);
40 actionDataLoadManager =
new QAction(pqSLACActionHolder);
41 actionDataLoadManager->setObjectName(QString::fromUtf8(
"actionDataLoadManager"));
43 icon.addFile(QString::fromUtf8(
":/SLACTools/Icons/DataLoadManager.png"), QSize(), QIcon::Normal, QIcon::Off);
44 actionDataLoadManager->setIcon(icon);
45 actionShowEField =
new QAction(pqSLACActionHolder);
46 actionShowEField->setObjectName(QString::fromUtf8(
"actionShowEField"));
48 icon1.addFile(QString::fromUtf8(
":/SLACTools/Icons/EField.png"), QSize(), QIcon::Normal, QIcon::Off);
49 actionShowEField->setIcon(icon1);
50 actionShowBField =
new QAction(pqSLACActionHolder);
51 actionShowBField->setObjectName(QString::fromUtf8(
"actionShowBField"));
53 icon2.addFile(QString::fromUtf8(
":/SLACTools/Icons/BField.png"), QSize(), QIcon::Normal, QIcon::Off);
54 actionShowBField->setIcon(icon2);
55 actionShowParticles =
new QAction(pqSLACActionHolder);
56 actionShowParticles->setObjectName(QString::fromUtf8(
"actionShowParticles"));
57 actionShowParticles->setCheckable(
true);
59 icon3.addFile(QString::fromUtf8(
":/SLACTools/Icons/ShowParticles.png"), QSize(), QIcon::Normal, QIcon::Off);
60 actionShowParticles->setIcon(icon3);
61 actionSolidMesh =
new QAction(pqSLACActionHolder);
62 actionSolidMesh->setObjectName(QString::fromUtf8(
"actionSolidMesh"));
64 icon4.addFile(QString::fromUtf8(
":/SLACTools/Icons/ShowSolid.png"), QSize(), QIcon::Normal, QIcon::Off);
65 actionSolidMesh->setIcon(icon4);
66 actionWireframeSolidMesh =
new QAction(pqSLACActionHolder);
67 actionWireframeSolidMesh->setObjectName(QString::fromUtf8(
"actionWireframeSolidMesh"));
69 icon5.addFile(QString::fromUtf8(
":/SLACTools/Icons/ShowWireframeSolid.png"), QSize(), QIcon::Normal, QIcon::Off);
70 actionWireframeSolidMesh->setIcon(icon5);
71 actionWireframeAndBackMesh =
new QAction(pqSLACActionHolder);
72 actionWireframeAndBackMesh->setObjectName(QString::fromUtf8(
"actionWireframeAndBackMesh"));
74 icon6.addFile(QString::fromUtf8(
":/SLACTools/Icons/ShowWireframeAndBack.png"), QSize(), QIcon::Normal, QIcon::Off);
75 actionWireframeAndBackMesh->setIcon(icon6);
76 actionPlotOverZ =
new QAction(pqSLACActionHolder);
77 actionPlotOverZ->setObjectName(QString::fromUtf8(
"actionPlotOverZ"));
79 icon7.addFile(QString::fromUtf8(
":/SLACTools/Icons/PlotOverZ.png"), QSize(), QIcon::Normal, QIcon::Off);
80 actionPlotOverZ->setIcon(icon7);
81 actionToggleBackgroundBW =
new QAction(pqSLACActionHolder);
82 actionToggleBackgroundBW->setObjectName(QString::fromUtf8(
"actionToggleBackgroundBW"));
84 icon8.addFile(QString::fromUtf8(
":/SLACTools/Icons/BackgroundBW.png"), QSize(), QIcon::Normal, QIcon::Off);
85 actionToggleBackgroundBW->setIcon(icon8);
86 actionShowStandardViewpoint =
new QAction(pqSLACActionHolder);
87 actionShowStandardViewpoint->setObjectName(QString::fromUtf8(
"actionShowStandardViewpoint"));
89 icon9.addFile(QString::fromUtf8(
":/SLACTools/Icons/XPlusSideways.png"), QSize(), QIcon::Normal, QIcon::Off);
90 actionShowStandardViewpoint->setIcon(icon9);
91 actionTemporalResetRange =
new QAction(pqSLACActionHolder);
92 actionTemporalResetRange->setObjectName(QString::fromUtf8(
"actionTemporalResetRange"));
94 icon10.addFile(QString::fromUtf8(
":/SLACTools/Icons/ResetRangeTemporal.png"), QSize(), QIcon::Normal, QIcon::Off);
95 actionTemporalResetRange->setIcon(icon10);
96 actionCurrentTimeResetRange =
new QAction(pqSLACActionHolder);
97 actionCurrentTimeResetRange->setObjectName(QString::fromUtf8(
"actionCurrentTimeResetRange"));
99 icon11.addFile(QString::fromUtf8(
":/SLACTools/Icons/ResetRangeCurrentTime.png"), QSize(), QIcon::Normal, QIcon::Off);
100 actionCurrentTimeResetRange->setIcon(icon11);
104 QMetaObject::connectSlotsByName(pqSLACActionHolder);
109 pqSLACActionHolder->setWindowTitle(QCoreApplication::translate(
"pqSLACActionHolder",
"Form",
nullptr));
110 actionDataLoadManager->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Data Load Manager",
nullptr));
111 #if QT_CONFIG(tooltip) 112 actionDataLoadManager->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Show a Dialog to Manage Loaded Data",
nullptr));
113 #endif // QT_CONFIG(tooltip) 114 actionShowEField->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"e field",
nullptr));
115 #if QT_CONFIG(tooltip) 116 actionShowEField->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Show e field",
nullptr));
117 #endif // QT_CONFIG(tooltip) 118 actionShowBField->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"b field",
nullptr));
119 #if QT_CONFIG(tooltip) 120 actionShowBField->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Show b field",
nullptr));
121 #endif // QT_CONFIG(tooltip) 122 actionShowParticles->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Show Particles",
nullptr));
123 #if QT_CONFIG(tooltip) 124 actionShowParticles->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Toggle Show Particles",
nullptr));
125 #endif // QT_CONFIG(tooltip) 126 actionSolidMesh->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Solid Mesh",
nullptr));
127 #if QT_CONFIG(tooltip) 128 actionSolidMesh->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Show Mesh as Solid Surface",
nullptr));
129 #endif // QT_CONFIG(tooltip) 130 actionWireframeSolidMesh->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Wireframe Solid Mesh",
nullptr));
131 #if QT_CONFIG(tooltip) 132 actionWireframeSolidMesh->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Show Mesh as Solid with Wireframe",
nullptr));
133 #endif // QT_CONFIG(tooltip) 134 actionWireframeAndBackMesh->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Wireframe Front and Solid Back",
nullptr));
135 #if QT_CONFIG(tooltip) 136 actionWireframeAndBackMesh->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Show Wireframe Front and Solid Back",
nullptr));
137 #endif // QT_CONFIG(tooltip) 138 actionPlotOverZ->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Plot Over Z Axis",
nullptr));
139 #if QT_CONFIG(tooltip) 140 actionPlotOverZ->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Make a Plot of a Field Along the Z Axis",
nullptr));
141 #endif // QT_CONFIG(tooltip) 142 actionToggleBackgroundBW->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Toggle Background B/W",
nullptr));
143 #if QT_CONFIG(tooltip) 144 actionToggleBackgroundBW->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Toggle the Background Between Black and White",
nullptr));
145 #endif // QT_CONFIG(tooltip) 146 actionShowStandardViewpoint->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Show Standard Viewpoint",
nullptr));
147 #if QT_CONFIG(tooltip) 148 actionShowStandardViewpoint->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Position the camera in a position convenient to see the entire mesh.",
nullptr));
149 #endif // QT_CONFIG(tooltip) 150 actionTemporalResetRange->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Temporal Reset Range",
nullptr));
151 #if QT_CONFIG(tooltip) 152 actionTemporalResetRange->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Reads in all the data over all time and uses the information to fix the scaling of the fields to a range that makes sense for all time steps.",
nullptr));
153 #endif // QT_CONFIG(tooltip) 154 actionCurrentTimeResetRange->setText(QCoreApplication::translate(
"pqSLACActionHolder",
"Reset Range in Current Time",
nullptr));
155 #if QT_CONFIG(tooltip) 156 actionCurrentTimeResetRange->setToolTip(QCoreApplication::translate(
"pqSLACActionHolder",
"Looks exclusively at the range of the field at the current time step and fixes the range to the minimum and maximum of that range.",
nullptr));
157 #endif // QT_CONFIG(tooltip) 168 #endif // UI_PQSLACACTIONHOLDER_H QAction * actionTemporalResetRange
QAction * actionShowEField
QAction * actionPlotOverZ
QAction * actionDataLoadManager
QAction * actionShowStandardViewpoint
QAction * actionShowParticles
QAction * actionToggleBackgroundBW
QAction * actionShowBField
QAction * actionCurrentTimeResetRange
QAction * actionWireframeSolidMesh
void retranslateUi(QWidget *pqSLACActionHolder)
void setupUi(QWidget *pqSLACActionHolder)
QAction * actionSolidMesh
QAction * actionWireframeAndBackMesh