/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/importcontacts/Doit.java

  • Committer: edam
  • Date: 2009-01-28 19:55:17 UTC
  • Revision ID: edam@waxworlds.org-20090128195517-z1rmmys8tc8zvgqe
- made behaviour of next button overridable
- added abort button to merge prompt
- moved begin and close buttons to the next button, iverriding its behaviour
- added abort button to import and wired it up
- bugfix: tmp-progress bar didn't fill up when progress max was changed

Show diffs side-by-side

added added

removed removed

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;
62
61
        public final static int MESSAGE_CONTACTMERGED = 12;
63
62
        public final static int MESSAGE_CONTACTSKIPPED = 13;
64
63
 
 
64
        public final static int ACTION_PROMPT = 0;
 
65
        public final static int ACTION_KEEP = 1;
 
66
        public final static int ACTION_MERGE_MERGE = 2;
 
67
        public final static int ACTION_OVERWRITE = 3;
 
68
 
 
69
        public final static int NEXT_BEGIN = 0;
 
70
        public final static int NEXT_CLOSE = 1;
 
71
 
65
72
        private boolean _startedProgress;
66
73
        private int _maxProgress;
67
74
        private int _tmpProgress;
69
76
        protected String _dialogMessage;
70
77
        private Dialog _mergePromptDialog;
71
78
        private boolean _mergePromptAlwaysSelected;
 
79
        private int _nextAction;
72
80
 
73
81
        private int _countOverwrites;
74
82
        private int _countCreates;
90
98
                                                setVisibility( View.VISIBLE );
91
99
                                // fall through
92
100
                        case MESSAGE_FINISHED:
93
 
                                ( (LinearLayout)findViewById( R.id.doit_closedisplay ) ).
94
 
                                                setVisibility( View.VISIBLE );
 
101
                                updateNext( NEXT_CLOSE );
 
102
                                findViewById( R.id.doit_abort_disp ).setVisibility(
 
103
                                                View.GONE );
95
104
                                break;
96
105
                        case MESSAGE_FINISHED_GOBACK:
97
106
                                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
 
107
                                findViewById( R.id.doit_abort_disp ).setVisibility(
 
108
                                                View.GONE );
98
109
                                break;
99
110
                        case MESSAGE_ERROR:
100
111
                                Doit.this._dialogMessage = (String)msg.obj;
110
121
                                break;
111
122
                        case MESSAGE_SETMAXPROGRESS:
112
123
                                if( _maxProgress > 0 ) {
113
 
                                        if( _tmpProgress == _maxProgress )
 
124
                                        if( _tmpProgress == _maxProgress - 1 )
114
125
                                                _tmpProgress = (Integer)msg.obj;
115
 
                                        if( _progress == _maxProgress )
 
126
                                        if( _progress == _maxProgress - 1 )
116
127
                                                _progress = (Integer)msg.obj;
117
128
                                }
118
129
                                _maxProgress = (Integer)msg.obj;
162
173
                // hide page 2
163
174
                ( findViewById( R.id.doit_page_2 ) ).setVisibility( View.GONE );
164
175
 
165
 
                // set up begin button
166
 
                Button begin = (Button)findViewById( R.id.doit_begin );
 
176
                // set up abort button
 
177
                Button begin = (Button)findViewById( R.id.abort );
167
178
                begin.setOnClickListener( new View.OnClickListener() {
168
179
                        public void onClick( View view ) {
169
 
                                importContacts();
170
 
                        }
171
 
                } );
172
 
 
173
 
                // set up close button
174
 
                Button close = (Button)findViewById( R.id.doit_close );
175
 
                close.setOnClickListener( new View.OnClickListener() {
176
 
                        public void onClick( View view ) {
177
 
                                setResult( RESULT_CANCELED );
178
 
                                finish();
 
180
                                manualAbort();
179
181
                        }
180
182
                } );
181
183
 
190
192
                _countMerges = 0;
191
193
                _countSkips = 0;
192
194
 
 
195
                updateNext( NEXT_BEGIN );
 
196
 
193
197
                updateProgress();
194
198
                updateStats();
195
199
        }
200
204
                super.onPause();
201
205
 
202
206
                // saving the state of an import sounds complicated! Lets just abort!
203
 
                abortImport();
204
 
 
205
 
                // destroy some stuff
206
 
                _importer = null;
207
 
                _handler = null;
 
207
                abortImport( true );
208
208
        }
209
209
 
210
210
        @Override
268
268
                                        setOnClickListener( _mergePromptButtonListener );
269
269
                        ( (Button)dialogView.findViewById( R.id.merge_merge ) ).
