diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-07-17 21:07:39 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-17 21:07:39 +0200 |
commit | 65a30c587b1f7f2333073cad811f67284977a5f9 (patch) | |
tree | e1aa9829930838d410ff79f674c33f94cf5b066b /src/de/blinkt/openvpn/VPNPreferences.java | |
parent | bf47a367683c1de3ddb9b94fbfa24ad7b43758e6 (diff) |
I really like the action bar, but not using the action bar is even better ;)
Diffstat (limited to 'src/de/blinkt/openvpn/VPNPreferences.java')
-rw-r--r-- | src/de/blinkt/openvpn/VPNPreferences.java | 49 |
1 files changed, 46 insertions, 3 deletions
diff --git a/src/de/blinkt/openvpn/VPNPreferences.java b/src/de/blinkt/openvpn/VPNPreferences.java index a2c8407c..95f39548 100644 --- a/src/de/blinkt/openvpn/VPNPreferences.java +++ b/src/de/blinkt/openvpn/VPNPreferences.java @@ -2,13 +2,18 @@ package de.blinkt.openvpn; import java.util.List; +import android.app.AlertDialog; +import android.content.DialogInterface; import android.os.Bundle; import android.preference.PreferenceActivity; +import android.view.Menu; +import android.view.MenuItem; public class VPNPreferences extends PreferenceActivity { private String mProfileUUID; + private VpnProfile mProfile; public VPNPreferences() { super(); @@ -28,9 +33,9 @@ public class VPNPreferences extends PreferenceActivity { @Override protected void onCreate(Bundle savedInstanceState) { mProfileUUID = getIntent().getStringExtra(getPackageName() + ".profileUUID"); - VpnProfile profile = ProfileManager.get(this,mProfileUUID); - if(profile!=null) { - setTitle(getString(R.string.edit_profile_title, profile.getName())); + mProfile = ProfileManager.get(this,mProfileUUID); + if(mProfile!=null) { + setTitle(getString(R.string.edit_profile_title, mProfile.getName())); } super.onCreate(savedInstanceState); } @@ -51,5 +56,43 @@ public class VPNPreferences extends PreferenceActivity { setResult(RESULT_OK, getIntent()); super.onBackPressed(); } + + @Override + public boolean onOptionsItemSelected(MenuItem item) { + if(item.getItemId() == R.id.remove_vpn) + askProfileRemoval(); + return super.onOptionsItemSelected(item); + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + + getMenuInflater().inflate(R.menu.vpnpreferences_menu, menu); + + return super.onCreateOptionsMenu(menu); + } + + private void askProfileRemoval() { + AlertDialog.Builder dialog = new AlertDialog.Builder(this); + dialog.setTitle("Confirm deletion"); + dialog.setMessage(getString(R.string.remove_vpn_query, mProfile.mName)); + + dialog.setPositiveButton(android.R.string.yes, + new DialogInterface.OnClickListener() { + @Override + public void onClick(DialogInterface dialog, int which) { + removeProfile(mProfile); + } + + }); + dialog.setNegativeButton(android.R.string.no,null); + dialog.create().show(); + } + + protected void removeProfile(VpnProfile profile) { + ProfileManager.getInstance(this).removeProfile(this,profile); + setResult(VPNProfileList.RESULT_VPN_DELETED); + finish(); + } } |