summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/trebuchet/widget
diff options
context:
space:
mode:
authornebkat <nebkat@teamhacksung.org>2012-12-22 10:46:58 +0000
committernebkat <nebkat@teamhacksung.org>2012-12-22 20:10:14 +0000
commit1a9d397e9d8f432d6a8acfc96a6378cff57e753a (patch)
tree7581c076b96e3265592a209c8072b90e79005394 /src/com/cyanogenmod/trebuchet/widget
parent229ac203294898445ce64e2f9ccd2163d681c276 (diff)
downloadpackages_apps_trebuchet-1a9d397e9d8f432d6a8acfc96a6378cff57e753a.zip
packages_apps_trebuchet-1a9d397e9d8f432d6a8acfc96a6378cff57e753a.tar.gz
packages_apps_trebuchet-1a9d397e9d8f432d6a8acfc96a6378cff57e753a.tar.bz2
AppsCustomizePagedView: Filtering
Change-Id: I829fc4b1a54e348d3c13da602d133dc20d315cca
Diffstat (limited to 'src/com/cyanogenmod/trebuchet/widget')
-rw-r--r--src/com/cyanogenmod/trebuchet/widget/CheckableLinearLayout.java50
-rw-r--r--src/com/cyanogenmod/trebuchet/widget/InertCheckBox.java69
2 files changed, 119 insertions, 0 deletions
diff --git a/src/com/cyanogenmod/trebuchet/widget/CheckableLinearLayout.java b/src/com/cyanogenmod/trebuchet/widget/CheckableLinearLayout.java
new file mode 100644
index 0000000..0e87f80
--- /dev/null
+++ b/src/com/cyanogenmod/trebuchet/widget/CheckableLinearLayout.java
@@ -0,0 +1,50 @@
+package com.cyanogenmod.trebuchet.widget;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.widget.CheckBox;
+import android.widget.Checkable;
+import android.widget.LinearLayout;
+
+import com.cyanogenmod.trebuchet.R;
+
+/*
+ * This class is useful for using inside of ListView that needs to have checkable items.
+ */
+public class CheckableLinearLayout extends LinearLayout implements Checkable {
+ private CheckBox mCheckBox;
+
+ public CheckableLinearLayout(Context context) {
+ super(context);
+ }
+
+ public CheckableLinearLayout(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ public CheckableLinearLayout(Context context, AttributeSet attrs, int defStyle) {
+ super(context, attrs, defStyle);
+ }
+
+ @Override
+ protected void onFinishInflate() {
+ super.onFinishInflate();
+
+ mCheckBox = (CheckBox) findViewById(R.id.checkbox);
+ }
+
+ @Override
+ public boolean isChecked() {
+ return mCheckBox.isChecked();
+ }
+
+ @Override
+ public void setChecked(boolean checked) {
+ mCheckBox.setChecked(checked);
+ }
+
+ @Override
+ public void toggle() {
+ mCheckBox.toggle();
+ }
+} \ No newline at end of file
diff --git a/src/com/cyanogenmod/trebuchet/widget/InertCheckBox.java b/src/com/cyanogenmod/trebuchet/widget/InertCheckBox.java
new file mode 100644
index 0000000..bab357b
--- /dev/null
+++ b/src/com/cyanogenmod/trebuchet/widget/InertCheckBox.java
@@ -0,0 +1,69 @@
+package com.cyanogenmod.trebuchet.widget;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.KeyEvent;
+import android.view.MotionEvent;
+import android.widget.CheckBox;
+
+
+// CheckBox that does not react to any user event in order to let the container handle them.
+public class InertCheckBox extends CheckBox {
+
+ @SuppressWarnings("unused")
+ public InertCheckBox(Context context) {
+ super(context);
+ }
+
+ @SuppressWarnings("unused")
+ public InertCheckBox(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ @SuppressWarnings("unused")
+ public InertCheckBox(Context context, AttributeSet attrs, int defStyle) {
+ super(context, attrs, defStyle);
+ }
+
+ @Override
+ public boolean onTouchEvent(MotionEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+
+ @Override
+ public boolean onKeyDown(int keyCode, KeyEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+
+ @Override
+ public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+
+ @Override
+ public boolean onKeyPreIme(int keyCode, KeyEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+
+ @Override
+ public boolean onKeyShortcut(int keyCode, KeyEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+
+ @Override
+ public boolean onKeyUp(int keyCode, KeyEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+
+ @Override
+ public boolean onTrackballEvent(MotionEvent event) {
+ // Make the checkbox not respond to any user event
+ return false;
+ }
+} \ No newline at end of file