36
36
import android.widget.Button;
37
37
import android.widget.CheckBox;
38
38
import android.widget.CompoundButton;
39
import android.widget.LinearLayout;
40
39
import android.widget.ProgressBar;
41
40
import android.widget.TextView;
42
41
import android.widget.Toast;
67
66
public final static int ACTION_MERGE_MERGE = 2;
68
67
public final static int ACTION_OVERWRITE = 3;
69
public final static int NEXT_BEGIN = 0;
70
public final static int NEXT_CLOSE = 1;
70
72
private boolean _startedProgress;
71
73
private int _maxProgress;
72
74
private int _tmpProgress;
74
76
protected String _dialogMessage;
75
77
private Dialog _mergePromptDialog;
76
78
private boolean _mergePromptAlwaysSelected;
79
private int _nextAction;
78
81
private int _countOverwrites;
79
82
private int _countCreates;
95
98
setVisibility( View.VISIBLE );
97
100
case MESSAGE_FINISHED:
98
( (LinearLayout)findViewById( R.id.doit_closedisplay ) ).
99
setVisibility( View.VISIBLE );
101
updateNext( NEXT_CLOSE );
102
findViewById( R.id.doit_abort_disp ).setVisibility(
101
105
case MESSAGE_FINISHED_GOBACK:
102
106
( (Button)findViewById( R.id.back ) ).setEnabled( true );
107
findViewById( R.id.doit_abort_disp ).setVisibility(
104
110
case MESSAGE_ERROR:
105
111
Doit.this._dialogMessage = (String)msg.obj;
116
122
case MESSAGE_SETMAXPROGRESS:
117
123
if( _maxProgress > 0 ) {
118
if( _tmpProgress == _maxProgress )
124
if( _tmpProgress == _maxProgress - 1 )
119
125
_tmpProgress = (Integer)msg.obj;
120
if( _progress == _maxProgress )
126
if( _progress == _maxProgress - 1 )
121
127
_progress = (Integer)msg.obj;
123
129
_maxProgress = (Integer)msg.obj;
168
174
( findViewById( R.id.doit_page_2 ) ).setVisibility( View.GONE );
170
// set up begin button
171
Button begin = (Button)findViewById( R.id.doit_begin );
176
// set up abort button
177
Button begin = (Button)findViewById( R.id.abort );
172
178
begin.setOnClickListener( new View.OnClickListener() {
173
179
public void onClick( View view ) {
178
// set up close button
179
Button close = (Button)findViewById( R.id.doit_close );
180
close.setOnClickListener( new View.OnClickListener() {
181
public void onClick( View view ) {
182
setResult( RESULT_CANCELED );
273
268
setOnClickListener( _mergePromptButtonListener );
274
269
( (Button)dialogView.findViewById( R.id.merge_merge ) ).
275
270
setOnClickListener( _mergePromptButtonListener );
271
( (Button)dialogView.findViewById( R.id.abort ) ).
272
setOnClickListener( _mergePromptButtonListener );
276
273
_mergePromptAlwaysSelected = false;
277
274
return new AlertDialog.Builder( this )
278
275
.setIcon( R.drawable.alert_dialog_icon )
287
284
private OnClickListener _mergePromptButtonListener = new OnClickListener() {
288
public void onClick( View view ) {
289
int responseExtra = _mergePromptAlwaysSelected?
290
Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
285
public void onClick( View view )
288
if( view.getId() == R.id.abort )
293
int responseExtra = _mergePromptAlwaysSelected?
294
Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
295
Doit.this._importer.wake( convertIdToAction( view.getId() ),
299
// close dialog and free (don't keep a reference)
291
300
Doit.this._mergePromptDialog.dismiss();
292
Doit.this._mergePromptDialog = null; // don't keep a reference!
293
Doit.this._importer.wake( convertIdToAction( view.getId() ),
301
Doit.this._mergePromptDialog = null;
306
protected void onNext()
308
Button next = (Button)findViewById( R.id.next );
309
next.setEnabled( false );
311
switch( _nextAction )
317
setResult( RESULT_CANCELED );
323
private void manualAbort()
325
abortImport( false );
326
updateNext( NEXT_CLOSE );
327
( (Button)findViewById( R.id.back ) ).setEnabled( true );
328
findViewById( R.id.doit_abort_disp ).setVisibility( View.GONE );
331
private void updateNext( int nextAction )
333
Button next = (Button)findViewById( R.id.next );
334
switch( nextAction ) {
335
case NEXT_BEGIN: next.setText( R.string.doit_begin ); break;
336
case NEXT_CLOSE: next.setText( R.string.doit_close ); break;
338
next.setEnabled( true );
339
_nextAction = nextAction;
298
342
public static int convertIdToAction( int id ) {
300
344
case R.id.merge_keep: return ACTION_KEEP;
419
463
// notify the user
420
Toast.makeText( this, R.string.doit_importaborted,
421
Toast.LENGTH_LONG ).show();
464
if( showToasterPopup )
465
Toast.makeText( this, R.string.doit_importaborted,
466
Toast.LENGTH_LONG ).show();
470
// destroy some stuff