mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
60b1b3ba76
--HG-- extra : rebase_source : 9cd553fedb4e58a6dee437ed0360b6ba5df56c54
62 lines
2.0 KiB
XML
62 lines
2.0 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/. -->
|
|
|
|
<resources>
|
|
|
|
<declare-styleable name="AboutHomeSection">
|
|
<attr name="title" format="string"/>
|
|
<attr name="subtitle" format="string"/>
|
|
<attr name="more_text" format="string"/>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="MenuItem">
|
|
<attr name="android:id"/>
|
|
<attr name="android:orderInCategory"/>
|
|
<attr name="android:title"/>
|
|
<attr name="android:icon"/>
|
|
<attr name="android:checkable"/>
|
|
<attr name="android:checked"/>
|
|
<attr name="android:visible"/>
|
|
<attr name="android:enabled"/>
|
|
<attr name="android:showAsAction"/>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="FlowLayout">
|
|
<attr name="spacing" format="dimension"/>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="MultiChoicePreference">
|
|
<attr name="entries" format="string"/>
|
|
<attr name="entryKeys" format="string"/>
|
|
<attr name="initialValues" format="string"/>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="BrowserToolbarCurve">
|
|
<attr name="curveTowards">
|
|
<flag name="none" value="0x00" />
|
|
<flag name="left" value="0x01" />
|
|
<flag name="right" value ="0x02" />
|
|
</attr>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="TabsButton">
|
|
<attr name="cropped" format="boolean"/>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="TabsPanel">
|
|
<attr name="sidebar" format="boolean"/>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="TextSelectionHandle">
|
|
<attr name="handleType">
|
|
<flag name="start" value="0x01" />
|
|
<flag name="middle" value="0x02" />
|
|
<flag name="end" value="0x03" />
|
|
</attr>
|
|
</declare-styleable>
|
|
|
|
</resources>
|
|
|