Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 219 → Rev 235

/DUBwise/tags/v0.51/android/res/drawable/bt_off.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/drawable/bt_on.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/drawable/icon.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/drawable/lcd_green.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/drawable/starfield.jpg
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/layout/connection.xml
0,0 → 1,78
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
 
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Host:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
<EditText android:id="@+id/edit_host"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Port:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<EditText android:id="@+id/edit_port"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
 
 
<CheckBox android:id="@+id/check_autoconn"
android:paddingBottom="24sp"
android:paddingTop="24sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" Auto Connect " />
 
 
<Button android:id="@+id/save_btn"
android:text="Save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
 
<Button android:id="@+id/cancel_btn"
android:text="Cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
 
</ScrollView>
 
 
 
 
 
 
 
/DUBwise/tags/v0.51/android/res/layout/motortest.xml
0,0 → 1,151
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
 
 
<CheckBox android:id="@+id/check_fullspeed"
android:paddingBottom="24sp"
android:paddingTop="24sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Allow Full Speed" />
 
<View
 
android:layout_height="2px"
android:layout_width="fill_parent"
 
android:background="#DDFFDD"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"/>
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Front:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_front"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255"
android:focusable="true"
/>
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Back:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Left:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_left"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Right:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_right"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
 
 
 
<View
 
android:layout_height="2px"
android:layout_width="fill_parent"
 
android:background="#DDFFDD"
android:layout_marginTop="15dip"
android:layout_marginBottom="5dip"/>
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="All:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_all"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
</LinearLayout>
 
</ScrollView>
 
 
 
 
/DUBwise/tags/v0.51/android/res/layout/rcdata.xml
0,0 → 1,216
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick0:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_0"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 1:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_1"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick2:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_2"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 3:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_3"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 4:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_4"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 5:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_5"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 6:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_6"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 7:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_7"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 8:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_8"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 9:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_9"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
</LinearLayout>
 
 
</ScrollView>
 
 
 
 
/DUBwise/tags/v0.51/android/res/layout/settings.xml
0,0 → 1,52
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
 
 
<CheckBox android:id="@+id/check_fullscreen"
android:paddingBottom="24sp"
android:paddingTop="24sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Fullscreen" />
 
<View
 
android:layout_height="2px"
android:layout_width="fill_parent"
 
android:background="#DDFFDD"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"/>
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Front:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
</LinearLayout>
 
</ScrollView>
 
 
 
 
/DUBwise/tags/v0.51/android/res/raw/voice_sample_01.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_02.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_03.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_04.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_05.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_06.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_07.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_08.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_09.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_10.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_11.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_12.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_13.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_komma.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/raw/voice_sample_volt.mp3
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/DUBwise/tags/v0.51/android/res/values/strings.xml
0,0 → 1,10
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">DUBwise</string>
 
<string name="map_menu_zoom_in">Zoom in (Key: I)</string>
<string name="map_menu_zoom_out">Zoom out (Key: O)</string>
<string name="map_menu_back_to_list">Back to list</string>
<string name="map_menu_toggle_street_satellite">Toggle View: Street / Satellite (Key: T)</string>
 
</resources>