]> git.zerfleddert.de Git - ms2-fixes/blob - MS2Debounce/src/de/rmdir/ms2debounce/MS2Debounce.java
add debounce_delay edittext
[ms2-fixes] / MS2Debounce / src / de / rmdir / ms2debounce / MS2Debounce.java
1 package de.rmdir.ms2debounce;
2
3 import android.app.Activity;
4 import android.app.Dialog;
5 import android.app.AlertDialog;
6 import android.os.Bundle;
7 import android.content.Intent;
8 import android.content.DialogInterface;
9 import android.widget.TextView;
10 import android.widget.EditText;
11 import android.widget.Button;
12 import android.widget.CheckBox;
13 import android.view.View;
14 import android.view.Menu;
15 import android.view.MenuInflater;
16 import android.view.MenuItem;
17
18 public class MS2Debounce extends Activity
19 {
20 private DebounceModuleHelper module;
21
22 public MS2Debounce()
23 {
24 super();
25 module = new DebounceModuleHelper(this);
26 }
27
28 @Override
29 public void onCreate(Bundle savedInstanceState)
30 {
31 super.onCreate(savedInstanceState);
32
33 //if (!module.isLoaded()) {
34 // module.loadModule();
35 //}
36
37 setContentView(R.layout.main);
38 updateUI();
39 }
40
41 private void updateUI() {
42 disableUI();
43
44 boolean loaded = module.isLoaded();
45 boolean safe_to_load = module.is_safe_to_load();
46
47 TextView text = (TextView)findViewById(R.id.text);
48 text.setText("Current status:\n\nModule loaded: " + loaded + "\ndebounce_delay: " + module.getDelay() + "ms\nsafe_to_load: " + safe_to_load);
49
50 //EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
51 //textDelay.setText(module.getSavedDelay());
52
53 Button reload = (Button)findViewById(R.id.reload);
54 if (loaded) {
55 reload.setEnabled(true);
56 } else {
57 reload.setEnabled(false);
58 }
59
60 Button load = (Button)findViewById(R.id.load);
61 if (loaded) {
62 load.setEnabled(false);
63 } else {
64 load.setEnabled(true);
65 }
66
67 Button unload = (Button)findViewById(R.id.unload);
68 if (loaded) {
69 unload.setEnabled(true);
70 } else {
71 unload.setEnabled(false);
72 }
73
74 CheckBox on_boot = (CheckBox)findViewById(R.id.on_boot);
75 if (safe_to_load) {
76 on_boot.setEnabled(true);
77 } else {
78 on_boot.setEnabled(false);
79 }
80 }
81
82 private void disableUI() {
83 Button reload = (Button)findViewById(R.id.reload);
84 reload.setEnabled(false);
85
86 Button load = (Button)findViewById(R.id.load);
87 load.setEnabled(false);
88
89 Button unload = (Button)findViewById(R.id.unload);
90 unload.setEnabled(false);
91
92 CheckBox on_boot = (CheckBox)findViewById(R.id.on_boot);
93 on_boot.setEnabled(false);
94 }
95
96 public void loadModule(View view) {
97 disableUI();
98 if (!module.isLoaded()) {
99 module.loadModule();
100 }
101 updateUI();
102 }
103
104 public void unloadModule(View view) {
105 disableUI();
106 if (module.isLoaded()) {
107 module.unloadModule();
108 }
109 updateUI();
110 }
111
112 public void reloadModule(View view) {
113 disableUI();
114 if (module.isLoaded()) {
115 module.unloadModule();
116 }
117 if (!module.isLoaded()) {
118 module.loadModule();
119 }
120 updateUI();
121 }
122
123 @Override
124 public boolean onCreateOptionsMenu(Menu menu) {
125 MenuInflater inflater = getMenuInflater();
126 inflater.inflate(R.menu.main, menu);
127 return true;
128 }
129
130 @Override
131 public boolean onOptionsItemSelected(MenuItem item) {
132 switch (item.getItemId()) {
133 case R.id.about:
134 showDialog(42);
135 return true;
136 default:
137 return super.onOptionsItemSelected(item);
138 }
139 }
140
141 protected Dialog onCreateDialog(int id) {
142 Dialog dlg = null;
143
144 AlertDialog.Builder about = new AlertDialog.Builder(this);
145 about.setMessage("Milestone 2 Debounce\n\n(C) 2011 Michael Gernoth <michael@gernoth.net>\n\nThis 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 version 2 of the License.\n\nThis 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.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA")
146 .setCancelable(true)
147 .setPositiveButton("Ok", new DialogInterface.OnClickListener() {
148 public void onClick(DialogInterface dialog, int id) {
149 dialog.cancel();
150 }
151 });
152 dlg = about.create();
153
154 return dlg;
155 }
156 }
Impressum, Datenschutz