[3/3] OmniGears: OmniSwitch integration bits
Change-Id: I52091ba079d8a3ba7738d95bec27a2d3f92f7442
diff --git a/res/drawable/ic_settings_power.xml b/res/drawable/ic_settings_power.xml
new file mode 100644
index 0000000..babd1be
--- /dev/null
+++ b/res/drawable/ic_settings_power.xml
@@ -0,0 +1,25 @@
+<!--
+ Copyright (C) 2016 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24.0dp"
+ android:height="24.0dp"
+ android:viewportHeight="24.0"
+ android:viewportWidth="24.0"
+ android:tint="?attr/colorControlNormal">
+ <path
+ android:fillColor="#FF000000"
+ android:pathData="M13.0,3.0l-2.0,0.0l0.0,10.0l2.0,0.0L13.0,3.0zm4.83,2.17l-1.42,1.42C17.99,7.86 19.0,9.81 19.0,12.0c0.0,3.87 -3.13,7.0 -7.0,7.0s-7.0,-3.13 -7.0,-7.0c0.0,-2.19 1.01,-4.14 2.58,-5.42L6.17,5.17C4.23,6.82 3.0,9.26 3.0,12.0c0.0,4.97 4.03,9.0 9.0,9.0s9.0,-4.03 9.0,-9.0c0.0,-2.74 -1.23,-5.18 -3.17,-6.83z"/>
+</vector>
diff --git a/res/values/custom_arrays.xml b/res/values/custom_arrays.xml
index 46dd69a..281e25c 100644
--- a/res/values/custom_arrays.xml
+++ b/res/values/custom_arrays.xml
@@ -137,13 +137,13 @@
<string-array name="navbar_recents_style_entries" translatable="false">
<item>@string/keys_action_app_switch_card</item>
- <item>@string/keys_action_app_switch_grid</item>
+ <!--<item>@string/keys_action_app_switch_grid</item>-->
<item>@string/keys_action_omniswitch_short</item>
</string-array>
<string-array name="navbar_recents_style_values" translatable="false">
<item>0</item>
- <item>2</item>
+ <!--<item>2</item>-->
<item>1</item>
</string-array>
diff --git a/res/xml/button_settings.xml b/res/xml/button_settings.xml
new file mode 100644
index 0000000..5272260
--- /dev/null
+++ b/res/xml/button_settings.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2017 The OmniROM Project
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ -->
+<!-- Copyright (C) 2012 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
+
+ <PreferenceCategory
+ android:key="button_other"
+ android:title="@string/button_other_title" >
+ <ListPreference
+ android:key="navbar_recents_style"
+ android:title="@string/navbar_recents_style_title"
+ android:entries="@array/navbar_recents_style_entries"
+ android:entryValues="@array/navbar_recents_style_values"
+ android:persistent="false"/>
+ <ListPreference
+ android:key="long_press_recents_action"
+ android:title="@string/long_press_recents_action_title"
+ android:entries="@array/long_press_recents_action_entries"
+ android:entryValues="@array/long_press_recents_action_values"
+ android:persistent="false"/>
+ <PreferenceScreen
+ android:key="global_actions"
+ android:title="@string/global_actions_title"
+ android:summary="@string/global_actions_summary"
+ android:icon="@drawable/ic_settings_power"
+ android:fragment="org.omnirom.omnigears.interfacesettings.GlobalActionsSettings" />
+ </PreferenceCategory>
+</PreferenceScreen>
diff --git a/src/org/omnirom/omnigears/ButtonSettings.java b/src/org/omnirom/omnigears/ButtonSettings.java
new file mode 100644
index 0000000..ad70934
--- /dev/null
+++ b/src/org/omnirom/omnigears/ButtonSettings.java
@@ -0,0 +1,167 @@
+/*
+ * Copyright (C) 2017 The OmniROM Project
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+*/
+package org.omnirom.omnigears;
+
+import android.app.AlertDialog;
+import android.content.ContentResolver;
+import android.content.res.Resources;
+import android.content.Context;
+import android.content.DialogInterface;
+import android.os.Bundle;
+import android.support.v7.preference.ListPreference;
+import android.support.v7.preference.Preference;
+import android.support.v7.preference.Preference.OnPreferenceChangeListener;
+import android.support.v7.preference.ListPreference;
+import android.provider.SearchIndexableResource;
+import android.provider.Settings;
+
+import java.util.List;
+import java.util.ArrayList;
+
+import com.android.settings.SettingsPreferenceFragment;
+import com.android.settings.Utils;
+import com.android.settings.SettingsPreferenceFragment;
+import com.android.settings.dashboard.SummaryLoader;
+import com.android.settings.search.BaseSearchIndexProvider;
+import com.android.settings.search.Indexable;
+
+import com.android.internal.util.omni.OmniSwitchConstants;
+import com.android.internal.util.omni.PackageUtils;
+
+public class ButtonSettings extends SettingsPreferenceFragment implements OnPreferenceChangeListener, Indexable {
+
+ private static final String NAVIGATION_BAR_RECENTS_STYLE = "navbar_recents_style";
+ private static final String LONG_PRESS_RECENTS_ACTION = "long_press_recents_action";
+
+ private ListPreference mNavbarRecentsStyle;
+ private ListPreference mLongPressRecentsAction;
+
+ @Override
+ public int getMetricsCategory() {
+ return OmniDashboardFragment.ACTION_SETTINGS_OMNI;
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ addPreferencesFromResource(R.xml.button_settings);
+
+ final ContentResolver resolver = getContentResolver();
+
+ mNavbarRecentsStyle = (ListPreference) findPreference(NAVIGATION_BAR_RECENTS_STYLE);
+ int recentsStyle = Settings.System.getInt(resolver,
+ Settings.System.NAVIGATION_BAR_RECENTS, 0);
+
+ mNavbarRecentsStyle.setValue(Integer.toString(recentsStyle));
+ mNavbarRecentsStyle.setSummary(mNavbarRecentsStyle.getEntry());
+ mNavbarRecentsStyle.setOnPreferenceChangeListener(this);
+
+ mLongPressRecentsAction = (ListPreference) findPreference(LONG_PRESS_RECENTS_ACTION);
+ int longPressRecentsAction = Settings.System.getInt(resolver,
+ Settings.System.BUTTON_LONG_PRESS_RECENTS, 0);
+
+ mLongPressRecentsAction.setValue(Integer.toString(longPressRecentsAction));
+ mLongPressRecentsAction.setSummary(mLongPressRecentsAction.getEntry());
+ mLongPressRecentsAction.setOnPreferenceChangeListener(this);
+ }
+
+ @Override
+ public boolean onPreferenceTreeClick(Preference preference) {
+ return super.onPreferenceTreeClick(preference);
+ }
+
+ public boolean onPreferenceChange(Preference preference, Object newValue) {
+ if (preference == mNavbarRecentsStyle) {
+ int value = Integer.valueOf((String) newValue);
+ if (value == 1) {
+ if (!isOmniSwitchInstalled()){
+ doOmniSwitchUnavail();
+ } else if (!OmniSwitchConstants.isOmniSwitchRunning(getActivity())) {
+ doOmniSwitchConfig();
+ }
+ }
+ int index = mNavbarRecentsStyle.findIndexOfValue((String) newValue);
+ mNavbarRecentsStyle.setSummary(mNavbarRecentsStyle.getEntries()[index]);
+ Settings.System.putInt(getContentResolver(), Settings.System.NAVIGATION_BAR_RECENTS, value);
+ return true;
+ } else if (preference == mLongPressRecentsAction) {
+ int value = Integer.valueOf((String) newValue);
+ int index = mLongPressRecentsAction.findIndexOfValue((String) newValue);
+ mLongPressRecentsAction.setSummary(mLongPressRecentsAction.getEntries()[index]);
+ Settings.System.putInt(getContentResolver(), Settings.System.BUTTON_LONG_PRESS_RECENTS, value);
+ return true;
+ }
+ return false;
+ }
+
+ private void checkForOmniSwitchRecents() {
+ if (!isOmniSwitchInstalled()){
+ doOmniSwitchUnavail();
+ } else if (!OmniSwitchConstants.isOmniSwitchRunning(getActivity())) {
+ doOmniSwitchConfig();
+ }
+ }
+
+ private void doOmniSwitchConfig() {
+ AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getActivity());
+ alertDialogBuilder.setTitle(R.string.omniswitch_title);
+ alertDialogBuilder.setMessage(R.string.omniswitch_dialog_running_new)
+ .setPositiveButton(R.string.omniswitch_settings, new DialogInterface.OnClickListener() {
+ public void onClick(DialogInterface dialog,int id) {
+ startActivity(OmniSwitchConstants.INTENT_LAUNCH_APP);
+ }
+ });
+ AlertDialog alertDialog = alertDialogBuilder.create();
+ alertDialog.show();
+ }
+
+ private void doOmniSwitchUnavail() {
+ AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getActivity());
+ alertDialogBuilder.setTitle(R.string.omniswitch_title);
+ alertDialogBuilder.setMessage(R.string.omniswitch_dialog_unavail);
+ AlertDialog alertDialog = alertDialogBuilder.create();
+ alertDialog.show();
+ }
+
+ private boolean isOmniSwitchInstalled() {
+ return PackageUtils.isAvailableApp(OmniSwitchConstants.APP_PACKAGE_NAME, getActivity());
+ }
+
+ public static final Indexable.SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
+ new BaseSearchIndexProvider() {
+ @Override
+ public List<SearchIndexableResource> getXmlResourcesToIndex(Context context,
+ boolean enabled) {
+ ArrayList<SearchIndexableResource> result =
+ new ArrayList<SearchIndexableResource>();
+
+ SearchIndexableResource sir = new SearchIndexableResource(context);
+ sir.xmlResId = R.xml.button_settings;
+ result.add(sir);
+
+ return result;
+ }
+
+ @Override
+ public List<String> getNonIndexableKeys(Context context) {
+ ArrayList<String> result = new ArrayList<String>();
+ return result;
+ }
+ };
+}