270
270
                                        setOnClickListener( _mergePromptButtonListener );
 
271
                        ( (Button)dialogView.findViewById( R.id.abort ) ).
 
272
                                        setOnClickListener( _mergePromptButtonListener );
271
273
                        _mergePromptAlwaysSelected = false;
272
274
                        return new AlertDialog.Builder( this )
273
275
                                        .setIcon( R.drawable.alert_dialog_icon )
280
282
        }
281
283
 
282
284
    private OnClickListener _mergePromptButtonListener = new OnClickListener() {
283
 
                public void onClick( View view ) {
284
 
                        int responseExtra = _mergePromptAlwaysSelected?
285
 
                                        Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
 
285
                public void onClick( View view )
 
286
                {
 
287
                        // handle abort
 
288
                        if( view.getId() == R.id.abort )
 
289
                                manualAbort();
 
290
 
 
291
                        // else, response
 
292
                        else {
 
293
                                int responseExtra = _mergePromptAlwaysSelected?
 
294
                                                Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
 
295
                                Doit.this._importer.wake( convertIdToAction( view.getId() ),
 
296
                                                responseExtra );
 
297
                        }
 
298
 
 
299
                        // close dialog and free (don't keep a reference)
286
300
                        Doit.this._mergePromptDialog.dismiss();
287
 
                        Doit.this._mergePromptDialog = null;    // dont keep a reference!
288
 
                        Doit.this._importer.wake( view.getId(), responseExtra );
 
301
                        Doit.this._mergePromptDialog = null;
289
302
                }
290
303
        };
291
304
 
 
305
        @Override
 
306
        protected void onNext()
 
307
        {
 
308
                Button next = (Button)findViewById( R.id.next );
 
309
                next.setEnabled( false );
 
310
 
 
311
                switch( _nextAction )
 
312
                {
 
313
                case NEXT_BEGIN:
 
314
                        importContacts();
 
315
                        break;
 
316
                case NEXT_CLOSE:
 
317
                        setResult( RESULT_CANCELED );
 
318
                        finish();
 
319
                        break;
 
320
                }
 
321
        }
 
322
 
 
323
        private void manualAbort()
 
324
        {
 
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 );
 
329
        }
 
330
 
 
331
        private void updateNext( int nextAction )
 
332
        {
 
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;
 
337
                }
 
338
                next.setEnabled( true );
 
339
                _nextAction = nextAction;
 
340
        }
 
341
 
 
342
        public static int convertIdToAction( int id ) {
 
343
                switch( id ) {
 
344
                case R.id.merge_keep:           return ACTION_KEEP;
 
345
                case R.id.merge_merge:          return ACTION_MERGE_MERGE;
 
346
                case R.id.merge_overwrite:      return ACTION_OVERWRITE;
 
347
                default: return ACTION_PROMPT;
 
348
                }
 
349
        }
 
350
 
 
351
        public static int convertActionToId( int action ) {
 
352
                switch( action ) {
 
353
                case ACTION_KEEP:               return R.id.merge_keep;
 
354
                case ACTION_MERGE_MERGE:return R.id.merge_merge;
 
355
                case ACTION_OVERWRITE:  return R.id.merge_overwrite;
 
356
                default: return R.id.merge_prompt;
 
357
                }
 
358
        }
 
359
 
292
360
        private DialogInterface.OnCancelListener _dialogOnCancelListener =
293
361
                        new DialogInterface.OnCancelListener() {
294
362
                public void onCancel( DialogInterface dialog ) {
303
371
        {
304
372
                // if we're cancelling, abort any import
305
373
                if( resultCode == RESULT_CANCELED )
306
 
                        abortImport();
 
374
                        abortImport( true );
307
375
        }
308
376
 
309
377
        @Override
376
444
                                "" + _countSkips );
377
445
        }
378
446
 
379
 
        private void abortImport()
 
447
        private void abortImport( boolean showToasterPopup )
380
448
        {
381
449
                if( _importer != null )
382
450
                {
393
461
                                }
394
462
 
395
463
                                // notify the user
396
 
                        Toast.makeText( this, R.string.doit_importaborted,
397
 
                                        Toast.LENGTH_LONG ).show();
 
464
                                if( showToasterPopup )
 
465
                                        Toast.makeText( this, R.string.doit_importaborted,
 
466
                                                        Toast.LENGTH_LONG ).show();
398
467
                        }
399
468
                }
 
469
 
 
470
                // destroy some stuff
 
471
                _importer = null;
 
472
                _handler = null;
400
473
        }
401
474
}