Mini Kabibi Habibi
layout stylesPanel
{
interface:
styleMRUVisible : true;
styleSearchVisible : true;
constant:
zStylesTooltip : '$$$/PresetsPanel/Tooltips/Styles=Styles';
zSearchIcon : 'FilteringLayerSearch';
view TStylesPanel(
name : '$$/StylesPanel/Title=Styles',
height : 240,
width : 232,
margin : [0, -1, 0, -1])
{
column(
horizontal : align_fill,
vertical : align_fill,
spacing : -1)
{
column(
spacing : 8,
horizontal : align_fill,
margin : [ 8, 8, 8, 8 ])
{
TOptional(
bind : @styleSearchVisible,
value : true,
horizontal : align_fill)
{
row(horizontal: align_fill, child_vertical: align_center, spacing: 2)
{
TIconImageView(iconRootName : zSearchIcon);
TEditText (identifier: @styleSearchText,
width : 20,
horizontal : align_fill,
maxChars : 250);
}
}
TOptional(
bind : @styleMRUVisible,
value : true,
horizontal : align_fill)
{
TStyleListView(
identifier : @stylesMRU,
height : 18,
horizontal : align_fill);
}
}
TScroller(
horizontal : align_fill,
vertical : align_fill,
verticalScroll : true)
{
TStyleListView(
identifier : @stylesList,
horizontal : align_fill,
vertical : align_fill);
}
TPresetsPanelIconView(
identifier : @stylesPanelIcons,
height : 25,
horizontal : align_fill);
}
}
}