You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/astrid/common-src/com/todoroo/andlib/widget/DateControlSet.java

142 lines
4.3 KiB
Java

/*
* ASTRID: Android's Simple Task Recording Dashboard
*
* Copyright (c) 2009 Tim Su
*
* 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, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.todoroo.andlib.widget;
import java.text.Format;
import java.util.Date;
import android.app.DatePickerDialog.OnDateSetListener;
import android.app.TimePickerDialog;
import android.app.TimePickerDialog.OnTimeSetListener;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnCancelListener;
import android.content.DialogInterface.OnDismissListener;
import android.text.format.DateFormat;
import android.view.View;
import android.widget.Button;
import android.widget.DatePicker;
import android.widget.TimePicker;
import com.todoroo.astrid.ui.CalendarDialog;
public class DateControlSet implements OnTimeSetListener,
OnDateSetListener, View.OnClickListener {
private final Format dateFormatter;
private final Format timeFormatter;
protected final Context context;
protected Button dateButton;
protected Button timeButton;
protected Date date;
protected DateControlSet(Context context) {
this.context = context;
dateFormatter = DateFormat.getDateFormat(context);
timeFormatter = DateFormat.getTimeFormat(context);
}
public DateControlSet(Context context, Button dateButton, Button timeButton) {
this(context);
this.dateButton = dateButton;
this.timeButton = timeButton;
if(dateButton != null)
dateButton.setOnClickListener(this);
if(timeButton != null)
timeButton.setOnClickListener(this);
setDate(null);
}
public Date getDate() {
return date;
}
/** Initialize the components for the given date field */
public void setDate(Date newDate) {
if(newDate == null) {
date = new Date();
} else {
this.date = new Date(newDate.getTime());
}
updateDate();
updateTime();
}
public void onDateSet(DatePicker view, int year, int month, int monthDay) {
date.setYear(year - 1900);
date.setMonth(month);
date.setDate(monthDay);
updateDate();
}
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
date.setHours(hourOfDay);
date.setMinutes(minute);
updateTime();
}
public void updateDate() {
if(dateButton != null)
dateButton.setText(dateFormatter.format(date));
}
public void updateTime() {
if(timeButton != null)
timeButton.setText(timeFormatter.format(date));
}
private boolean dialogCancelled = false;
public void onClick(View v) {
if(v == timeButton)
new TimePickerDialog(context, this, date.getHours(),
date.getMinutes(), false).show();
else if(v == dateButton){
final CalendarDialog calendarDialog = new CalendarDialog(context, date);
calendarDialog.show();
calendarDialog.setOnDismissListener(new OnDismissListener() {
@Override
public void onDismiss(DialogInterface arg0) {
if (!dialogCancelled) {
date = calendarDialog.getCalendarDate();
updateDate();
}
dialogCancelled = false;
}
});
calendarDialog.setOnCancelListener(new OnCancelListener() {
@Override
public void onCancel(DialogInterface arg0) {
dialogCancelled = true;
}
});
}
}
}