Ignore:
Timestamp:
07/24/06 07:19:50 (18 years ago)
Author:
Nicholas Riley
Message:

If you're editing an alarm, focus on the time/interval edit field
rather than the message. Relayout set alarm display when time/date
format changes (yay positionDynamically!). Attempt to fix tooltip for

1-minute alarm refreshing/flashing without changing (needs more

testing). Build against 3.0 libraries by default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hiptop/pester/net/sabi/pester/AlarmSetDialog.java

    r270 r280  
    2323import danger.ui.StaticTextBox;
    2424import danger.ui.TypeAheadTextField;
     25import danger.ui.View;
    2526import danger.util.DEBUG;
    2627
     
    136137        Application.registerForEvent(this, Event.EVENT_TIME_CHANGED);
    137138        show();
     139        if (!asNew) setFocusedDescendant(isIn() ? (View)mPeriodField :
     140                                         (View)mTimeEditor);
    138141        if (!mHaveShownWindow) {
    139142            Rect alarmRect = mSetAlarmButton.getFrame();
     
    145148            mHaveShownWindow = true;
    146149            setAutoSize(false); // don't resize to contain it next time
     150            // XXX still a minor potential race here, but it's so unlikely
     151            // as to not be worth fixing
     152            Application.registerForEvent(this, Event.EVENT_TIME_FORMAT_CHANGED);
    147153        }
    148154    }
     
    244250            stopEditing();
    245251            return true;
     252        case Event.EVENT_TIME_FORMAT_CHANGED: // time format changed
     253            mTimeEditor.setFormat(DateTimeEditor.FORMAT_TIME_LONG);
     254            return true;
    246255        case Event.EVENT_TIME_CHANGED: // time on device changed
    247256        case Event.EVENT_ALARM: // computed time invalid
Note: See TracChangeset for help on using the changeset viewer.