Salome HOME
bos #24513 - Merge branch 'CR24513'
[modules/shaper.git] / doc / gui / General / Introduction.rst
1
2 .. _introduction:
3
4 Introduction to SHAPER
5 ======================
6
7 SHAPER module of SALOME is destined for:
8
9 - import and export of geometrical models in IGES, BREP, STEP and XAO formats;
10 - parametric construction of geometrical objects using a wide range of functions:
11
12   - creation of complex 2D sections using :ref:`sketchPlugin` with consequent extrusion or revolution (see :ref:`featuresPlugin`);
13   - construction of model using primitives defined in :ref:`primitivesPlugin`;
14   - usage of Boolean operations (see :ref:`featuresPlugin`);
15
16 - viewing geometrical objects in the OCC viewer;
17 - transformation of geometrical objects using various algorithms.
18
19 It is possible to easily set :ref:`parameter_usage` predefined to be used as arguments when objects are created.
20
21 SHAPER module preferences are described in the :ref:`preferences` section of SALOME Help.
22
23 Almost all SHAPER  module functionalities are accessible via Python Interface.
24
25 SHAPER module works with one study containing several documents:
26
27 - partset
28 - one or several parts.
29
30 Only one document can be active. In complicated models partset consists of several parts. Parts in partset may be copied, positioned relatively to each other, or simply translated.
31
32 A new study contains only a partset with 7 default constructions, which cannot be deleted:
33
34 - one point **Origin** coinciding with the origin of the coordinate system;
35 - three axes **OX**, **OY**, **OZ**  coinciding with coordinate axes;
36 - three planes **YOZ**, **XOZ**, **XOY**  coinciding with coordinate planes.
37
38 Only  points, axis, planes (see  :ref:`constructionPlugin`) and sketches (see  :ref:`sketchPlugin`) can be added into Partset to be used in any part later.
39 :ref:`parameter_usage` can be used both in Partset and any Part.
40
41 A new Part can be created as described in :ref:`partPlugin`.
42
43 Double click or pop-up menu can be used to activate existing document.
44
45 Application desktop
46 -------------------
47
48 The main window of the application consists of the following components:
49
50 - :ref:`main_menu`;
51 - :ref:`doc_windows`;
52 - :ref:`viewer`;
53 - :ref:`toolbar`;
54 - status bar.
55
56 .. figure:: /images/main_window.png
57    :align: center
58
59    Main window of SHAPER module
60
61 .. _main_menu:
62
63 Main menu
64 ---------
65
66 Main menu provides access to all commands of the application.
67
68 .. figure:: /images/main_menu.png
69    :align: center
70
71    Main menu
72
73 Main menu includes standard Salome items:
74
75 - File;
76 - Edit;
77 - View;
78 - Tools;
79 - Window;
80 - Help;
81
82 and items specific for SHAPER module:
83
84 - Part (see :ref:`partPlugin`);
85 - Sketch (see :ref:`sketchPlugin`);
86 - Construction (see :ref:`constructionPlugin`);
87 - Build (see :ref:`buildPlugin`);
88 - Primitives (see :ref:`primitivesPlugin`);
89 - Features (see :ref:`featuresPlugin`);
90 - Macros.
91
92  .. _toolbar:
93
94 SHAPER toolbar
95 --------------
96
97 Application toolbar contains:
98
99 - standard toolbar;
100 - modules toolbar;
101 - SHAPER toolbar.
102
103 .. figure:: /images/toolbar.png
104    :align: center
105
106    Toolbars
107
108 SHAPER toolbar duplicates the main menu and  provides access to all commands of the application.
109
110 SHAPER toolbar is separated into sections:
111
112 - Part;
113 - Movement;
114 - Measurement;
115 - Sketch;
116 - Construction;
117 - Build;
118 - Primitives;
119 - GDML;
120 - Features;
121 - Boolean;
122 - Collections;
123 - Fillet;
124 - Macros.
125
126 Visibility of SHAPER toolbar sections is managed using *View -> Toolbar* :ref:`main_menu` item or toolbar pop-up menu.
127
128 .. _doc_windows:
129
130 Dock windows
131 ------------
132
133 Standard dock windows are:
134
135 - :ref:`object_browser`
136 - :ref:`inspection_panel`
137 - :ref:`hidefaces_panel`
138 - :ref:`python console`
139 - :ref:`property_panel`
140
141 Dock windows can be placed in three dock areas using drag-and-drop:
142
143 - left,
144 - right,
145 - bottom.
146
147 By default Object browser window is placed at the left dock area, Inspection panel at the right dock area and Python console at the bottom dock area of the main window.
148
149 Property Panel is hidden.
150
151 Property Panel is shown on operation start in left dock area of the main window by default.
152
153 If Object browser is shown at the same side then they will be tabbed.
154
155 Each dock window can be closed using **Cross** window button and opened again using a corresponding command from *View - Windows* :ref:`main_menu` or alternatively using pop-up menu.
156
157 .. figure:: /images/popup_menu.png
158    :align: center
159
160    Pop-up menu for visibility of windows and toolbars
161
162 .. _object_browser:
163
164 Object browser
165 ^^^^^^^^^^^^^^
166
167 Object browser contains all documents created in the current study.
168
169 Each document includes standard branches where created objects are placed.
170
171 Documents with branches are shown in Tree View.
172
173 .. figure:: /images/object_browser.png
174    :align: center
175
176    **Object browser**: Partset active
177
178 Partset includes three branches:
179
180 - Parameters;
181 - Constructions;
182 - Features
183
184 Part includes the following branches:
185
186 - Parameters;
187 - Constructions;
188 - Results;
189 - Fields;
190 - Groups;
191 - Features.
192
193 New part contains only 3 empty branches:
194
195 - Parameters;
196 - Constructions;
197 - Results.
198
199 Features are placed one after another in the active document with default names and their results are placed into the corresponding branch.
200
201 Examples of default names assigned automatically for :ref:`box_feature` are:
202
203 * **Box_1**, **Box_2**, ... for Feature;
204 * **Box_1_1**, **Box_2_1**, ... for Result.
205
206 Note, that a default branch is added into Tree View when the first feature of this type is created.
207
208 Note, that the result used in feature as argument is removed.
209
210 This child result can be restored using **Recover** feature.
211
212 Each feature, result, construction, group, field, parameter can be renamed using *Rename* pop-up menu command (hotkey "F2").
213
214 .. figure:: /images/popup_menu_object_browser_feature.png
215    :align: center
216
217    **Feature** pop-up menu
218
219 .. figure:: /images/popup_menu_object_browser_result.png
220    :align: center
221
222    **Result** pop-up menu
223
224 .. figure:: /images/popup_menu_object_browser_construction.png
225    :align: center
226
227    **Construction** pop-up menu
228
229 .. figure:: /images/popup_menu_object_browser_group.png
230    :align: center
231
232    **Group** pop-up menu
233
234 The order of features can be changed using *Move to the end* and *Move to the end and split* pop-up menu commands. They work only for Group features. The selected group or several groups will be moved to the end of features list. The *Move to the end and split* also splits the resulting group in several groups: one group per one selection.
235
236 Folders can be used to arrange long Tree View for features.
237
238 .. figure:: /images/object_browser_folder.png
239    :align: center
240
241    **Object browser** with folder Dome: Part_1 active
242
243 *Insert a folder before* pop-up menu command creates a new empty folder before the selected feature. The folder can be renamed.
244
245 Features placed after/before the created folder can be moved into the folder using *Move into the previous folder* / *Move into the next folder* pop-up menu command.
246
247 This allows to decrease the length of feature list.
248
249 Features can be removed from the folder using *Move out before the folder* / *Move out after the folder* pop-up menu command.
250
251 *Clean history* pop-up menu command looks for features that do not participate in other features.
252
253 **Clean history** dialog box shows a list of unused features. After confirmation by click **Yes** button unused features are removed.
254
255 .. figure:: /images/clean_history.png
256    :align: center
257
258    **Clean history** dialog box
259
260 *Select result* and *Select parent feature* pop-up menu commands help to navigate along Tree View.
261
262 A feature and its result can be deleted using *Delete* pop-up menu command.
263
264 Note that all features using the removed feature and their results will be removed simultaneously.
265
266 **Delete feature** dialog box shows the list of features to be removed. After confirmation by click **Yes** button all these features are removed.
267
268 .. figure:: /images/delete_feature.png
269    :align: center
270
271    **Delete feature** dialog box
272
273 .. _property_panel:
274
275 Property panel
276 ^^^^^^^^^^^^^^
277
278 .. |ok_btn| image:: /images/button_ok.png
279 .. |cancel_btn| image:: /images/button_cancel.png
280 .. |help_btn| image:: /images/button_help.png
281
282 Property panel consists of two parts:
283
284 - controls a container for input of parameters for the current operation;
285 - buttons panel containing standard buttons:
286
287    | |ok_btn| **Ok/Apply** executes operation with defined parameters,
288    | |cancel_btn| **Cancel/Close** calls **Abort operation** dialog box to confirm  operation abort,
289    | |help_btn| **Help** calls User's guide opened on page describing the current operation.
290
291    .. figure:: /images/abort_operation.png
292       :align: center
293
294       **Abort operation** dialog box
295
296 |ok_btn| **OK/Apply**  button is disabled if not all input parameters are defined or some errors are found. Error is shown as tooltip and in status bar.
297
298 .. _inspection_panel:
299
300 Inspection panel
301 ^^^^^^^^^^^^^^^^
302
303 Inspection panel provides the list of types and quantities of all topological entities, composing the selected result, construction or feature.
304
305 .. figure:: /images/inspection_panel.png
306    :align: center
307
308    **Inspection panel** for default Box
309
310 **Object** displays name of the selected result, construction  or feature.
311
312 **Type** characterizes the whole shape.
313
314 The information about Point, Axis or Edge  additionally shows coordinates of point / end points.
315
316 .. figure:: /images/inspection_panel_line.png
317    :align: center
318
319    **Inspection panel** for Axis
320
321 The information about  Plane, Face additionally shows coordinates of center point and direction of normal.
322
323 .. figure:: /images/inspection_panel_face.png
324    :align: center
325
326    **Inspection panel** for Face
327
328 .. _hidefaces_panel:
329
330 Hide Faces panel
331 ^^^^^^^^^^^^^^^^
332
333 **Hide Faces** panel makes possible to hide temporary faces of any displayed object. **Hide Faces** panel looks like following:
334
335 .. figure:: /images/hide_faces_panel.png
336    :align: center
337
338    **Hide Faces** panel
339
340 - If this panel is activated it "listens" user selection.
341 - If a face is selected then its name will be shown in the panel's list and hidden in the viewer.
342 - If user selects a group of faces (or at least a one face of this group) then whole group will be hidden and also all faces from all objects referenced by this group.
343 - If user will display the hidden group again (by a show operation) then the group will be removed from Hide Faces list and visibility of all referenced faces will be restored.
344
345 It is also possible not to hide faces, but make them transparent. For this purpose **"Transparent"** check-box can be used. Value of the transparency can be changed in **Visualization** tab of **Preferences** dialog box.
346 Closing of **Hide Faces** panel restores visibility state of all objects. If it is necessary to deactivete the **Hide Faces** panel (preserving the current display state) then user has to press **"Esc"** button.
347
348 .. _python console:
349
350 Python console
351 ^^^^^^^^^^^^^^
352
353 Python console interpreters Python commands entered manually.
354
355 In particular, it is possible to load the python script:
356
357 *execfile(r"/dn48/newgeom/data/example.py")*
358
359 Pop-up menu gives the possibility to:
360
361 - Copy the selected text to clipboard;
362 - Paste the text from clipboard to Python console ;
363 - Clear Python console;
364 - Dump commands from console into the specified file;
365 - Start/Stop writing log into the specified file.
366
367 .. figure:: /images/python_console_popup.png
368    :align: center
369
370    Pop-up menu of Python console
371
372 .. _viewer:
373
374 Viewer
375 ------
376
377 The application supports one instance of OCC 3D viewer and is able to show only one 3D space.
378
379 This 3D space can be represented in several view windows. New view window can be created using **Clone view** button in viewer toolbar.
380
381 Each view windows shows its own point of view on the 3D scene.
382
383 This point of view can be modified using viewer commands: **Panning**, **Zooming**, **Scaling**, etc.
384
385 .. figure:: /images/2_viewers.png
386    :align: center
387
388    Two view windows
389
390 The description of OCC 3D Viewer architecture and functionality is provided in GUI module user's guide in chapter **OCC 3D Viewer**.
391
392 .. _parameter_usage:
393
394 Parameters
395 ----------
396
397 Model parametrization can be done using parameters.
398
399 A parameter can be created in the active partset or part by:
400
401 - :ref:`parameter`;
402 - :ref:`parameters`;
403 - :ref:`parameter_expression`.
404
405 Any argument in features can be defined as parameter or expression containing parameters.
406
407 The list of features using parameters is given in **Parameters** dialog box:
408
409  .. figure:: /images/parameters_feature.png
410    :align: center
411
412    Parameters dialog box
413
414 If a parameter value is changed, then all features where it is used are rebuilt.
415
416 A parameter name should be unique in the active document.
417
418 However, partset and part can have parameters with the same name. If parameter names in Partset and Part are identical, then Part parameter has a higher priority and its value will be used in the features of this part.
419
420 In contrast to features (see :ref:`object_browser`), there is an additional option when parameters are deleted.
421
422 .. figure:: /images/delete_parameter.png
423    :align: center
424
425    Delete parameter
426
427 After clicking **Replace** button, the selected parameter is removed but its parent parameters and features are not removed. The deleted parameter is replaced by its value.
428
429 .. _parameter_expression:
430
431 Create parameter on fly
432 ^^^^^^^^^^^^^^^^^^^^^^^
433
434 Parameter can be created during feature creation simply by writing *variable=expression* in any editbox.
435
436 After feature validation a new parameter with the given name **variable** and value equal to the evaluated expression appears in object browser under **Parameters** in the active partset or part.
437
438 .. _preferences:
439
440 SHAPER preferences
441 ------------------
442
443 Description of General application preferences and **Preferences** dialog box is provided in GUI module user's guide in chapter **Setting Preferences**.
444
445 SHAPER preferences define visualization of objects, visualization during selection, edition. New preferences can be used right after modification or later after activation of SHAPER module.
446
447 To call **Preferences** dialog box:
448
449 #. select in the Main Menu *File - > Preferences* item or
450 #. use  **Ctrl+P** shortcut.
451
452 SHAPER preferences contains the following tabs:
453
454 - :ref:`general_preferences`;
455 - :ref:`visualization_preferences`;
456 - :ref:`plugins_preferences`;
457 - :ref:`shortcuts_preferences`;
458 - :ref:`windows_preferences`.
459 - :ref:`sketch_preferences`.
460 - :ref:`viewer_preferences`.
461
462 General tab is activated by default when **Preferences** dialog box is opened in the active SHAPER module.
463
464 Other tabs are activated by click on tab header.
465
466 .. _general_preferences:
467
468 General tab
469 ^^^^^^^^^^^
470
471 This tab defines what parts to be activated and what elements to be visible after opening a study or a script.
472
473 .. figure:: /images/general_preferences.png
474    :align: center
475
476    **Preferences**: General tab
477
478 **Input fields**:
479
480 - **Activate** relates to activation of part when opening a HDF document. Its could be one of the following:
481
482   - "Last part" - activate last part in the document (**default value**);
483   - "All parts" - activate all parts within the document;
484   - "No activation" - do not activate any part.
485
486 - **Display** in "Opening a study". It specifies the shapes, which should be visualized when activating a part. It could be one of the following:
487
488   - "As stored in HDF" - display only the shapes visible before the document is saved (**default value**);
489   - "Last item in each folder" - show only the last result in each folder of the part: Constructions, Results, Groups, Fields;
490   - "All items" - show all shapes from each folder;
491   - "No visualization" - do not display any shape.
492
493 - **Display** in "Launching a python script". It specifies the shapes, which should be visualized when loading a script using "File -> Load Script..." menu. It could be one of the following:
494
495   - "Last item in each folder" - show only the last result in each folder of the part: Constructions, Results, Groups, Fields;
496   - "All items" - show all shapes from each folder(**default value**);
497   - "No visualization" - do not display any shape.
498
499 .. _visualization_preferences:
500
501 Visualization tab
502 ^^^^^^^^^^^^^^^^^
503
504 This tab defines presentation of objects displayed in OCC 3D viewer.
505
506 .. figure:: /images/visualization_preferences.png
507    :align: center
508
509    **Preferences**: Visualization tab
510
511 **Input fields**:
512
513 - **Selection color** defines a color for selected objects;
514 - **Result color** selects default shading color for objects from **Results** branch;
515 - **Group color** selects default color for objects from **Groups** branch;
516 - **Construction color** selects default color for objects from **Constructions** branch;
517 - **Part color** selects default color for parts shown in Partset;
518 - **Field color** selects default color for objects from **Fields** branch;
519 - **Body deflection coefficient** defines default deflection coefficient for objects from **Results** branch. A smaller coefficient provides better quality of a shape in the viewer;
520 - **Construction deflection coefficient** defines default deflection coefficient for objects from **Constructions** branch. A smaller coefficient provides better quality of a shape in the viewer;
521 - **Reference shape wireframe color in operation** selects default color used for wireframe visualization of objects used in active operation;
522 - **Result shape wireframe color in operation** selects default color used for wireframe visualization of result in active operation. Click **See preview** button to show result;
523 - **Multi selector item color in operation** selects default color used for visualization of objects selected in property panel to distinguish them among all objects used in active operation;
524 - **Color of removed feature in operation** selects default color used for visualization of sketch entities to be removed during **Trim/Split** operations;
525 - **Color of sketch plane** selects default shading color for sketch plane;
526 - **Hidden faces transparency** defines default transparency value for hidden faces;
527 - **Dimension arrow size**  defines default size of arrows for extension line showing dimensional constraint;
528 - **Dimension font** defines font used for value of dimensional constraint;
529 - **Dimension value size**  defines default size of value for dimensional constraint;
530 - **Sketch dimension color**  defines default color of dimensional constraint;
531 - **Construction plane color** selects default color for Construction planes;
532 - **Sketch entity color** selects default color for sketch objects;
533 - **Sketch external entity color** selects default color for external objects selected as reference during sketch creation/edition;
534 - **Sketch auxiliary entity color** selects default color for sketch auxiliary objects;
535 - **Sketch overconstraint color** selects default color for a sketch with redundant constraints;
536 - **Sketch fully constraint color** selects default color for a sketch with zero degrees of freedom.
537 - **Zoom trihedron arrows** if this control is checked then arrows of a view trihedron will be scaled according to current view scale
538 - **Axis arrow size** relative size of trihedron arrows. It has effect only in case if **Zoom trihedron arrows** is On.
539
540 To redefine any color click on the corresponding line to access **Select color** dialog box
541
542 .. figure:: /images/select_color.png
543    :align: center
544
545    **Preferences**: **Select color** dialog box
546
547 Preferences for sketch are applicable  during sketch creation/edition operation.
548
549 .. _plugins_preferences:
550
551 Plugins tab
552 ^^^^^^^^^^^
553 Plugins tab defines folders where plugins and resources are located.
554
555 .. figure:: /images/plugins_preferences.png
556    :align: center
557
558    **Preferences**: Plugins tab
559
560 **Input fields**:
561
562 - **Default path** selects default folder where plugins are located. Click on **Open** button opens standard **Find directory** dialog box to navigate to desired folder;
563
564 - **Import initial directory** selects default folder where resources are located. Click on **Open** button opens standard **Find directory** dialog box to navigate to desired folder.
565
566 .. figure:: /images/open_button.png
567    :align: center
568
569    **Open** button
570
571 .. figure:: /images/find_directory.png
572    :align: center
573
574    **Find directory** dialog box
575
576
577 .. _shortcuts_preferences:
578
579 Shortcuts tab
580 ^^^^^^^^^^^^^
581
582 Shortcuts tab defines shortcut keys for different operations.
583
584 .. figure:: /images/shortcuts_preferences.png
585    :align: center
586
587    **Preferences**: Shortcuts tab
588
589 - **Add parameter in parameters manager dialog** defines shortcut keys for adding parameter in parameters manager dialog box.
590
591 .. _windows_preferences:
592
593 Windows tab
594 ^^^^^^^^^^^
595
596 Windows tab contains definitions for the module windows management.
597
598 .. figure:: /images/windows_preferences.png
599    :align: center
600
601    **Preferences**: Windows tab
602
603 - **Use HideFaces panel in operation** if the checkbox is checked then HideFaces panel will be launched automatically on launching an operation where using of this panel is considered.
604
605 .. _sketch_preferences:
606
607 Sketch tab
608 ^^^^^^^^^^
609
610 Sketch tab defines properties of coordinate planes shown for selection of sketch plane when no convenient objects are shown in OCC 3D viewer.
611
612 .. figure:: /images/sketch_preferences.png
613    :align: center
614
615    **Preferences**: Sketch tab
616
617 **Input fields**:
618
619 - **Size** defines size of coordinate planes;
620 - **Thickness**  defines thickness of coordinate plane borders;
621 - **Rotate to plane when selected** check-box turns on/off automatic switch the viewer to the top view for the selected sketch plane;
622 - **Angular tolerance** defines defines an angular tolerance for automatic creation of horizontal and vertical constraints;
623 - **Default spline weight** defines default weight for B-spline nodes during creation. The default value can be changed by editing of the spline;
624 - **Cursor for sketch operation** defines a cursor which indicates a launched sketcher sub-operation;
625 - **Create sketch entities by dragging** defines a style of sketch etities creation. It concerns creation of lines, rectangles, circles, arcs, ellipses, elliptic arcs. If it is switched ON then points of objects have to be defined by mouse press - mouse move - mouse release. Otherwise every point of an object has to be defined by mouse click;
626 - **Allow automatic constraint substitution/remove** allows automatic resolving of conflicting constraints.
627   The following conflicts could be processed:
628     - Horizontal/Vertical automatic constraints (this last constraint will be removed);
629     - Pair of arcs connected smoothly, which centers are coincident (Tangency between arcs will be removed);
630 - **Notify automatic constraint substitution/remove** defines a message box to be shown to the user, if the conflicting constraints situation is automatically resolved.
631
632 .. _viewer_preferences:
633
634 Viewer tab
635 ^^^^^^^^^^
636
637 Viewer tab defines selection in OCC 3D viewer properties.
638
639 .. figure:: /images/viewer_preferences.png
640    :align: center
641
642    **Preferences**: Viewer tab
643
644 **Input fields**:
645
646 - **Default Selection** defines objects to be selected by mouse click in OCC 3D viewer:
647
648   - **Faces** check-box turns on/off selection of faces;
649   - **Edges** check-box turns on/off selection of edges;
650   - **Vertices** check-box turns on/off selection of vertices;
651
652 - **Selection sensitivity** defines size of area around object in pixels, in which  mouse click selects object inside this area:
653
654   - **Vertex** defines selection  sensitivity for vertices;
655   - **Edge**  defines selection  sensitivity for edges.
656
657 .. _toolbars_management:
658
659 Toolbars management
660 -------------------
661
662 .. _toolbars_dialog:
663
664 **Toolbars** dialog box
665 ^^^^^^^^^^^^^^^^^^^^^^^
666 To edit the current tool bars structure select in the Main Menu *Edit - > Edit toolbars* item.
667 The following dialog box with existing toolbars appears:
668
669 .. figure:: /images/Toolbars.png
670    :align: center
671
672    **Toolbars** dialog box
673
674 **Input fields**:
675
676 - **Toolbars** window contains list of toolbars names. Number of commands in each tool bar is shown in brackets.
677 - **Add** button creates a new toolbar. Click on **Add** button opens :ref:`create_toolbar`;
678 - **Edit**  button  calls :ref:`edit_toolbar` for currently selected tool bar;
679 - **Delete** button removes currently selected tool bar. Click on **Delete** button opens warning dialog box. After confirmation by click **Yes** button the selected toolbar is deleted. Click **No** button cancels removing of the selected toolbar;
680 - **Reset** button restores modified tool bars structure to default state;
681 - **OK** button closes the dialog box, stores result of tool bars edition and updates Shaper tool bars;
682 - **Cancel** button closes the dialog box without modification of tool bars.
683
684 .. figure:: /images/delete_toolbar.png
685    :align: center
686
687    Warning dialog box
688
689 .. _create_toolbar:
690
691 **Create toolbar** dialog box
692 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
693
694 **Input fields** of **Create toolbar** dialog box:
695
696 .. figure:: /images/create_toolbar.png
697    :align: center
698
699    **Create toolbar** dialog box
700
701 - **Name of a new toolbar** defines name of the new tool bar. The name of tool bar has to be unique. If user defines a not unique name then a warning appears and a new tooolbar with not unique name is not created;
702 - **Ok** button closes the dialog box and add a new tool bar of the module into  **Toolbars** window;
703 - **Cancel** button closes the dialog box without addition of a new tool bar.
704
705 .. figure:: /images/name_toolbar.png
706    :align: center
707
708    **Warning** dialog box
709
710 .. _edit_toolbar:
711
712 **Edit toolbar** dialog box
713 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
714
715 **Input fields** of **Edit toolbar** dialog box:
716
717 .. figure:: /images/EditToolbar.png
718    :align: center
719
720    **Edit toolbar** dialog box
721
722 - **Toolbar name** non-editable field displays  name of modified tool bar;
723 - **Out of toolbars** window contains list of commands which are not included into any tool bar and separator definition "------";
724 - **In the toolbar** window contains list of commands which are defined in the current tool bar. Items in this window are listed according to order of commands in the toolbar;
725 - **Right arrow** button transfers currently selected item from  **Out of toolbars** window to **In the toolbar** window and puts new item before the selected item in **In the toolbar** window.
726     If there is no selected item in **In the toolbar**  window then new item will be added at the end of items list. In order to clear current selection it is necessary to click in empty space of the window.
727 - **Left arrow** button transfers currently selected item from **In the toolbar** window into **Out of toolbars** window;
728 - **Up** and **Down** buttons  change position of selected command in **In the toolbar** window;
729 - **Ok** button closes the dialog box, stores result of edition;
730 - **Cancel**  button closes the dialog box without modification of tool bar content.