• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2020 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 
17 package com.android.deskclock.events
18 
19 import android.annotation.TargetApi
20 import android.content.Context
21 import android.content.pm.ShortcutManager
22 import android.os.Build
23 import android.util.ArraySet
24 import androidx.annotation.StringRes
25 
26 import com.android.deskclock.R
27 import com.android.deskclock.uidata.UiDataModel
28 
29 @TargetApi(Build.VERSION_CODES.N_MR1)
30 class ShortcutEventTracker(context: Context) : EventTracker {
31     private val mShortcutManager: ShortcutManager =
32             context.getSystemService(ShortcutManager::class.java)
33     private val shortcuts: MutableSet<String> = ArraySet(5)
34 
35     init {
36         val uidm = UiDataModel.uiDataModel
37         shortcuts.add(uidm.getShortcutId(R.string.category_alarm, R.string.action_create))
38         shortcuts.add(uidm.getShortcutId(R.string.category_timer, R.string.action_create))
39         shortcuts.add(uidm.getShortcutId(R.string.category_stopwatch, R.string.action_pause))
40         shortcuts.add(uidm.getShortcutId(R.string.category_stopwatch, R.string.action_start))
41         shortcuts.add(uidm.getShortcutId(R.string.category_screensaver, R.string.action_show))
42     }
43 
sendEventnull44     override fun sendEvent(
45         @StringRes category: Int,
46         @StringRes action: Int,
47         @StringRes label: Int
48     ) {
49         val shortcutId = UiDataModel.uiDataModel.getShortcutId(category, action)
50         if (shortcuts.contains(shortcutId)) {
51             mShortcutManager.reportShortcutUsed(shortcutId)
52         }
53     }
54 }