<?xml version="1.0" encoding="utf-8"?>
<!--
  ownCloud Android client application

  Copyright (C) 2012  Bartek Przybylski
  Copyright (C) 2012-2013 ownCloud Inc.

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License version 2,
  as published by the Free Software Foundation.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/login_background_color"
	android:padding="8dip"
    >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/bottom_block"
        android:layout_alignParentTop="true"
        android:orientation="horizontal" >
        
		<ImageView
			android:id="@+id/imageView1"
			android:layout_width="0dp"
			android:layout_height="wrap_content"
			android:layout_weight="1"
			android:layout_gravity="center"
			android:background="@color/login_logo_background_color"
			android:src="@drawable/logo" 
			/>
		
		<ScrollView
		    android:layout_width="0dp"
		    android:layout_height="match_parent"
		    android:layout_weight="1"
		    android:id="@+id/scroll"
		    android:fillViewport="true"
		    android:orientation="vertical" >
						
			<LinearLayout
			    android:id="@+id/LinearLayout1"
			    android:layout_width="match_parent"
			    android:layout_height="wrap_content"
			    android:gravity="center"
			    android:orientation="vertical"
			    android:padding="8dp" >
			    
				<Button
				    android:id="@+id/centeredRefreshButton"
				    android:layout_width="wrap_content"
				    android:layout_height="wrap_content"
				    android:layout_gravity="center_horizontal"
					android:layout_marginBottom="10dp"
            		android:onClick="onRefreshClick"
				    android:text="@string/auth_check_server"
				    android:visibility="gone" />
				<TextView
				    android:id="@+id/auth_message"
				    android:layout_width="wrap_content"
				    android:layout_height="wrap_content"
				    android:layout_gravity="fill_horizontal"
				    android:text="@string/auth_expired_basic_auth_toast" 
				    android:visibility="gone"
				    android:layout_marginBottom="10dp"/>
			    <FrameLayout 
	        		android:id="@+id/hostUrlFrame"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:layout_marginBottom="10dp"
			        >
					<EditText
						android:id="@+id/hostUrlInput"
						android:layout_width="match_parent"
						android:layout_height="wrap_content"
						android:layout_gravity="bottom"
						android:hint="@string/auth_host_url"
						android:inputType="textUri"
						android:drawablePadding="5dp"
						android:paddingRight="55dp"
						>
						<requestFocus />
					</EditText>
					<ImageButton
					    android:id="@+id/embeddedRefreshButton"
					    android:layout_width="48dp"
					    android:layout_height="48dp"
					    android:layout_gravity="center_vertical|right"
					    android:layout_marginRight="5dp"
					    android:padding="0dp"
					    android:scaleType="fitCenter"
					    android:src="@drawable/ic_action_refresh_black"
            			android:onClick="onRefreshClick"
					    android:visibility="gone"
						android:background="@android:color/transparent"
					    />
				</FrameLayout>
		
				<TextView
					android:id="@+id/server_status_text"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:layout_marginBottom="10dp"
					android:drawableLeft="@android:drawable/stat_notify_sync"
					android:drawablePadding="5dp"
					android:gravity="center_vertical"
					android:text="@string/auth_testing_connection" />
		             
				<CheckBox
					android:id="@+id/oauth_onOff_check"
					android:layout_width="wrap_content"
					android:layout_height="wrap_content"
					android:checked="false"
					android:onClick="onCheckClick"
					android:text="@string/oauth_check_onoff"
					android:textAppearance="?android:attr/textAppearanceSmall"
					/>
		
				<EditText
					android:id="@+id/oAuthEntryPoint_1"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:ems="10"
					android:enabled="false"
					android:text="@string/oauth2_url_endpoint_auth"
					android:singleLine="true"
					android:inputType="textUri"
					android:visibility="gone" >
				</EditText>            
				
				<EditText
					android:id="@+id/oAuthEntryPoint_2"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:ems="10"
					android:enabled="false"
					android:text="@string/oauth2_url_endpoint_access"
					android:singleLine="true"
					android:inputType="textUri"
					android:visibility="gone" >
					<requestFocus />
				</EditText>            
		
				<EditText
					android:id="@+id/account_username"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:ems="10"
					android:hint="@string/auth_username"
					android:inputType="textNoSuggestions" />
		
				<EditText
				    android:id="@+id/account_password"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:ems="10"
					android:hint="@string/auth_password"
					android:inputType="textPassword"
					android:drawablePadding="5dp"
					/>
		        
				<TextView
					android:id="@+id/auth_status_text"
					android:layout_width="match_parent"
					android:layout_height="wrap_content"
					android:gravity="center_vertical"
					android:text="@string/auth_unauthorized"
					android:drawableLeft="@android:drawable/stat_notify_sync"
					android:drawablePadding="5dip"
					/>

			</LinearLayout>
		
		</ScrollView>
						           
	</LinearLayout>
       
    <LinearLayout
        android:id="@id/bottom_block"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
		android:layout_alignParentBottom="true"
        android:orientation="vertical" >
        
		<Button
		    android:id="@+id/buttonOK"
		    android:layout_width="match_parent"
		    android:layout_height="wrap_content"
		    android:layout_gravity="center_horizontal"
		    android:enabled="false"
		    android:onClick="onOkClick"
		    android:text="@string/setup_btn_connect" />
		
		<Button
		    android:id="@+id/welcome_link"
		    android:layout_width="wrap_content"
		    android:layout_height="wrap_content"
		    android:layout_gravity="center_horizontal"
		    android:background="@android:color/transparent"
		    android:onClick="onRegisterClick"
		    android:paddingBottom="5dp"
		    android:paddingTop="5dp"
		    android:text="@string/auth_register"
		    android:textColor="#0000FF"/>
	</LinearLayout>
		
</RelativeLayout>
