auth-portlet-manager/src/main/java/org/gcube/portlets/admin/authportletmanager/client/pagelayout/DialogAddMultipleCallerServ...

105 lines
3.0 KiB
XML

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui' xmlns:b="urn:import:com.github.gwtbootstrap.client.ui"
xmlns:i="urn:import:com.github.gwtbootstrap.client.ui.incubator"
xmlns:bi="urn:import:org.gcube.portlets.admin.authportletmanager.client.widget">
<ui:style>
.panel {
background-color: #d9e2e8;
padding: 10px;
border-left: 2px solid #888;
border-right: 2px solid #888;
border-bottom: 2px solid #888;
}
.panel_text {
background-color: #F3F7FB;
border-radius: 4px;
border: 1px solid #ccc;
padding: 10px;
}
.panel_center {
margin-left: 10px;
margin-right: 10px;
}
.panel_right {
margin-top: 20px;
height: 200px;
}
.r_loader_space {
margin-top: 10px;
text-align: center;
height: 30px;
width: auto;
}
.footer_dialog {
text-align: right;
margin-top: 20px;
}
.button_dialog {
margin-left: 10px;
}
.row_element {
margin-top: 10px;
}
</ui:style>
<g:FlowPanel styleName="{style.panel}">
<b:FluidRow>
<b:Column size="12">
<g:FlowPanel styleName="{style.panel_text}">
<g:HorizontalPanel>
<g:cell verticalAlignment="ALIGN_MIDDLE">
<g:VerticalPanel ui:field="leftPanel">
<b:Label ui:field="leftPanelLabel" />
<b:Row styleName="{style.row_element}">
<b:ControlLabel>Service Class</b:ControlLabel>
<b:ListBox ui:field="l_service_class_policy">
</b:ListBox>
</b:Row>
<b:Row styleName="{style.row_element}">
<b:ControlLabel>Service Name</b:ControlLabel>
<b:ListBox ui:field="l_service_name_policy">
</b:ListBox>
</b:Row>
<b:Row styleName="{style.row_element}">
<b:ControlLabel>Service Id</b:ControlLabel>
<b:ListBox ui:field="l_service_id_policy">
</b:ListBox>
</b:Row>
</g:VerticalPanel>
</g:cell>
<g:cell verticalAlignment="ALIGN_MIDDLE">
<g:VerticalPanel ui:field="buttonPanel"
styleName="{style.panel_center}">
<b:Button ui:field="toRightButton" name="toRight" text=">" />
<b:Button ui:field="allToLeftButton" name="toRight"
text="&lt;&lt;" />
<b:Button ui:field="toLeftButton" name="toLeft" text="&lt;" />
</g:VerticalPanel>
</g:cell>
<g:cell verticalAlignment="ALIGN_MIDDLE">
<g:VerticalPanel ui:field="rightPanel" styleName="{style.panel_right}">
<b:Label ui:field="rightPanelLabel" />
</g:VerticalPanel>
</g:cell>
</g:HorizontalPanel>
</g:FlowPanel>
</b:Column>
</b:FluidRow>
<b:FluidRow>
<b:Column size="12" addStyleNames='{style.footer_dialog}'>
<b:Button ui:field="b_add_caller" type="PRIMARY"
addStyleNames='{style.button_dialog}'>Add</b:Button>
<b:Button ui:field="b_exit_dialog_caller" type="DANGER"
addStyleNames='{style.button_dialog}'>Close</b:Button>
</b:Column>
</b:FluidRow>
</g:FlowPanel>
</ui:UiBinder>