Expand/Shrink

IupLayoutDialog

Definition: include pGUI.e

Ihandle ih = IupLayoutDialog(Ihandln dialog)
Description: Creates a Layout Dialog.
It is a predefined dialog to visually edit the layout of another dialog in run time.
It is a standard IupDialog constructed with other IUP elements.
The dialog can be shown with any of the show functions IupShow, IupShowXY or IupPopup.

Any existing dialog can be selected. It does not need to be mapped on the native system nor visible.

The layout dialog is composed by two areas: one showing the given dialog children hierarchy tree, and one displaying its layout.

This is a dialog intended for developers, so they can see and inspect their dialogs in other ways.

dialog: identifier of the dialog to display the layout. Can be NULL.

Returns: the identifier of the created element.

Refer to IupDialog for details of available attributes and callbacks.
pwa/p2js: Not supported.
Notes Menu
Dialog
        New  - creates a new empty dialog, it will be destroyed when the layout is destroyed.
        Load - loads an existent dialog from the application.
        Load Visible - lists only visible dialogs from the application to be loaded.
        Reload - reloads the current dialog into the Layout Dialog.
        Export - exports the current dialog to a text file in the specified language.
                C
                LED
                Lua
        Refresh - recalculates the dialog layout of the current dialog (IupRefresh).
        Redraw - send a redraw to the current dialog (IupRedraw).
        Show - shows the current dialog (IupShow) 
        Hide - hides the current dialog (IupHide) 
        Globals... - displays an IupGlobalsDialog() popup
        Close - hides the Layout Dialog, optionally self destroy according to DESTROYWHENCLOSED.
Layout
        Hierarchy - shows or hides the layout hierarchy tree at left.
        Update - redraw the layout.
        Auto Update - periodically redraw the layout.
        Show Hidden - show hidden elements in the layout.
        Opacity - controls the Layout Dialog opacity so you can composite it on top of the selected dialog.
 

Use Reload when the dialog has been changed and the layout was modified by the application.
Use Update when attributes of the dialog were changed by the application and the layout needs to be redrawn.
The Export items will export only the dialog and its children.
Associated elements such as menus and images will not be exported.
The selected file will be overwritten if it already exists.

Hierarchy Tree
Each element inside the dialog is mapped to a node in the tree, and elements that are containers are branches in the tree.
The node title shows the element class name, its TITLE attribute when available and its name when available.
The selected node is synced with the selected element in the layout display in both ways.
Using the right click over a node shows a context menu.

You can drag and drop items in the tree.
But there are some restrictions according to each container possibilities.
Some containers have internal children that are displayed but can not be changed.

Layout Display
The layout of an element is drawn with its Current size using its FONT, TITLE, BGCOLOR and FGCOLOR if any.
But inheritance is not used intentionally to emphasize the element attributes.
Only the first line (limited to 50 characters in the tree) is used from the element TITLE.
Images are also used, but position of text and images are not the same as in the native control.
This decoration is there simply to help locating the elements in the layout.

Containers that are not native elements are shown with dashed lines, other elements are shown with solid lines.
When a red line is displayed along with a border of an element it means that element is maximizing its parent size, i.e. its Current size is equal to its Natural size and both are equal to the parent Client size.
Usually this is the element determining the natural size of the container at least in the direction marked with red.

You can NOT drag and drop elements in the layout.
Using the right click over an element shows a context menu, the same as in a tree node.
When an element in the layout is double clicked and the actual element is visible, then the actual element will blink twice.

Context Menu
Properties - shows the properties dialog for the selected element.
Map - maps the selected element to the native system.
Unmap - unmaps the selected element from the native system. Its attribute are saved before unmapping.
Copy - copy the selected element to an internal clipboard. Its attributes are also copied.
Cut - Prepare the selected element to be cut (re-parent). The cut occurs only when pasted.
Paste Insert Child - paste the copy or cut element as the first child of the selected container. 
Paste Insert at Cursor - paste the copy or cut element at the cursor mark of the selected container.
Paste Append Child - paste the copy or cut element as the last child of the selected container.
Paste Insert Brother - paste the copy or cut element as brother of the selected element.
-----------------
New Insert Child - selects a class of control and creates a new element of that class, then insert it 
                    as the first child of the selected container. The new element is not mapped.
New Insert at Cursor - selects a class of control and creates a new element of that class, then insert 
                    it at the cursor mark of the selected container. The new element is not mapped.
New Append Child - selects a class of control and creates a new element of that class, then insert it 
                    as the last child of the selected container. The new element is not mapped.
New Insert Brother - selects a class of control and creates a new element of that class, then insert 
                      it as brother of the selected element. The new element is not mapped.
-----------------
Remove - removes the selected element. 
 

Properties
The properties dialog allows the inspection and change of the elements attributes.
It contains 3 Tab sections:
one for the registered attributes of the element,
one for custom attributes set at the hash table, and
one for the callbacks.
The callbacks are just for inspection, and custom attributes should be handled carefully because they may be not strings.
Registered attributes values are shown in red when they were changed by the application.
It uses the IupElementPropertiesDialog.

Insert Cursor (since 3.28)
The cursor mark in green is shown only inside a selected container that can receive more children.
In the IupCbox container the cursor is a point, on the other containers the cursor is a vertical or horizontal line accordingly.
Elements can be pasted, created a new one, or dropped in a cursor mark.

Drag & Drop of Elements (since 3.28)
It was possible only to drag & drop controls in the tree.

But now it is possible to drag & drop in the layout too.
When the element is dragged the selection is not changed, when there is a cursor mark in a container is where the drop will occur.
So before dragging an element first select the container you want to drop it, so the cursor mark can be displayed while dragging.
Also like in the tree it is possible to drag a container with all its children.
But there will be no visual feedback of the drag, with the exception of a mouse cursor changed to a "move" symbol.

Inside a IupCbox container the drag &drop is different.
First when dragging immediate children of the IupCbox the change occurs simultaneously and can be visually seen in the layout and in the IupCbox itself if the dialog is visible.
When the IupCbox is not selected the move occurs only from one point to another inside the container, i.e. the hierarchy is not changed, just its position inside the container.
When the IupCbox is selected any element from the IupCbox hierarchy can be moved (re-parent) to be a direct child of the IupCbox.
When another container is selected, and there is a cursor mark the drop will be placed in that container.
Attributes: See also the IupDialog attributes.
DESTROYWHENCLOSED The dialog will be automatically destroyed when closed. Default: Yes.
Callbacks: Check the IupDialog callbacks.
ATTRIBCHANGED_CB Called when an attribute is changed in the Properties dialog. (since 3.28)

function attribchanged_cb(Ihandle ih, atom pName)
ih: identifier of the element that activated the event.
pName: (char*) name of the attribute that changed.
LAYOUTCHANGED_CB Called when the layout is changed. (since 3.28)

function layoutchanged_cb(Ihandle ih, Ihandln elem)
ih: identifier of the element that activated the event.
elem: identifier of the element that changed the layout. Can be NULL.
Example: Just add (eg) IupShow(IupLayoutDialog(dlg)), normally under some suitable trigger such as a button or menu entry, or perhaps (temporarily) right at the top, straight after the main IupShow(dlg), to almost any existing program:

See Also: IupDialog, IupShow, IupShowXY, IupPopup
Expand/Shrink