mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
133 lines
6.1 KiB
XML
133 lines
6.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/browser_toolbar"
|
|
style="@style/BrowserToolbar">
|
|
|
|
<RelativeLayout android:id="@+id/address_bar"
|
|
style="@style/AddressBar"
|
|
android:background="@drawable/address_bar_bg">
|
|
|
|
<ImageButton android:id="@+id/back"
|
|
android:contentDescription="@string/back"
|
|
style="@style/AddressBar.ImageButton.Unused"/>
|
|
|
|
<ImageButton android:id="@+id/forward"
|
|
android:contentDescription="@string/forward"
|
|
style="@style/AddressBar.ImageButton.Unused"/>
|
|
|
|
<LinearLayout android:id="@+id/menu_items"
|
|
android:layout_width="0dip"
|
|
android:layout_height="0dip"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView android:id="@+id/spacer"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="50dip"
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
<ImageButton android:id="@+id/tabs"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="72dip"
|
|
android:layout_alignParentRight="true"
|
|
android:background="@drawable/tabs_button"
|
|
android:gravity="center_vertical"
|
|
android:src="@drawable/tabs_level"
|
|
android:paddingLeft="38dip"
|
|
android:paddingRight="10dip"/>
|
|
|
|
<TextSwitcher android:id="@+id/tabs_count"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="44.5dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_alignRight="@id/tabs"
|
|
android:gravity="center_horizontal"/>
|
|
|
|
<ImageButton android:id="@+id/menu"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="@dimen/browser_toolbar_height"
|
|
android:layout_toLeftOf="@id/spacer"
|
|
android:gravity="center_vertical"
|
|
android:src="@drawable/menu"
|
|
android:contentDescription="@string/menu"
|
|
android:background="@drawable/action_bar_button"
|
|
android:paddingLeft="12dip"
|
|
android:paddingRight="12dip"
|
|
android:visibility="gone"/>
|
|
|
|
<Button android:id="@+id/awesome_bar"
|
|
style="@style/AddressBar.Button"
|
|
android:layout_width="fill_parent"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_toLeftOf="@id/menu"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/address_bar_url"
|
|
android:singleLine="true"
|
|
android:gravity="center_vertical|left"
|
|
android:hint="@string/awesomebar_default_text"
|
|
android:textColor="#222222"
|
|
android:paddingLeft="41dip"
|
|
android:paddingRight="10dip"/>
|
|
|
|
<ImageButton android:id="@+id/favicon"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="21.33dip"
|
|
android:layout_height="21.33dip"
|
|
android:layout_marginLeft="10dip"
|
|
android:layout_centerVertical="true"
|
|
android:src="@drawable/favicon"
|
|
android:layout_alignLeft="@id/awesome_bar"/>
|
|
|
|
<LinearLayout android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dip"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignRight="@id/awesome_bar"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageButton android:id="@+id/reader"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="24dip"
|
|
android:layout_height="24dip"
|
|
android:src="@drawable/reader"
|
|
android:contentDescription="@string/reader_mode"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageButton android:id="@+id/site_security"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="24dip"
|
|
android:layout_height="24dip"
|
|
android:src="@drawable/site_security_level"
|
|
android:contentDescription="@string/site_security"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageButton android:id="@+id/stop"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="24dip"
|
|
android:layout_height="24dip"
|
|
android:src="@drawable/urlbar_stop"
|
|
android:contentDescription="@string/stop"
|
|
android:visibility="gone"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView android:id="@+id/shadow"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="2dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@drawable/address_bar_bg_shadow_repeat"
|
|
android:visibility="gone"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|