Fixed location combobox not updating properly when a slurl link is clicked. Reset the location combobox when a different grid is selected (added setCurrentGridChangeCallback to hippogridmanager). Moved login panel elements into a layout_stack so hiding the grid or location columns no longer leaves big empty gaps.

This commit is contained in:
Shyotl
2013-07-05 02:28:36 -05:00
parent 624141a31a
commit bbb0bd54bf
12 changed files with 357 additions and 231 deletions

View File

@@ -1,46 +1,48 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel name="panel_login">
<string name="real_url">
http://secondlife.com/app/login/
</string>
<string name="forgot_password_url">
http://secondlife.com/account/request.ph
</string>
<text name="name_label">
Nombre o Usuario:
</text>
<combo_box name="name_combo" />
<text name="password_text">
Contraseña:
</text>
<check_box label="Recordar Nombre" name="remember_name_check"/>
<check_box label="Recordar Contraseña" name="remember_check" width="138" />
<text name="grids_combo_text">
Grid:
</text>
<button name="grids_btn" label="Administrar Grid"/>
<text name="start_location_text" v_pad="0" width="120">
Posición Inicial:
</text>
<combo_box name="start_location_combo" width="155">
<combo_item name="MyHome" value="My Home">
Mi Base
</combo_item>
<combo_item name="MyLastLocation" value="My Last Location">
Mi Última Ubicación
</combo_item>
<combo_item name="Typeregionname">
&lt;Escribe el Nombre de la Región&gt;
</combo_item>
</combo_box>
<button label="Iniciar Sesión" label_selected="Iniciar Sesión" name="connect_btn" width="100" />
<text name="create_new_account_text" width="200">
<layout_stack name="element_stack">
<layout_panel name="name_panel">
<text name="name_label">
Nombre o Usuario:
</text>
<check_box label="Recordar Nombre" name="remember_name_check"/>
</layout_panel>
<layout_panel name="password_panel">
<text name="password_text">
Contraseña:
</text>
<check_box label="Recordar Contraseña" name="remember_check"/>
</layout_panel>
<layout_panel name="grids_panel">
<text name="grids_combo_text">
Grid:
</text>
<button name="grids_btn" label="Administrar Grid"/>
</layout_panel>
<layout_panel name="location_panel">
<text name="start_location_text">
Posición Inicial:
</text>
<combo_box name="start_location_combo">
<combo_item name="MyHome">
Mi Base
</combo_item>
<combo_item name="MyLastLocation">
Mi Última Ubicación
</combo_item>
<combo_item name="Typeregionname">
&lt;Escribe el Nombre de la Región&gt;
</combo_item>
</combo_box>
</layout_panel>
<layout_panel name="connect_panel">
<button label="Iniciar Sesión" label_selected="Iniciar Sesión" name="connect_btn"/>
</layout_panel>
</layout_stack>
<text name="create_new_account_text">
Registrate para obtener una Cuenta
</text>
<text name="forgot_password_text" width="200">
<text name="forgot_password_text">
¿Olvidaste tu Nombre o tu Contraseña?
</text>
<text name="channel_text">
[CHANNEL] [VERSION]
</text>
</panel>