molde 0.1.12__py3-none-any.whl → 0.1.14__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. molde/__init__.py +12 -12
  2. molde/__main__.py +81 -81
  3. molde/actors/__init__.py +5 -5
  4. molde/actors/common_symbols_actor.py +148 -148
  5. molde/actors/ghost_actor.py +12 -12
  6. molde/actors/lines_actor.py +31 -31
  7. molde/actors/round_points_actor.py +7 -7
  8. molde/actors/square_points_actor.py +32 -32
  9. molde/colors/__init__.py +1 -1
  10. molde/colors/color.py +273 -150
  11. molde/colors/color_names.py +124 -124
  12. molde/interactor_styles/__init__.py +2 -2
  13. molde/interactor_styles/arcball_camera_style.py +288 -288
  14. molde/interactor_styles/box_selection_style.py +87 -87
  15. molde/main_window.ui +864 -864
  16. molde/pickers/__init__.py +2 -2
  17. molde/pickers/cell_area_picker.py +61 -61
  18. molde/pickers/cell_property_area_picker.py +84 -84
  19. molde/poly_data/__init__.py +13 -13
  20. molde/poly_data/lines_data.py +23 -23
  21. molde/poly_data/vertices_data.py +24 -24
  22. molde/render_widgets/__init__.py +2 -2
  23. molde/render_widgets/animated_render_widget.py +164 -164
  24. molde/render_widgets/common_render_widget.py +429 -429
  25. molde/stylesheets/__init__.py +122 -122
  26. molde/stylesheets/common.qss +15 -15
  27. molde/stylesheets/create_color_page.py +61 -61
  28. molde/stylesheets/mainwindow.ui +646 -646
  29. molde/stylesheets/qcheckbox.qss +23 -23
  30. molde/stylesheets/qinputs.qss +81 -81
  31. molde/stylesheets/qlayouts.qss +23 -23
  32. molde/stylesheets/qmenubar.qss +12 -12
  33. molde/stylesheets/qprogressbar.qss +11 -11
  34. molde/stylesheets/qpushbutton.qss +89 -89
  35. molde/stylesheets/qradiobutton.qss +30 -30
  36. molde/stylesheets/qscrollbar.qss +29 -29
  37. molde/stylesheets/qslider.qss +61 -61
  38. molde/stylesheets/qtablewidget.qss +27 -27
  39. molde/stylesheets/qtabwidget.qss +28 -28
  40. molde/stylesheets/qtoolbar.qss +63 -63
  41. molde/stylesheets/qtoolbuttons.qss +14 -14
  42. molde/stylesheets/qtreewidget.qss +25 -25
  43. molde/ui_files/messages/new_loading_window.ui +73 -73
  44. molde/utils/__init__.py +8 -8
  45. molde/utils/format_sequences.py +44 -44
  46. molde/utils/poly_data_utils.py +66 -66
  47. molde/utils/tree_info.py +52 -52
  48. molde/windows/loading_window.py +189 -189
  49. {molde-0.1.12.dist-info → molde-0.1.14.dist-info}/METADATA +1 -1
  50. molde-0.1.14.dist-info/RECORD +68 -0
  51. {molde-0.1.12.dist-info → molde-0.1.14.dist-info}/WHEEL +1 -1
  52. molde-0.1.12.dist-info/RECORD +0 -68
