Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e6cfa07 authored by Steve Kondik's avatar Steve Kondik Committed by Zhao Wei Liew
Browse files

cmparts: Cleanup on aisle 9

 * Stop dumping shit into the top level of the package and relocate it
   to the widgets directory
 * Removed a few unused things

Change-Id: I19f2a2fadfd38dcc24a4de2de988f11056124cbb
parent 07703234
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -28,7 +28,8 @@
            android:layout_width="match_parent"
            android:layout_weight="1">

        <org.cyanogenmod.cmparts.SwitchBar android:id="@+id/switch_bar"
        <org.cyanogenmod.cmparts.widget.SwitchBar
            android:id="@+id/switch_bar"
                  android:layout_height="?android:attr/actionBarSize"
                  android:layout_width="match_parent"
                  android:background="@drawable/switchbar_background"
+6 −3
Original line number Diff line number Diff line
@@ -37,7 +37,8 @@
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/color_red_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/color_red_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/color_red_text"
@@ -59,7 +60,8 @@
                android:layout_below="@id/color_red_seekbar"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/color_green_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/color_green_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/color_green_text"
@@ -81,7 +83,8 @@
                android:layout_below="@id/color_green_seekbar"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/color_blue_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/color_blue_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/color_blue_text"
+8 −4
Original line number Diff line number Diff line
@@ -37,7 +37,8 @@
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/adj_hue_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/adj_hue_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/adj_hue_text"
@@ -59,7 +60,8 @@
                android:layout_below="@id/adj_hue_seekbar"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/adj_saturation_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/adj_saturation_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/adj_saturation_text"
@@ -81,7 +83,8 @@
                android:layout_below="@id/adj_saturation_seekbar"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/adj_intensity_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/adj_intensity_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/adj_intensity_text"
@@ -103,7 +106,8 @@
                android:layout_below="@id/adj_intensity_seekbar"
                android:layout_alignParentRight="true"
                android:paddingTop="10dip" />
        <org.cyanogenmod.cmparts.IntervalSeekBar android:id="@+id/adj_contrast_seekbar"
        <org.cyanogenmod.cmparts.widget.IntervalSeekBar
            android:id="@+id/adj_contrast_seekbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/adj_contrast_text"
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@

        <include layout="@layout/loading_container" />

        <org.cyanogenmod.cmparts.FloatingActionButton
        <org.cyanogenmod.cmparts.widget.FloatingActionButton
            android:id="@+id/fab"
            android:visibility="gone"
            android:clickable="true"
+2 −1
Original line number Diff line number Diff line
@@ -30,7 +30,8 @@
              android:textColor="@color/switchbar_text_color"
              android:textAlignment="viewStart" />

    <org.cyanogenmod.cmparts.ToggleSwitch android:id="@+id/switch_widget"
    <org.cyanogenmod.cmparts.widget.ToggleSwitch
        android:id="@+id/switch_widget"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
Loading