1 /* 2 * Copyright (C) 2024 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.systemui.screenshot 18 19 import android.net.Uri 20 import android.os.UserHandle 21 import java.text.DateFormat 22 import java.util.Date 23 24 /** 25 * Represents a saved screenshot, with the uri and user it was saved to as well as the time it was 26 * saved. 27 */ 28 data class ScreenshotSavedResult(val uri: Uri, val user: UserHandle, val imageTime: Long) { 29 val subject: String 30 31 init { 32 val subjectDate = DateFormat.getDateTimeInstance().format(Date(imageTime)) 33 subject = String.format(SCREENSHOT_SHARE_SUBJECT_TEMPLATE, subjectDate) 34 } 35 36 companion object { 37 private const val SCREENSHOT_SHARE_SUBJECT_TEMPLATE = "Screenshot (%s)" 38 } 39 } 40