molde/main_window.ui CHANGED
@@ -1,864 +1,864 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <ui version="4.0">
3
- <class>MainWindow</class>
4
- <widget class="QMainWindow" name="MainWindow">
5
- <property name="geometry">
6
- <rect>
7
- <x>0</x>
8
- <y>0</y>
9
- <width>1044</width>
10
- <height>674</height>
11
- </rect>
12
- </property>
13
- <property name="windowTitle">
14
- <string>OpenPulse</string>
15
- </property>
16
- <property name="windowIcon">
17
- <iconset>
18
- <normaloff>../data/icons/pulse_icon.png</normaloff>../data/icons/pulse_icon.png</iconset>
19
- </property>
20
- <widget class="QWidget" name="centralwidget">
21
- <property name="styleSheet">
22
- <string notr="true"/>
23
- </property>
24
- <layout class="QVBoxLayout" name="verticalLayout">
25
- <item>
26
- <widget class="QSplitter" name="splitter">
27
- <property name="lineWidth">
28
- <number>1</number>
29
- </property>
30
- <property name="orientation">
31
- <enum>Qt::Horizontal</enum>
32
- </property>
33
- <property name="opaqueResize">
34
- <bool>true</bool>
35
- </property>
36
- <property name="handleWidth">
37
- <number>3</number>
38
- </property>
39
- <widget class="QStackedWidget" name="setup_widgets_stack">
40
- <property name="sizePolicy">
41
- <sizepolicy hsizetype="Ignored" vsizetype="Ignored">
42
- <horstretch>0</horstretch>
43
- <verstretch>0</verstretch>
44
- </sizepolicy>
45
- </property>
46
- <property name="contextMenuPolicy">
47
- <enum>Qt::DefaultContextMenu</enum>
48
- </property>
49
- <property name="styleSheet">
50
- <string notr="true"/>
51
- </property>
52
- <property name="currentIndex">
53
- <number>0</number>
54
- </property>
55
- <widget class="QWidget" name="page">
56
- <property name="autoFillBackground">
57
- <bool>false</bool>
58
- </property>
59
- <property name="styleSheet">
60
- <string notr="true">background: red;</string>
61
- </property>
62
- </widget>
63
- <widget class="QWidget" name="page_2">
64
- <property name="styleSheet">
65
- <string notr="true">background: blue;</string>
66
- </property>
67
- </widget>
68
- </widget>
69
- <widget class="QStackedWidget" name="render_widgets_stack">
70
- <property name="sizePolicy">
71
- <sizepolicy hsizetype="Ignored" vsizetype="Ignored">
72
- <horstretch>0</horstretch>
73
- <verstretch>0</verstretch>
74
- </sizepolicy>
75
- </property>
76
- <property name="currentIndex">
77
- <number>0</number>
78
- </property>
79
- <widget class="QWidget" name="page_3">
80
- <property name="styleSheet">
81
- <string notr="true">background: red;</string>
82
- </property>
83
- </widget>
84
- <widget class="QWidget" name="page_4">
85
- <property name="styleSheet">
86
- <string notr="true">background: black;</string>
87
- </property>
88
- </widget>
89
- </widget>
90
- </widget>
91
- </item>
92
- </layout>
93
- </widget>
94
- <widget class="QMenuBar" name="menubar">
95
- <property name="geometry">
96
- <rect>
97
- <x>0</x>
98
- <y>0</y>
99
- <width>1044</width>
100
- <height>21</height>
101
- </rect>
102
- </property>
103
- <widget class="QMenu" name="menu_project">
104
- <property name="title">
105
- <string>Project</string>
106
- </property>
107
- <widget class="QMenu" name="menu_recent">
108
- <property name="title">
109
- <string>Recent Projects</string>
110
- </property>
111
- <property name="icon">
112
- <iconset>
113
- <normaloff>../data/icons/common/recent.png</normaloff>../data/icons/common/recent.png</iconset>
114
- </property>
115
- <addaction name="actionfiles"/>
116
- </widget>
117
- <addaction name="action_new_project"/>
118
- <addaction name="action_open_project"/>
119
- <addaction name="menu_recent"/>
120
- <addaction name="action_save_project"/>
121
- <addaction name="action_save_project_as"/>
122
- <addaction name="action_reset"/>
123
- <addaction name="separator"/>
124
- <addaction name="action_import_geometry"/>
125
- <addaction name="action_export_geometry"/>
126
- <addaction name="action_import_pcf"/>
127
- <addaction name="action_export_pcf"/>
128
- <addaction name="separator"/>
129
- <addaction name="action_exit"/>
130
- <addaction name="separator"/>
131
- </widget>
132
- <widget class="QMenu" name="menu_plots">
133
- <property name="title">
134
- <string>Plots</string>
135
- </property>
136
- <addaction name="action_plot_geometry_editor"/>
137
- <addaction name="action_plot_lines"/>
138
- <addaction name="action_plot_lines_with_cross_section"/>
139
- <addaction name="action_plot_mesh"/>
140
- <addaction name="action_plot_cross_section"/>
141
- <addaction name="action_plot_material"/>
142
- <addaction name="action_plot_fluid"/>
143
- <addaction name="action_plot_default_color"/>
144
- </widget>
145
- <widget class="QMenu" name="menu_model_info">
146
- <property name="title">
147
- <string>Model Info</string>
148
- </property>
149
- <addaction name="action_structural_model_info"/>
150
- <addaction name="action_acoustic_model_info"/>
151
- </widget>
152
- <widget class="QMenu" name="menu_help">
153
- <property name="title">
154
- <string>Help</string>
155
- </property>
156
- <addaction name="action_about_openpulse"/>
157
- <addaction name="action_check_refprop"/>
158
- </widget>
159
- <widget class="QMenu" name="menu_general_settings">
160
- <property name="title">
161
- <string>Settings</string>
162
- </property>
163
- <addaction name="action_set_dark_theme"/>
164
- <addaction name="action_set_light_theme"/>
165
- <addaction name="action_user_preferences"/>
166
- </widget>
167
- <widget class="QMenu" name="menuTools">
168
- <property name="title">
169
- <string>Tools</string>
170
- </property>
171
- <addaction name="action_check_beam_criteria"/>
172
- <addaction name="action_pulsation_suppression_device_editor"/>
173
- <addaction name="action_pulsation_damper_editor"/>
174
- </widget>
175
- <addaction name="menu_project"/>
176
- <addaction name="menu_general_settings"/>
177
- <addaction name="menu_plots"/>
178
- <addaction name="menu_model_info"/>
179
- <addaction name="menuTools"/>
180
- <addaction name="menu_help"/>
181
- </widget>
182
- <widget class="QStatusBar" name="statusbar"/>
183
- <widget class="QToolBar" name="tool_bar">
184
- <property name="windowTitle">
185
- <string>Main toolbar</string>
186
- </property>
187
- <attribute name="toolBarArea">
188
- <enum>TopToolBarArea</enum>
189
- </attribute>
190
- <attribute name="toolBarBreak">
191
- <bool>false</bool>
192
- </attribute>
193
- <addaction name="action_new_project"/>
194
- <addaction name="action_open_project"/>
195
- <addaction name="action_reset"/>
196
- <addaction name="separator"/>
197
- <addaction name="action_top_view"/>
198
- <addaction name="action_bottom_view"/>
199
- <addaction name="action_left_view"/>
200
- <addaction name="action_right_view"/>
201
- <addaction name="action_front_view"/>
202
- <addaction name="action_back_view"/>
203
- <addaction name="action_isometric_view"/>
204
- <addaction name="action_zoom"/>
205
- <addaction name="separator"/>
206
- <addaction name="action_show_mesh_data"/>
207
- <addaction name="action_show_geometry_data"/>
208
- <addaction name="action_show_lines"/>
209
- <addaction name="action_show_tubes"/>
210
- <addaction name="action_show_symbols"/>
211
- <addaction name="separator"/>
212
- <addaction name="action_section_plane"/>
213
- <addaction name="action_show_transparent"/>
214
- <addaction name="separator"/>
215
- <addaction name="action_geometry_editor_workspace"/>
216
- <addaction name="action_model_setup_workspace"/>
217
- <addaction name="action_results_workspace"/>
218
- </widget>
219
- <action name="action_new_project">
220
- <property name="icon">
221
- <iconset>
222
- <normaloff>../icons/common/new_file.png</normaloff>../icons/common/new_file.png</iconset>
223
- </property>
224
- <property name="text">
225
- <string>New Project</string>
226
- </property>
227
- <property name="shortcut">
228
- <string>Ctrl+N</string>
229
- </property>
230
- </action>
231
- <action name="action_open_project">
232
- <property name="icon">
233
- <iconset>
234
- <normaloff>../icons/common/import.png</normaloff>../icons/common/import.png</iconset>
235
- </property>
236
- <property name="text">
237
- <string>Open Project</string>
238
- </property>
239
- <property name="toolTip">
240
- <string>Open Project</string>
241
- </property>
242
- <property name="shortcut">
243
- <string>Ctrl+O</string>
244
- </property>
245
- </action>
246
- <action name="action_export_png">
247
- <property name="icon">
248
- <iconset>
249
- <normaloff>../data/icons/save_image.png</normaloff>../data/icons/save_image.png</iconset>
250
- </property>
251
- <property name="text">
252
- <string>Export PNG</string>
253
- </property>
254
- </action>
255
- <action name="action_reset">
256
- <property name="icon">
257
- <iconset>
258
- <normaloff>../icons/common/reset-image.png</normaloff>../icons/common/reset-image.png</iconset>
259
- </property>
260
- <property name="text">
261
- <string>Reset Project</string>
262
- </property>
263
- <property name="shortcut">
264
- <string>Ctrl+Shift+R</string>
265
- </property>
266
- </action>
267
- <action name="action_save_project">
268
- <property name="enabled">
269
- <bool>true</bool>
270
- </property>
271
- <property name="icon">
272
- <iconset>
273
- <normaloff>../data/icons/common/save.png</normaloff>../data/icons/common/save.png</iconset>
274
- </property>
275
- <property name="text">
276
- <string>Save Project</string>
277
- </property>
278
- <property name="shortcut">
279
- <string>Ctrl+S</string>
280
- </property>
281
- </action>
282
- <action name="action_save_project_as">
283
- <property name="enabled">
284
- <bool>true</bool>
285
- </property>
286
- <property name="icon">
287
- <iconset>
288
- <normaloff>../icons/common/save_as.png</normaloff>../icons/common/save_as.png</iconset>
289
- </property>
290
- <property name="text">
291
- <string>Save Project As</string>
292
- </property>
293
- <property name="shortcut">
294
- <string>Ctrl+Shift+S</string>
295
- </property>
296
- </action>
297
- <action name="action_import_geometry">
298
- <property name="enabled">
299
- <bool>true</bool>
300
- </property>
301
- <property name="icon">
302
- <iconset>
303
- <normaloff>../icons/common/geometry_icon.png</normaloff>../icons/common/geometry_icon.png</iconset>
304
- </property>
305
- <property name="text">
306
- <string>Import Geometry</string>
307
- </property>
308
- </action>
309
- <action name="action_import_pcf">
310
- <property name="enabled">
311
- <bool>true</bool>
312
- </property>
313
- <property name="text">
314
- <string>Import PCF</string>
315
- </property>
316
- <property name="toolTip">
317
- <string>Import Piping</string>
318
- </property>
319
- </action>
320
- <action name="action_top_view">
321
- <property name="icon">
322
- <iconset>
323
- <normaloff>../icons/common/top.png</normaloff>../icons/common/top.png</iconset>
324
- </property>
325
- <property name="text">
326
- <string>Top View</string>
327
- </property>
328
- <property name="shortcut">
329
- <string>Ctrl+Shift+1</string>
330
- </property>
331
- </action>
332
- <action name="action_bottom_view">
333
- <property name="icon">
334
- <iconset>
335
- <normaloff>../icons/common/bottom.png</normaloff>../icons/common/bottom.png</iconset>
336
- </property>
337
- <property name="text">
338
- <string>Bottom View</string>
339
- </property>
340
- <property name="shortcut">
341
- <string>Ctrl+Shift+2</string>
342
- </property>
343
- </action>
344
- <action name="action_front_view">
345
- <property name="icon">
346
- <iconset>
347
- <normaloff>../icons/common/front.png</normaloff>../icons/common/front.png</iconset>
348
- </property>
349
- <property name="text">
350
- <string>Front View</string>
351
- </property>
352
- <property name="shortcut">
353
- <string>Ctrl+Shift+3</string>
354
- </property>
355
- </action>
356
- <action name="action_back_view">
357
- <property name="icon">
358
- <iconset>
359
- <normaloff>../icons/common/back.png</normaloff>../icons/common/back.png</iconset>
360
- </property>
361
- <property name="text">
362
- <string>Back View</string>
363
- </property>
364
- <property name="shortcut">
365
- <string>Ctrl+Shift+4</string>
366
- </property>
367
- </action>
368
- <action name="action_left_view">
369
- <property name="icon">
370
- <iconset>
371
- <normaloff>../icons/common/left.png</normaloff>../icons/common/left.png</iconset>
372
- </property>
373
- <property name="text">
374
- <string>Left View</string>
375
- </property>
376
- <property name="shortcut">
377
- <string>Ctrl+Shift+5</string>
378
- </property>
379
- </action>
380
- <action name="action_right_view">
381
- <property name="icon">
382
- <iconset>
383
- <normaloff>../icons/common/right.png</normaloff>../icons/common/right.png</iconset>
384
- </property>
385
- <property name="text">
386
- <string>Right View</string>
387
- </property>
388
- <property name="shortcut">
389
- <string>Ctrl+Shift+6</string>
390
- </property>
391
- </action>
392
- <action name="action_isometric_view">
393
- <property name="icon">
394
- <iconset>
395
- <normaloff>../icons/common/isometric.png</normaloff>../icons/common/isometric.png</iconset>
396
- </property>
397
- <property name="text">
398
- <string>Isometric View</string>
399
- </property>
400
- <property name="shortcut">
401
- <string>Ctrl+Shift+7</string>
402
- </property>
403
- </action>
404
- <action name="actionfiles">
405
- <property name="enabled">
406
- <bool>false</bool>
407
- </property>
408
- <property name="text">
409
- <string>...</string>
410
- </property>
411
- </action>
412
- <action name="action_exit">
413
- <property name="icon">
414
- <iconset>
415
- <normaloff>../icons/common/exit.png</normaloff>../icons/common/exit.png</iconset>
416
- </property>
417
- <property name="text">
418
- <string>Exit</string>
419
- </property>
420
- <property name="shortcut">
421
- <string>Ctrl+Shift+Q</string>
422
- </property>
423
- </action>
424
- <action name="action_plot_raw_lines">
425
- <property name="text">
426
- <string>Plot Raw Lines</string>
427
- </property>
428
- </action>
429
- <action name="action_plot_lines">
430
- <property name="text">
431
- <string>Plot Lines</string>
432
- </property>
433
- <property name="shortcut">
434
- <string>Ctrl+2</string>
435
- </property>
436
- </action>
437
- <action name="action_plot_mesh">
438
- <property name="text">
439
- <string>Plot Mesh</string>
440
- </property>
441
- <property name="shortcut">
442
- <string>Ctrl+4</string>
443
- </property>
444
- </action>
445
- <action name="action_plot_lines_with_cross_section">
446
- <property name="text">
447
- <string>Plot Lines with Cross-section</string>
448
- </property>
449
- <property name="shortcut">
450
- <string>Ctrl+3</string>
451
- </property>
452
- </action>
453
- <action name="action_plot_cross_section">
454
- <property name="enabled">
455
- <bool>true</bool>
456
- </property>
457
- <property name="text">
458
- <string>Plot Cross-section</string>
459
- </property>
460
- </action>
461
- <action name="action_plot_material">
462
- <property name="enabled">
463
- <bool>true</bool>
464
- </property>
465
- <property name="text">
466
- <string>Plot Material</string>
467
- </property>
468
- </action>
469
- <action name="action_plot_fluid">
470
- <property name="enabled">
471
- <bool>true</bool>
472
- </property>
473
- <property name="text">
474
- <string>Plot Fluid</string>
475
- </property>
476
- </action>
477
- <action name="action_user_preferences">
478
- <property name="icon">
479
- <iconset>
480
- <normaloff>../icons/common/user_preferences_icon.png</normaloff>../icons/common/user_preferences_icon.png</iconset>
481
- </property>
482
- <property name="text">
483
- <string>User Preferences</string>
484
- </property>
485
- </action>
486
- <action name="action_plot_geometry_editor">
487
- <property name="text">
488
- <string>Plot Geometry Editor</string>
489
- </property>
490
- <property name="shortcut">
491
- <string>Ctrl+1</string>
492
- </property>
493
- </action>
494
- <action name="action_create_edit_geometry">
495
- <property name="text">
496
- <string>Create/Edit Geometry</string>
497
- </property>
498
- </action>
499
- <action name="action_edit_geometry">
500
- <property name="text">
501
- <string>Edit Geometry (GMSH GUI)</string>
502
- </property>
503
- </action>
504
- <action name="action_set_project_attributes">
505
- <property name="text">
506
- <string>Set Project Attributes</string>
507
- </property>
508
- </action>
509
- <action name="action_set_geometry_file">
510
- <property name="text">
511
- <string>Set Geometry File</string>
512
- </property>
513
- </action>
514
- <action name="action_structural_model_info">
515
- <property name="text">
516
- <string>Structural Model Info</string>
517
- </property>
518
- </action>
519
- <action name="action_acoustic_model_info">
520
- <property name="text">
521
- <string>Acoustic Model Info</string>
522
- </property>
523
- </action>
524
- <action name="action_check_beam_criteria">
525
- <property name="text">
526
- <string>Beam theory validity checker</string>
527
- </property>
528
- </action>
529
- <action name="action_select_analysis_type">
530
- <property name="text">
531
- <string>Select Analysis Type</string>
532
- </property>
533
- </action>
534
- <action name="action_analysis_setup">
535
- <property name="text">
536
- <string>Analysis Setup</string>
537
- </property>
538
- </action>
539
- <action name="action_run_analysis">
540
- <property name="text">
541
- <string>Run Analisys</string>
542
- </property>
543
- </action>
544
- <action name="action_plot_structural_mode_shapes">
545
- <property name="text">
546
- <string>Plot Structural Mode Shapes</string>
547
- </property>
548
- </action>
549
- <action name="action_plot_displacement_field">
550
- <property name="text">
551
- <string>Plot Displacement Field</string>
552
- </property>
553
- </action>
554
- <action name="action_plot_structural_frequency_response">
555
- <property name="text">
556
- <string>Plot Structural Frequency Response</string>
557
- </property>
558
- </action>
559
- <action name="action_plot_reactions_frequency_response">
560
- <property name="text">
561
- <string>Plot Reactions Frequency Response</string>
562
- </property>
563
- </action>
564
- <action name="action_plot_stress_field">
565
- <property name="text">
566
- <string>Plot Stress Field</string>
567
- </property>
568
- </action>
569
- <action name="action_plot_stress_frequency_response">
570
- <property name="text">
571
- <string>Plot Stress Frequency Response</string>
572
- </property>
573
- </action>
574
- <action name="action_plot_acoustic_pressure_field">
575
- <property name="text">
576
- <string>Plot Acoustic Pressure Field</string>
577
- </property>
578
- </action>
579
- <action name="action_plot_acoustic_frequency_response">
580
- <property name="text">
581
- <string>Plot Acoustic Frequency Response</string>
582
- </property>
583
- </action>
584
- <action name="action_plot_acoustic_frequency_response_function">
585
- <property name="text">
586
- <string>Plot Acoustic Frequency Response Function</string>
587
- </property>
588
- </action>
589
- <action name="acoustic_plot_acoustic_delta_pressures">
590
- <property name="text">
591
- <string>Plot Acoustic Delta Pressures</string>
592
- </property>
593
- </action>
594
- <action name="action_plot_transmission_loss_or_attenuation">
595
- <property name="text">
596
- <string>Plot Ransmission Loss or Attenuation</string>
597
- </property>
598
- </action>
599
- <action name="action_play_pause_animation">
600
- <property name="text">
601
- <string>Play/Pause Animation</string>
602
- </property>
603
- </action>
604
- <action name="action_animation_settings">
605
- <property name="text">
606
- <string>Animation Settings</string>
607
- </property>
608
- </action>
609
- <action name="action_help">
610
- <property name="text">
611
- <string>Help</string>
612
- </property>
613
- <property name="shortcut">
614
- <string>F1</string>
615
- </property>
616
- </action>
617
- <action name="action_about_openpulse">
618
- <property name="text">
619
- <string>About OpenPulse</string>
620
- </property>
621
- </action>
622
- <action name="action_show_mesh_data">
623
- <property name="checkable">
624
- <bool>true</bool>
625
- </property>
626
- <property name="checked">
627
- <bool>false</bool>
628
- </property>
629
- <property name="icon">
630
- <iconset>
631
- <normaloff>../icons/common/show_mesh_points.png</normaloff>../icons/common/show_mesh_points.png</iconset>
632
- </property>
633
- <property name="text">
634
- <string>Show Mesh Data</string>
635
- </property>
636
- <property name="toolTip">
637
- <string>Show Mesh Data</string>
638
- </property>
639
- </action>
640
- <action name="action_show_lines">
641
- <property name="checkable">
642
- <bool>true</bool>
643
- </property>
644
- <property name="checked">
645
- <bool>true</bool>
646
- </property>
647
- <property name="icon">
648
- <iconset>
649
- <normaloff>../icons/common/show_lines.png</normaloff>../icons/common/show_lines.png</iconset>
650
- </property>
651
- <property name="text">
652
- <string>Show Lines</string>
653
- </property>
654
- </action>
655
- <action name="action_show_tubes">
656
- <property name="checkable">
657
- <bool>true</bool>
658
- </property>
659
- <property name="checked">
660
- <bool>true</bool>
661
- </property>
662
- <property name="icon">
663
- <iconset>
664
- <normaloff>../icons/common/show_tubes.png</normaloff>../icons/common/show_tubes.png</iconset>
665
- </property>
666
- <property name="text">
667
- <string>Show Tubes</string>
668
- </property>
669
- </action>
670
- <action name="action_show_symbols">
671
- <property name="checkable">
672
- <bool>true</bool>
673
- </property>
674
- <property name="checked">
675
- <bool>true</bool>
676
- </property>
677
- <property name="icon">
678
- <iconset>
679
- <normaloff>../icons/common/show_symbols.png</normaloff>../icons/common/show_symbols.png</iconset>
680
- </property>
681
- <property name="text">
682
- <string>Show Symbols</string>
683
- </property>
684
- </action>
685
- <action name="action_hide_selection">
686
- <property name="text">
687
- <string>Hide Selection</string>
688
- </property>
689
- </action>
690
- <action name="action_unhide_all">
691
- <property name="text">
692
- <string>Unhide All</string>
693
- </property>
694
- </action>
695
- <action name="action_export_geometry">
696
- <property name="icon">
697
- <iconset>
698
- <normaloff>../data/icons/send_to_disk.png</normaloff>../data/icons/send_to_disk.png</iconset>
699
- </property>
700
- <property name="text">
701
- <string>Export Geometry</string>
702
- </property>
703
- <property name="toolTip">
704
- <string>Export Geometry</string>
705
- </property>
706
- </action>
707
- <action name="action_set_dark_theme">
708
- <property name="icon">
709
- <iconset>
710
- <normaloff>../icons/common/moon_icon.png</normaloff>../icons/common/moon_icon.png</iconset>
711
- </property>
712
- <property name="text">
713
- <string>Use dark theme</string>
714
- </property>
715
- </action>
716
- <action name="action_set_light_theme">
717
- <property name="icon">
718
- <iconset>
719
- <normaloff>../icons/common/sun_icon.png</normaloff>../icons/common/sun_icon.png</iconset>
720
- </property>
721
- <property name="text">
722
- <string>Use light theme</string>
723
- </property>
724
- </action>
725
- <action name="action_remove_themes">
726
- <property name="text">
727
- <string>Remove themes</string>
728
- </property>
729
- </action>
730
- <action name="action_show_transparent">
731
- <property name="checkable">
732
- <bool>true</bool>
733
- </property>
734
- <property name="checked">
735
- <bool>false</bool>
736
- </property>
737
- <property name="icon">
738
- <iconset>
739
- <normaloff>../icons/common/mesh.png</normaloff>../icons/common/mesh.png</iconset>
740
- </property>
741
- <property name="text">
742
- <string>Show Transparent</string>
743
- </property>
744
- </action>
745
- <action name="action_select_elements">
746
- <property name="checkable">
747
- <bool>true</bool>
748
- </property>
749
- <property name="text">
750
- <string>Selection to Elements</string>
751
- </property>
752
- <property name="toolTip">
753
- <string>Selection to Elements</string>
754
- </property>
755
- </action>
756
- <action name="action_export_pcf">
757
- <property name="text">
758
- <string>Export PCF</string>
759
- </property>
760
- </action>
761
- <action name="action_geometry_editor_help">
762
- <property name="text">
763
- <string>Geometry Editor Help</string>
764
- </property>
765
- </action>
766
- <action name="action_section_plane">
767
- <property name="checkable">
768
- <bool>true</bool>
769
- </property>
770
- <property name="icon">
771
- <iconset>
772
- <normaloff>../icons/common/section_plane_icon.png</normaloff>../icons/common/section_plane_icon.png</iconset>
773
- </property>
774
- <property name="text">
775
- <string>Section Plane</string>
776
- </property>
777
- </action>
778
- <action name="action_zoom">
779
- <property name="icon">
780
- <iconset>
781
- <normaloff>../icons/common/zoom_icon.png</normaloff>../icons/common/zoom_icon.png</iconset>
782
- </property>
783
- <property name="text">
784
- <string>Zoom</string>
785
- </property>
786
- <property name="toolTip">
787
- <string>Zoom To Fit</string>
788
- </property>
789
- </action>
790
- <action name="action_pulsation_suppression_device_editor">
791
- <property name="text">
792
- <string>Pulsation suppression device editor</string>
793
- </property>
794
- </action>
795
- <action name="action_show_geometry_data">
796
- <property name="checkable">
797
- <bool>true</bool>
798
- </property>
799
- <property name="icon">
800
- <iconset>
801
- <normaloff>../icons/common/show_geometry_points.png</normaloff>../icons/common/show_geometry_points.png</iconset>
802
- </property>
803
- <property name="text">
804
- <string>Show Geometry Data</string>
805
- </property>
806
- <property name="toolTip">
807
- <string>Show Geometry Data</string>
808
- </property>
809
- </action>
810
- <action name="action_plot_default_color">
811
- <property name="text">
812
- <string>Plot Default Color</string>
813
- </property>
814
- </action>
815
- <action name="action_geometry_editor_workspace">
816
- <property name="icon">
817
- <iconset>
818
- <normaloff>../icons/common/model_settings.png</normaloff>../icons/common/model_settings.png</iconset>
819
- </property>
820
- <property name="text">
821
- <string>Geometry Editor Workspace Action</string>
822
- </property>
823
- <property name="toolTip">
824
- <string>Geometry editor workspace</string>
825
- </property>
826
- </action>
827
- <action name="action_model_setup_workspace">
828
- <property name="icon">
829
- <iconset>
830
- <normaloff>../icons/common/engineering.png</normaloff>../icons/common/engineering.png</iconset>
831
- </property>
832
- <property name="text">
833
- <string>Geometry Model Setup Workspace Action</string>
834
- </property>
835
- <property name="toolTip">
836
- <string>Model setup workspace</string>
837
- </property>
838
- </action>
839
- <action name="action_results_workspace">
840
- <property name="icon">
841
- <iconset>
842
- <normaloff>../icons/common/calculate.png</normaloff>../icons/common/calculate.png</iconset>
843
- </property>
844
- <property name="text">
845
- <string>Results Workspace Action</string>
846
- </property>
847
- <property name="toolTip">
848
- <string>Results workspace</string>
849
- </property>
850
- </action>
851
- <action name="action_check_refprop">
852
- <property name="text">
853
- <string>Check REFPROP</string>
854
- </property>
855
- </action>
856
- <action name="action_pulsation_damper_editor">
857
- <property name="text">
858
- <string>Pulsation damper editor</string>
859
- </property>
860
- </action>
861
- </widget>
862
- <resources/>
863
- <connections/>
864
- </ui>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>MainWindow</class>
4
+ <widget class="QMainWindow" name="MainWindow">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>1044</width>
10
+ <height>674</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>OpenPulse</string>
15
+ </property>
16
+ <property name="windowIcon">
17
+ <iconset>
18
+ <normaloff>../data/icons/pulse_icon.png</normaloff>../data/icons/pulse_icon.png</iconset>
19
+ </property>
20
+ <widget class="QWidget" name="centralwidget">
21
+ <property name="styleSheet">
22
+ <string notr="true"/>
23
+ </property>
24
+ <layout class="QVBoxLayout" name="verticalLayout">
25
+ <item>
26
+ <widget class="QSplitter" name="splitter">
27
+ <property name="lineWidth">
28
+ <number>1</number>
29
+ </property>
30
+ <property name="orientation">
31
+ <enum>Qt::Horizontal</enum>
32
+ </property>
33
+ <property name="opaqueResize">
34
+ <bool>true</bool>
35
+ </property>
36
+ <property name="handleWidth">
37
+ <number>3</number>
38
+ </property>
39
+ <widget class="QStackedWidget" name="setup_widgets_stack">
40
+ <property name="sizePolicy">
41
+ <sizepolicy hsizetype="Ignored" vsizetype="Ignored">
42
+ <horstretch>0</horstretch>
43
+ <verstretch>0</verstretch>
44
+ </sizepolicy>
45
+ </property>
46
+ <property name="contextMenuPolicy">
47
+ <enum>Qt::DefaultContextMenu</enum>
48
+ </property>
49
+ <property name="styleSheet">
50
+ <string notr="true"/>
51
+ </property>
52
+ <property name="currentIndex">
53
+ <number>0</number>
54
+ </property>
55
+ <widget class="QWidget" name="page">
56
+ <property name="autoFillBackground">
57
+ <bool>false</bool>
58
+ </property>
59
+ <property name="styleSheet">
60
+ <string notr="true">background: red;</string>
61
+ </property>
62
+ </widget>
63
+ <widget class="QWidget" name="page_2">
64
+ <property name="styleSheet">
65
+ <string notr="true">background: blue;</string>
66
+ </property>
67
+ </widget>
68
+ </widget>
69
+ <widget class="QStackedWidget" name="render_widgets_stack">
70
+ <property name="sizePolicy">
71
+ <sizepolicy hsizetype="Ignored" vsizetype="Ignored">
72
+ <horstretch>0</horstretch>
73
+ <verstretch>0</verstretch>
74
+ </sizepolicy>
75
+ </property>
76
+ <property name="currentIndex">
77
+ <number>0</number>
78
+ </property>
79
+ <widget class="QWidget" name="page_3">
80
+ <property name="styleSheet">
81
+ <string notr="true">background: red;</string>
82
+ </property>
83
+ </widget>
84
+ <widget class="QWidget" name="page_4">
85
+ <property name="styleSheet">
86
+ <string notr="true">background: black;</string>
87
+ </property>
88
+ </widget>
89
+ </widget>
90
+ </widget>
91
+ </item>
92
+ </layout>
93
+ </widget>
94
+ <widget class="QMenuBar" name="menubar">
95
+ <property name="geometry">
96
+ <rect>
97
+ <x>0</x>
98
+ <y>0</y>
99
+ <width>1044</width>
100
+ <height>21</height>
101
+ </rect>
102
+ </property>
103
+ <widget class="QMenu" name="menu_project">
104
+ <property name="title">
105
+ <string>Project</string>
106
+ </property>
107
+ <widget class="QMenu" name="menu_recent">
108
+ <property name="title">
109
+ <string>Recent Projects</string>
110
+ </property>
111
+ <property name="icon">
112
+ <iconset>
113
+ <normaloff>../data/icons/common/recent.png</normaloff>../data/icons/common/recent.png</iconset>
114
+ </property>
115
+ <addaction name="actionfiles"/>
116
+ </widget>
117
+ <addaction name="action_new_project"/>
118
+ <addaction name="action_open_project"/>
119
+ <addaction name="menu_recent"/>
120
+ <addaction name="action_save_project"/>
121
+ <addaction name="action_save_project_as"/>
122
+ <addaction name="action_reset"/>
123
+ <addaction name="separator"/>
124
+ <addaction name="action_import_geometry"/>
125
+ <addaction name="action_export_geometry"/>
126
+ <addaction name="action_import_pcf"/>
127
+ <addaction name="action_export_pcf"/>
128
+ <addaction name="separator"/>
129
+ <addaction name="action_exit"/>
130
+ <addaction name="separator"/>
131
+ </widget>
132
+ <widget class="QMenu" name="menu_plots">
133
+ <property name="title">
134
+ <string>Plots</string>
135
+ </property>
136
+ <addaction name="action_plot_geometry_editor"/>
137
+ <addaction name="action_plot_lines"/>
138
+ <addaction name="action_plot_lines_with_cross_section"/>
139
+ <addaction name="action_plot_mesh"/>
140
+ <addaction name="action_plot_cross_section"/>
141
+ <addaction name="action_plot_material"/>
142
+ <addaction name="action_plot_fluid"/>
143
+ <addaction name="action_plot_default_color"/>
144
+ </widget>
145
+ <widget class="QMenu" name="menu_model_info">
146
+ <property name="title">
147
+ <string>Model Info</string>
148
+ </property>
149
+ <addaction name="action_structural_model_info"/>
150
+ <addaction name="action_acoustic_model_info"/>
151
+ </widget>
152
+ <widget class="QMenu" name="menu_help">
153
+ <property name="title">
154
+ <string>Help</string>
155
+ </property>
156
+ <addaction name="action_about_openpulse"/>
157
+ <addaction name="action_check_refprop"/>
158
+ </widget>
159
+ <widget class="QMenu" name="menu_general_settings">
160
+ <property name="title">
161
+ <string>Settings</string>
162
+ </property>
163
+ <addaction name="action_set_dark_theme"/>
164
+ <addaction name="action_set_light_theme"/>
165
+ <addaction name="action_user_preferences"/>
166
+ </widget>
167
+ <widget class="QMenu" name="menuTools">
168
+ <property name="title">
169
+ <string>Tools</string>
170
+ </property>
171
+ <addaction name="action_check_beam_criteria"/>
172
+ <addaction name="action_pulsation_suppression_device_editor"/>
173
+ <addaction name="action_pulsation_damper_editor"/>
174
+ </widget>
175
+ <addaction name="menu_project"/>
176
+ <addaction name="menu_general_settings"/>
177
+ <addaction name="menu_plots"/>
178
+ <addaction name="menu_model_info"/>
179
+ <addaction name="menuTools"/>
180
+ <addaction name="menu_help"/>
181
+ </widget>
182
+ <widget class="QStatusBar" name="statusbar"/>
183
+ <widget class="QToolBar" name="tool_bar">
184
+ <property name="windowTitle">
185
+ <string>Main toolbar</string>
186
+ </property>
187
+ <attribute name="toolBarArea">
188
+ <enum>TopToolBarArea</enum>
189
+ </attribute>
190
+ <attribute name="toolBarBreak">
191
+ <bool>false</bool>
192
+ </attribute>
193
+ <addaction name="action_new_project"/>
194
+ <addaction name="action_open_project"/>
195
+ <addaction name="action_reset"/>
196
+ <addaction name="separator"/>
197
+ <addaction name="action_top_view"/>
198
+ <addaction name="action_bottom_view"/>
199
+ <addaction name="action_left_view"/>
200
+ <addaction name="action_right_view"/>
201
+ <addaction name="action_front_view"/>
202
+ <addaction name="action_back_view"/>
203
+ <addaction name="action_isometric_view"/>
204
+ <addaction name="action_zoom"/>
205
+ <addaction name="separator"/>
206
+ <addaction name="action_show_mesh_data"/>
207
+ <addaction name="action_show_geometry_data"/>
208
+ <addaction name="action_show_lines"/>
209
+ <addaction name="action_show_tubes"/>
210
+ <addaction name="action_show_symbols"/>
211
+ <addaction name="separator"/>
212
+ <addaction name="action_section_plane"/>
213
+ <addaction name="action_show_transparent"/>
214
+ <addaction name="separator"/>
215
+ <addaction name="action_geometry_editor_workspace"/>
216
+ <addaction name="action_model_setup_workspace"/>
217
+ <addaction name="action_results_workspace"/>
218
+ </widget>
219
+ <action name="action_new_project">
220
+ <property name="icon">
221
+ <iconset>
222
+ <normaloff>../icons/common/new_file.png</normaloff>../icons/common/new_file.png</iconset>
223
+ </property>
224
+ <property name="text">
225
+ <string>New Project</string>
226
+ </property>
227
+ <property name="shortcut">
228
+ <string>Ctrl+N</string>
229
+ </property>
230
+ </action>
231
+ <action name="action_open_project">
232
+ <property name="icon">
233
+ <iconset>
234
+ <normaloff>../icons/common/import.png</normaloff>../icons/common/import.png</iconset>
235
+ </property>
236
+ <property name="text">
237
+ <string>Open Project</string>
238
+ </property>
239
+ <property name="toolTip">
240
+ <string>Open Project</string>
241
+ </property>
242
+ <property name="shortcut">
243
+ <string>Ctrl+O</string>
244
+ </property>
245
+ </action>
246
+ <action name="action_export_png">
247
+ <property name="icon">
248
+ <iconset>
249
+ <normaloff>../data/icons/save_image.png</normaloff>../data/icons/save_image.png</iconset>
250
+ </property>
251
+ <property name="text">
252
+ <string>Export PNG</string>
253
+ </property>
254
+ </action>
255
+ <action name="action_reset">
256
+ <property name="icon">
257
+ <iconset>
258
+ <normaloff>../icons/common/reset-image.png</normaloff>../icons/common/reset-image.png</iconset>
259
+ </property>
260
+ <property name="text">
261
+ <string>Reset Project</string>
262
+ </property>
263
+ <property name="shortcut">
264
+ <string>Ctrl+Shift+R</string>
265
+ </property>
266
+ </action>
267
+ <action name="action_save_project">
268
+ <property name="enabled">
269
+ <bool>true</bool>
270
+ </property>
271
+ <property name="icon">
272
+ <iconset>
273
+ <normaloff>../data/icons/common/save.png</normaloff>../data/icons/common/save.png</iconset>
274
+ </property>
275
+ <property name="text">
276
+ <string>Save Project</string>
277
+ </property>
278
+ <property name="shortcut">
279
+ <string>Ctrl+S</string>
280
+ </property>
281
+ </action>
282
+ <action name="action_save_project_as">
283
+ <property name="enabled">
284
+ <bool>true</bool>
285
+ </property>
286
+ <property name="icon">
287
+ <iconset>
288
+ <normaloff>../icons/common/save_as.png</normaloff>../icons/common/save_as.png</iconset>
289
+ </property>
290
+ <property name="text">
291
+ <string>Save Project As</string>
292
+ </property>
293
+ <property name="shortcut">
294
+ <string>Ctrl+Shift+S</string>
295
+ </property>
296
+ </action>
297
+ <action name="action_import_geometry">
298
+ <property name="enabled">
299
+ <bool>true</bool>
300
+ </property>
301
+ <property name="icon">
302
+ <iconset>
303
+ <normaloff>../icons/common/geometry_icon.png</normaloff>../icons/common/geometry_icon.png</iconset>
304
+ </property>
305
+ <property name="text">
306
+ <string>Import Geometry</string>
307
+ </property>
308
+ </action>
309
+ <action name="action_import_pcf">
310
+ <property name="enabled">
311
+ <bool>true</bool>
312
+ </property>
313
+ <property name="text">
314
+ <string>Import PCF</string>
315
+ </property>
316
+ <property name="toolTip">
317
+ <string>Import Piping</string>
318
+ </property>
319
+ </action>
320
+ <action name="action_top_view">
321
+ <property name="icon">
322
+ <iconset>
323
+ <normaloff>../icons/common/top.png</normaloff>../icons/common/top.png</iconset>
324
+ </property>
325
+ <property name="text">
326
+ <string>Top View</string>
327
+ </property>
328
+ <property name="shortcut">
329
+ <string>Ctrl+Shift+1</string>
330
+ </property>
331
+ </action>
332
+ <action name="action_bottom_view">
333
+ <property name="icon">
334
+ <iconset>
335
+ <normaloff>../icons/common/bottom.png</normaloff>../icons/common/bottom.png</iconset>
336
+ </property>
337
+ <property name="text">
338
+ <string>Bottom View</string>
339
+ </property>
340
+ <property name="shortcut">
341
+ <string>Ctrl+Shift+2</string>
342
+ </property>
343
+ </action>
344
+ <action name="action_front_view">
345
+ <property name="icon">
346
+ <iconset>
347
+ <normaloff>../icons/common/front.png</normaloff>../icons/common/front.png</iconset>
348
+ </property>
349
+ <property name="text">
350
+ <string>Front View</string>
351
+ </property>
352
+ <property name="shortcut">
353
+ <string>Ctrl+Shift+3</string>
354
+ </property>
355
+ </action>
356
+ <action name="action_back_view">
357
+ <property name="icon">
358
+ <iconset>
359
+ <normaloff>../icons/common/back.png</normaloff>../icons/common/back.png</iconset>
360
+ </property>
361
+ <property name="text">
362
+ <string>Back View</string>
363
+ </property>
364
+ <property name="shortcut">
365
+ <string>Ctrl+Shift+4</string>
366
+ </property>
367
+ </action>
368
+ <action name="action_left_view">
369
+ <property name="icon">
370
+ <iconset>
371
+ <normaloff>../icons/common/left.png</normaloff>../icons/common/left.png</iconset>
372
+ </property>
373
+ <property name="text">
374
+ <string>Left View</string>
375
+ </property>
376
+ <property name="shortcut">
377
+ <string>Ctrl+Shift+5</string>
378
+ </property>
379
+ </action>
380
+ <action name="action_right_view">
381
+ <property name="icon">
382
+ <iconset>
383
+ <normaloff>../icons/common/right.png</normaloff>../icons/common/right.png</iconset>
384
+ </property>
385
+ <property name="text">
386
+ <string>Right View</string>
387
+ </property>
388
+ <property name="shortcut">
389
+ <string>Ctrl+Shift+6</string>
390
+ </property>
391
+ </action>
392
+ <action name="action_isometric_view">
393
+ <property name="icon">
394
+ <iconset>
395
+ <normaloff>../icons/common/isometric.png</normaloff>../icons/common/isometric.png</iconset>
396
+ </property>
397
+ <property name="text">
398
+ <string>Isometric View</string>
399
+ </property>
400
+ <property name="shortcut">
401
+ <string>Ctrl+Shift+7</string>
402
+ </property>
403
+ </action>
404
+ <action name="actionfiles">
405
+ <property name="enabled">
406
+ <bool>false</bool>
407
+ </property>
408
+ <property name="text">
409
+ <string>...</string>
410
+ </property>
411
+ </action>
412
+ <action name="action_exit">
413
+ <property name="icon">
414
+ <iconset>
415
+ <normaloff>../icons/common/exit.png</normaloff>../icons/common/exit.png</iconset>
416
+ </property>
417
+ <property name="text">
418
+ <string>Exit</string>
419
+ </property>
420
+ <property name="shortcut">
421
+ <string>Ctrl+Shift+Q</string>
422
+ </property>
423
+ </action>
424
+ <action name="action_plot_raw_lines">
425
+ <property name="text">
426
+ <string>Plot Raw Lines</string>
427
+ </property>
428
+ </action>
429
+ <action name="action_plot_lines">
430
+ <property name="text">
431
+ <string>Plot Lines</string>
432
+ </property>
433
+ <property name="shortcut">
434
+ <string>Ctrl+2</string>
435
+ </property>
436
+ </action>
437
+ <action name="action_plot_mesh">
438
+ <property name="text">
439
+ <string>Plot Mesh</string>
440
+ </property>
441
+ <property name="shortcut">
442
+ <string>Ctrl+4</string>
443
+ </property>
444
+ </action>
445
+ <action name="action_plot_lines_with_cross_section">
446
+ <property name="text">
447
+ <string>Plot Lines with Cross-section</string>
448
+ </property>
449
+ <property name="shortcut">
450
+ <string>Ctrl+3</string>
451
+ </property>
452
+ </action>
453
+ <action name="action_plot_cross_section">
454
+ <property name="enabled">
455
+ <bool>true</bool>
456
+ </property>
457
+ <property name="text">
458
+ <string>Plot Cross-section</string>
459
+ </property>
460
+ </action>
461
+ <action name="action_plot_material">
462
+ <property name="enabled">
463
+ <bool>true</bool>
464
+ </property>
465
+ <property name="text">
466
+ <string>Plot Material</string>
467
+ </property>
468
+ </action>
469
+ <action name="action_plot_fluid">
470
+ <property name="enabled">
471
+ <bool>true</bool>
472
+ </property>
473
+ <property name="text">
474
+ <string>Plot Fluid</string>
475
+ </property>
476
+ </action>
477
+ <action name="action_user_preferences">
478
+ <property name="icon">
479
+ <iconset>
480
+ <normaloff>../icons/common/user_preferences_icon.png</normaloff>../icons/common/user_preferences_icon.png</iconset>
481
+ </property>
482
+ <property name="text">
483
+ <string>User Preferences</string>
484
+ </property>
485
+ </action>
486
+ <action name="action_plot_geometry_editor">
487
+ <property name="text">
488
+ <string>Plot Geometry Editor</string>
489
+ </property>
490
+ <property name="shortcut">
491
+ <string>Ctrl+1</string>
492
+ </property>
493
+ </action>
494
+ <action name="action_create_edit_geometry">
495
+ <property name="text">
496
+ <string>Create/Edit Geometry</string>
497
+ </property>
498
+ </action>
499
+ <action name="action_edit_geometry">
500
+ <property name="text">
501
+ <string>Edit Geometry (GMSH GUI)</string>
502
+ </property>
503
+ </action>
504
+ <action name="action_set_project_attributes">
505
+ <property name="text">
506
+ <string>Set Project Attributes</string>
507
+ </property>
508
+ </action>
509
+ <action name="action_set_geometry_file">
510
+ <property name="text">
511
+ <string>Set Geometry File</string>
512
+ </property>
513
+ </action>
514
+ <action name="action_structural_model_info">
515
+ <property name="text">
516
+ <string>Structural Model Info</string>
517
+ </property>
518
+ </action>
519
+ <action name="action_acoustic_model_info">
520
+ <property name="text">
521
+ <string>Acoustic Model Info</string>
522
+ </property>
523
+ </action>
524
+ <action name="action_check_beam_criteria">
525
+ <property name="text">
526
+ <string>Beam theory validity checker</string>
527
+ </property>
528
+ </action>
529
+ <action name="action_select_analysis_type">
530
+ <property name="text">
531
+ <string>Select Analysis Type</string>
532
+ </property>
533
+ </action>
534
+ <action name="action_analysis_setup">
535
+ <property name="text">
536
+ <string>Analysis Setup</string>
537
+ </property>
538
+ </action>
539
+ <action name="action_run_analysis">
540
+ <property name="text">
541
+ <string>Run Analisys</string>
542
+ </property>
543
+ </action>
544
+ <action name="action_plot_structural_mode_shapes">
545
+ <property name="text">
546
+ <string>Plot Structural Mode Shapes</string>
547
+ </property>
548
+ </action>
549
+ <action name="action_plot_displacement_field">
550
+ <property name="text">
551
+ <string>Plot Displacement Field</string>
552
+ </property>
553
+ </action>
554
+ <action name="action_plot_structural_frequency_response">
555
+ <property name="text">
556
+ <string>Plot Structural Frequency Response</string>
557
+ </property>
558
+ </action>
559
+ <action name="action_plot_reactions_frequency_response">
560
+ <property name="text">
561
+ <string>Plot Reactions Frequency Response</string>
562
+ </property>
563
+ </action>
564
+ <action name="action_plot_stress_field">
565
+ <property name="text">
566
+ <string>Plot Stress Field</string>
567
+ </property>
568
+ </action>
569
+ <action name="action_plot_stress_frequency_response">
570
+ <property name="text">
571
+ <string>Plot Stress Frequency Response</string>
572
+ </property>
573
+ </action>
574
+ <action name="action_plot_acoustic_pressure_field">
575
+ <property name="text">
576
+ <string>Plot Acoustic Pressure Field</string>
577
+ </property>
578
+ </action>
579
+ <action name="action_plot_acoustic_frequency_response">
580
+ <property name="text">
581
+ <string>Plot Acoustic Frequency Response</string>
582
+ </property>
583
+ </action>
584
+ <action name="action_plot_acoustic_frequency_response_function">
585
+ <property name="text">
586
+ <string>Plot Acoustic Frequency Response Function</string>
587
+ </property>
588
+ </action>
589
+ <action name="acoustic_plot_acoustic_delta_pressures">
590
+ <property name="text">
591
+ <string>Plot Acoustic Delta Pressures</string>
592
+ </property>
593
+ </action>
594
+ <action name="action_plot_transmission_loss_or_attenuation">
595
+ <property name="text">
596
+ <string>Plot Ransmission Loss or Attenuation</string>
597
+ </property>
598
+ </action>
599
+ <action name="action_play_pause_animation">
600
+ <property name="text">
601
+ <string>Play/Pause Animation</string>
602
+ </property>
603
+ </action>
604
+ <action name="action_animation_settings">
605
+ <property name="text">
606
+ <string>Animation Settings</string>
607
+ </property>
608
+ </action>
609
+ <action name="action_help">
610
+ <property name="text">
611
+ <string>Help</string>
612
+ </property>
613
+ <property name="shortcut">
614
+ <string>F1</string>
615
+ </property>
616
+ </action>
617
+ <action name="action_about_openpulse">
618
+ <property name="text">
619
+ <string>About OpenPulse</string>
620
+ </property>
621
+ </action>
622
+ <action name="action_show_mesh_data">
623
+ <property name="checkable">
624
+ <bool>true</bool>
625
+ </property>
626
+ <property name="checked">
627
+ <bool>false</bool>
628
+ </property>
629
+ <property name="icon">
630
+ <iconset>
631
+ <normaloff>../icons/common/show_mesh_points.png</normaloff>../icons/common/show_mesh_points.png</iconset>
632
+ </property>
633
+ <property name="text">
634
+ <string>Show Mesh Data</string>
635
+ </property>
636
+ <property name="toolTip">
637
+ <string>Show Mesh Data</string>
638
+ </property>
639
+ </action>
640
+ <action name="action_show_lines">
641
+ <property name="checkable">
642
+ <bool>true</bool>
643
+ </property>
644
+ <property name="checked">
645
+ <bool>true</bool>
646
+ </property>
647
+ <property name="icon">
648
+ <iconset>
649
+ <normaloff>../icons/common/show_lines.png</normaloff>../icons/common/show_lines.png</iconset>
650
+ </property>
651
+ <property name="text">
652
+ <string>Show Lines</string>
653
+ </property>
654
+ </action>
655
+ <action name="action_show_tubes">
656
+ <property name="checkable">
657
+ <bool>true</bool>
658
+ </property>
659
+ <property name="checked">
660
+ <bool>true</bool>
661
+ </property>
662
+ <property name="icon">
663
+ <iconset>
664
+ <normaloff>../icons/common/show_tubes.png</normaloff>../icons/common/show_tubes.png</iconset>
665
+ </property>
666
+ <property name="text">
667
+ <string>Show Tubes</string>
668
+ </property>
669
+ </action>
670
+ <action name="action_show_symbols">
671
+ <property name="checkable">
672
+ <bool>true</bool>
673
+ </property>
674
+ <property name="checked">
675
+ <bool>true</bool>
676
+ </property>
677
+ <property name="icon">
678
+ <iconset>
679
+ <normaloff>../icons/common/show_symbols.png</normaloff>../icons/common/show_symbols.png</iconset>
680
+ </property>
681
+ <property name="text">
682
+ <string>Show Symbols</string>
683
+ </property>
684
+ </action>
685
+ <action name="action_hide_selection">
686
+ <property name="text">
687
+ <string>Hide Selection</string>
688
+ </property>
689
+ </action>
690
+ <action name="action_unhide_all">
691
+ <property name="text">
692
+ <string>Unhide All</string>
693
+ </property>
694
+ </action>
695
+ <action name="action_export_geometry">
696
+ <property name="icon">
697
+ <iconset>
698
+ <normaloff>../data/icons/send_to_disk.png</normaloff>../data/icons/send_to_disk.png</iconset>
699
+ </property>
700
+ <property name="text">
701
+ <string>Export Geometry</string>
702
+ </property>
703
+ <property name="toolTip">
704
+ <string>Export Geometry</string>
705
+ </property>
706
+ </action>
707
+ <action name="action_set_dark_theme">
708
+ <property name="icon">
709
+ <iconset>
710
+ <normaloff>../icons/common/moon_icon.png</normaloff>../icons/common/moon_icon.png</iconset>
711
+ </property>
712
+ <property name="text">
713
+ <string>Use dark theme</string>
714
+ </property>
715
+ </action>
716
+ <action name="action_set_light_theme">
717
+ <property name="icon">
718
+ <iconset>
719
+ <normaloff>../icons/common/sun_icon.png</normaloff>../icons/common/sun_icon.png</iconset>
720
+ </property>
721
+ <property name="text">
722
+ <string>Use light theme</string>
723
+ </property>
724
+ </action>
725
+ <action name="action_remove_themes">
726
+ <property name="text">
727
+ <string>Remove themes</string>
728
+ </property>
729
+ </action>
730
+ <action name="action_show_transparent">
731
+ <property name="checkable">
732
+ <bool>true</bool>
733
+ </property>
734
+ <property name="checked">
735
+ <bool>false</bool>
736
+ </property>
737
+ <property name="icon">
738
+ <iconset>
739
+ <normaloff>../icons/common/mesh.png</normaloff>../icons/common/mesh.png</iconset>
740
+ </property>
741
+ <property name="text">
742
+ <string>Show Transparent</string>
743
+ </property>
744
+ </action>
745
+ <action name="action_select_elements">
746
+ <property name="checkable">
747
+ <bool>true</bool>
748
+ </property>
749
+ <property name="text">
750
+ <string>Selection to Elements</string>
751
+ </property>
752
+ <property name="toolTip">
753
+ <string>Selection to Elements</string>
754
+ </property>
755
+ </action>
756
+ <action name="action_export_pcf">
757
+ <property name="text">
758
+ <string>Export PCF</string>
759
+ </property>
760
+ </action>
761
+ <action name="action_geometry_editor_help">
762
+ <property name="text">
763
+ <string>Geometry Editor Help</string>
764
+ </property>
765
+ </action>
766
+ <action name="action_section_plane">
767
+ <property name="checkable">
768
+ <bool>true</bool>
769
+ </property>
770
+ <property name="icon">
771
+ <iconset>
772
+ <normaloff>../icons/common/section_plane_icon.png</normaloff>../icons/common/section_plane_icon.png</iconset>
773
+ </property>
774
+ <property name="text">
775
+ <string>Section Plane</string>
776
+ </property>
777
+ </action>
778
+ <action name="action_zoom">
779
+ <property name="icon">
780
+ <iconset>
781
+ <normaloff>../icons/common/zoom_icon.png</normaloff>../icons/common/zoom_icon.png</iconset>
782
+ </property>
783
+ <property name="text">
784
+ <string>Zoom</string>
785
+ </property>
786
+ <property name="toolTip">
787
+ <string>Zoom To Fit</string>
788
+ </property>
789
+ </action>
790
+ <action name="action_pulsation_suppression_device_editor">
791
+ <property name="text">
792
+ <string>Pulsation suppression device editor</string>
793
+ </property>
794
+ </action>
795
+ <action name="action_show_geometry_data">
796
+ <property name="checkable">
797
+ <bool>true</bool>
798
+ </property>
799
+ <property name="icon">
800
+ <iconset>
801
+ <normaloff>../icons/common/show_geometry_points.png</normaloff>../icons/common/show_geometry_points.png</iconset>
802
+ </property>
803
+ <property name="text">
804
+ <string>Show Geometry Data</string>
805
+ </property>
806
+ <property name="toolTip">
807
+ <string>Show Geometry Data</string>
808
+ </property>
809
+ </action>
810
+ <action name="action_plot_default_color">
811
+ <property name="text">
812
+ <string>Plot Default Color</string>
813
+ </property>
814
+ </action>
815
+ <action name="action_geometry_editor_workspace">
816
+ <property name="icon">
817
+ <iconset>
818
+ <normaloff>../icons/common/model_settings.png</normaloff>../icons/common/model_settings.png</iconset>
819
+ </property>
820
+ <property name="text">
821
+ <string>Geometry Editor Workspace Action</string>
822
+ </property>
823
+ <property name="toolTip">
824
+ <string>Geometry editor workspace</string>
825
+ </property>
826
+ </action>
827
+ <action name="action_model_setup_workspace">
828
+ <property name="icon">
829
+ <iconset>
830
+ <normaloff>../icons/common/engineering.png</normaloff>../icons/common/engineering.png</iconset>
831
+ </property>
832
+ <property name="text">
833
+ <string>Geometry Model Setup Workspace Action</string>
834
+ </property>
835
+ <property name="toolTip">
836
+ <string>Model setup workspace</string>
837
+ </property>
838
+ </action>
839
+ <action name="action_results_workspace">
840
+ <property name="icon">
841
+ <iconset>
842
+ <normaloff>../icons/common/calculate.png</normaloff>../icons/common/calculate.png</iconset>
843
+ </property>
844
+ <property name="text">
845
+ <string>Results Workspace Action</string>
846
+ </property>
847
+ <property name="toolTip">
848
+ <string>Results workspace</string>
849
+ </property>
850
+ </action>
851
+ <action name="action_check_refprop">
852
+ <property name="text">
853
+ <string>Check REFPROP</string>
854
+ </property>
855
+ </action>
856
+ <action name="action_pulsation_damper_editor">
857
+ <property name="text">
858
+ <string>Pulsation damper editor</string>
859
+ </property>
860
+ </action>
861
+ </widget>
862
+ <resources/>
863
+ <connections/>
864
+ </ui>