1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.calendar.event;
18
19import static android.provider.CalendarContract.EXTRA_EVENT_BEGIN_TIME;
20import static android.provider.CalendarContract.EXTRA_EVENT_END_TIME;
21import static android.provider.CalendarContract.EXTRA_EVENT_ALL_DAY;
22
23import android.app.ActionBar;
24import android.app.FragmentTransaction;
25import android.content.Intent;
26import android.net.Uri;
27import android.os.Bundle;
28import android.text.format.Time;
29import android.util.Log;
30import android.view.MenuItem;
31
32import com.android.calendar.AbstractCalendarActivity;
33import com.android.calendar.CalendarController;
34import com.android.calendar.CalendarController.EventInfo;
35import com.android.calendar.R;
36import com.android.calendar.Utils;
37
38public class EditEventActivity extends AbstractCalendarActivity {
39    private static final String TAG = "EditEventActivity";
40
41    private static final boolean DEBUG = false;
42
43    private static final String BUNDLE_KEY_EVENT_ID = "key_event_id";
44
45    private static boolean mIsMultipane;
46
47    private EditEventFragment mEditFragment;
48
49    private EventInfo mEventInfo;
50
51    @Override
52    protected void onCreate(Bundle icicle) {
53        super.onCreate(icicle);
54        setContentView(R.layout.simple_frame_layout);
55
56        mEventInfo = getEventInfoFromIntent(icicle);
57
58        mEditFragment = (EditEventFragment) getFragmentManager().findFragmentById(R.id.main_frame);
59
60        mIsMultipane = Utils.getConfigBool(this, R.bool.multiple_pane_config);
61
62        if (mIsMultipane) {
63            getActionBar().setDisplayOptions(
64                    ActionBar.DISPLAY_SHOW_TITLE,
65                    ActionBar.DISPLAY_HOME_AS_UP | ActionBar.DISPLAY_SHOW_HOME
66                            | ActionBar.DISPLAY_SHOW_TITLE);
67            getActionBar().setTitle(
68                    mEventInfo.id == -1 ? R.string.event_create : R.string.event_edit);
69        }
70        else {
71            getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM,
72                    ActionBar.DISPLAY_HOME_AS_UP | ActionBar.DISPLAY_SHOW_HOME|
73                    ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_CUSTOM);
74        }
75
76        if (mEditFragment == null) {
77            Intent intent = null;
78            if (mEventInfo.id == -1) {
79                intent = getIntent();
80            }
81
82            mEditFragment = new EditEventFragment(mEventInfo, false, intent);
83
84            mEditFragment.mShowModifyDialogOnLaunch = getIntent().getBooleanExtra(
85                    CalendarController.EVENT_EDIT_ON_LAUNCH, false);
86
87            FragmentTransaction ft = getFragmentManager().beginTransaction();
88            ft.replace(R.id.main_frame, mEditFragment);
89            ft.show(mEditFragment);
90            ft.commit();
91        }
92    }
93
94    private EventInfo getEventInfoFromIntent(Bundle icicle) {
95        EventInfo info = new EventInfo();
96        long eventId = -1;
97        Intent intent = getIntent();
98        Uri data = intent.getData();
99        if (data != null) {
100            try {
101                eventId = Long.parseLong(data.getLastPathSegment());
102            } catch (NumberFormatException e) {
103                if (DEBUG) {
104                    Log.d(TAG, "Create new event");
105                }
106            }
107        } else if (icicle != null && icicle.containsKey(BUNDLE_KEY_EVENT_ID)) {
108            eventId = icicle.getLong(BUNDLE_KEY_EVENT_ID);
109        }
110
111        long begin = intent.getLongExtra(EXTRA_EVENT_BEGIN_TIME, -1);
112        long end = intent.getLongExtra(EXTRA_EVENT_END_TIME, -1);
113        if (end != -1) {
114            info.endTime = new Time();
115            info.endTime.set(end);
116        }
117        if (begin != -1) {
118            info.startTime = new Time();
119            info.startTime.set(begin);
120        }
121        info.id = eventId;
122
123        if (intent.getBooleanExtra(EXTRA_EVENT_ALL_DAY, false)) {
124            info.extraLong = CalendarController.EXTRA_CREATE_ALL_DAY;
125        } else {
126            info.extraLong = 0;
127        }
128        return info;
129    }
130
131    @Override
132    public boolean onOptionsItemSelected(MenuItem item) {
133        if (item.getItemId() == android.R.id.home) {
134            Utils.returnToCalendarHome(this);
135            return true;
136        }
137        return super.onOptionsItemSelected(item);
138    }
139}
140