2017-10-10 15:21:15 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
package com.android.launcher3.widget;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
2022-05-06 14:40:07 +01:00
|
|
|
import android.graphics.Canvas;
|
|
|
|
|
import android.graphics.Paint;
|
2017-10-10 15:21:15 -07:00
|
|
|
import android.graphics.Point;
|
2021-03-25 16:44:40 +00:00
|
|
|
import android.graphics.Rect;
|
2017-10-10 15:21:15 -07:00
|
|
|
import android.util.AttributeSet;
|
2021-09-01 12:33:00 -07:00
|
|
|
import android.util.Log;
|
2017-10-10 15:21:15 -07:00
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
|
import android.view.View.OnLongClickListener;
|
2022-05-06 14:40:07 +01:00
|
|
|
import android.view.WindowInsets;
|
2017-10-10 15:21:15 -07:00
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
2021-06-28 12:29:35 +01:00
|
|
|
import androidx.annotation.GuardedBy;
|
2021-05-21 10:52:53 +01:00
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
|
import androidx.core.view.ViewCompat;
|
|
|
|
|
|
2021-06-28 12:29:35 +01:00
|
|
|
import com.android.launcher3.DeviceProfile;
|
2017-10-10 15:21:15 -07:00
|
|
|
import com.android.launcher3.DragSource;
|
|
|
|
|
import com.android.launcher3.DropTarget.DragObject;
|
2021-06-28 12:29:35 +01:00
|
|
|
import com.android.launcher3.Insettable;
|
2021-05-13 14:13:18 +01:00
|
|
|
import com.android.launcher3.Launcher;
|
2017-10-10 15:21:15 -07:00
|
|
|
import com.android.launcher3.R;
|
|
|
|
|
import com.android.launcher3.Utilities;
|
|
|
|
|
import com.android.launcher3.dragndrop.DragOptions;
|
2019-02-04 16:26:42 -08:00
|
|
|
import com.android.launcher3.popup.PopupDataProvider;
|
2020-03-31 19:06:41 -07:00
|
|
|
import com.android.launcher3.testing.TestLogging;
|
|
|
|
|
import com.android.launcher3.testing.TestProtocol;
|
2018-03-06 22:15:18 -08:00
|
|
|
import com.android.launcher3.touch.ItemLongClickListener;
|
2017-10-10 15:21:15 -07:00
|
|
|
import com.android.launcher3.util.SystemUiController;
|
|
|
|
|
import com.android.launcher3.util.Themes;
|
2022-05-06 14:40:07 +01:00
|
|
|
import com.android.launcher3.util.window.WindowManagerProxy;
|
2017-11-29 18:39:49 +00:00
|
|
|
import com.android.launcher3.views.AbstractSlideInView;
|
2022-03-24 14:47:32 -07:00
|
|
|
import com.android.launcher3.views.ActivityContext;
|
2021-05-21 10:52:53 +01:00
|
|
|
import com.android.launcher3.views.ArrowTipView;
|
2018-09-18 11:40:35 -07:00
|
|
|
|
2017-10-10 15:21:15 -07:00
|
|
|
/**
|
|
|
|
|
* Base class for various widgets popup
|
|
|
|
|
*/
|
2021-05-13 14:13:18 +01:00
|
|
|
public abstract class BaseWidgetSheet extends AbstractSlideInView<Launcher>
|
2019-02-04 16:26:42 -08:00
|
|
|
implements OnClickListener, OnLongClickListener, DragSource,
|
2021-06-28 12:29:35 +01:00
|
|
|
PopupDataProvider.PopupDataChangeListener, Insettable {
|
2021-07-02 17:51:39 +01:00
|
|
|
/** The default number of cells that can fit horizontally in a widget sheet. */
|
|
|
|
|
protected static final int DEFAULT_MAX_HORIZONTAL_SPANS = 4;
|
2017-10-10 15:21:15 -07:00
|
|
|
|
2021-05-21 10:52:53 +01:00
|
|
|
protected static final String KEY_WIDGETS_EDUCATION_TIP_SEEN =
|
|
|
|
|
"launcher.widgets_education_tip_seen";
|
2021-06-28 12:29:35 +01:00
|
|
|
protected final Rect mInsets = new Rect();
|
2021-05-21 10:52:53 +01:00
|
|
|
|
2017-10-10 15:21:15 -07:00
|
|
|
/* Touch handling related member variables. */
|
|
|
|
|
private Toast mWidgetInstructionToast;
|
|
|
|
|
|
2021-07-26 21:31:50 +01:00
|
|
|
private int mContentHorizontalMarginInPx;
|
|
|
|
|
|
2022-05-06 14:40:07 +01:00
|
|
|
protected int mNavBarScrimHeight;
|
|
|
|
|
private final Paint mNavBarScrimPaint;
|
|
|
|
|
|
2017-10-10 15:21:15 -07:00
|
|
|
public BaseWidgetSheet(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
|
|
|
super(context, attrs, defStyleAttr);
|
2021-07-26 21:31:50 +01:00
|
|
|
mContentHorizontalMarginInPx = getResources().getDimensionPixelSize(
|
|
|
|
|
R.dimen.widget_list_horizontal_margin);
|
2022-05-06 14:40:07 +01:00
|
|
|
mNavBarScrimPaint = new Paint();
|
|
|
|
|
mNavBarScrimPaint.setColor(Themes.getAttrColor(context, R.attr.allAppsNavBarScrimColor));
|
2020-02-10 09:26:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected int getScrimColor(Context context) {
|
2021-06-01 15:17:16 +01:00
|
|
|
return context.getResources().getColor(R.color.widgets_picker_scrim);
|
2017-10-10 15:21:15 -07:00
|
|
|
}
|
|
|
|
|
|
2019-02-04 16:26:42 -08:00
|
|
|
@Override
|
|
|
|
|
protected void onAttachedToWindow() {
|
|
|
|
|
super.onAttachedToWindow();
|
2022-05-06 14:40:07 +01:00
|
|
|
WindowInsets windowInsets = WindowManagerProxy.INSTANCE.get(getContext())
|
|
|
|
|
.normalizeWindowInsets(getContext(), getRootWindowInsets(), new Rect());
|
|
|
|
|
mNavBarScrimHeight = getNavBarScrimHeight(windowInsets);
|
2021-05-13 14:13:18 +01:00
|
|
|
mActivityContext.getPopupDataProvider().setChangeListener(this);
|
2019-02-04 16:26:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onDetachedFromWindow() {
|
|
|
|
|
super.onDetachedFromWindow();
|
2021-05-13 14:13:18 +01:00
|
|
|
mActivityContext.getPopupDataProvider().setChangeListener(null);
|
2019-02-04 16:26:42 -08:00
|
|
|
}
|
|
|
|
|
|
2017-10-10 15:21:15 -07:00
|
|
|
@Override
|
|
|
|
|
public final void onClick(View v) {
|
2021-03-10 17:00:25 +00:00
|
|
|
Object tag = null;
|
|
|
|
|
if (v instanceof WidgetCell) {
|
|
|
|
|
tag = v.getTag();
|
|
|
|
|
} else if (v.getParent() instanceof WidgetCell) {
|
|
|
|
|
tag = ((WidgetCell) v.getParent()).getTag();
|
|
|
|
|
}
|
|
|
|
|
if (tag instanceof PendingAddShortcutInfo) {
|
|
|
|
|
mWidgetInstructionToast = showShortcutToast(getContext(), mWidgetInstructionToast);
|
|
|
|
|
} else {
|
|
|
|
|
mWidgetInstructionToast = showWidgetToast(getContext(), mWidgetInstructionToast);
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-10 15:21:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2018-07-13 11:03:04 -07:00
|
|
|
public boolean onLongClick(View v) {
|
2021-09-01 12:33:00 -07:00
|
|
|
if (TestProtocol.sDebugTracing) {
|
|
|
|
|
Log.d(TestProtocol.NO_DROP_TARGET, "1");
|
|
|
|
|
}
|
2020-03-31 19:06:41 -07:00
|
|
|
TestLogging.recordEvent(TestProtocol.SEQUENCE_MAIN, "Widgets.onLongClick");
|
|
|
|
|
v.cancelLongPress();
|
2021-05-13 14:13:18 +01:00
|
|
|
if (!ItemLongClickListener.canStartDrag(mActivityContext)) return false;
|
2017-10-10 15:21:15 -07:00
|
|
|
|
|
|
|
|
if (v instanceof WidgetCell) {
|
|
|
|
|
return beginDraggingWidget((WidgetCell) v);
|
2021-03-05 20:20:24 +00:00
|
|
|
} else if (v.getParent() instanceof WidgetCell) {
|
|
|
|
|
return beginDraggingWidget((WidgetCell) v.getParent());
|
2017-10-10 15:21:15 -07:00
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-28 12:29:35 +01:00
|
|
|
@Override
|
|
|
|
|
public void setInsets(Rect insets) {
|
|
|
|
|
mInsets.set(insets);
|
2021-07-26 21:31:50 +01:00
|
|
|
int contentHorizontalMarginInPx = getResources().getDimensionPixelSize(
|
|
|
|
|
R.dimen.widget_list_horizontal_margin);
|
|
|
|
|
if (contentHorizontalMarginInPx != mContentHorizontalMarginInPx) {
|
|
|
|
|
onContentHorizontalMarginChanged(contentHorizontalMarginInPx);
|
|
|
|
|
mContentHorizontalMarginInPx = contentHorizontalMarginInPx;
|
|
|
|
|
}
|
2021-06-28 12:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
2022-05-06 14:40:07 +01:00
|
|
|
private int getNavBarScrimHeight(WindowInsets insets) {
|
|
|
|
|
if (Utilities.ATLEAST_Q) {
|
|
|
|
|
return insets.getTappableElementInsets().bottom;
|
|
|
|
|
} else {
|
|
|
|
|
return insets.getStableInsetBottom();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public WindowInsets onApplyWindowInsets(WindowInsets insets) {
|
|
|
|
|
mNavBarScrimHeight = getNavBarScrimHeight(insets);
|
|
|
|
|
return super.onApplyWindowInsets(insets);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void dispatchDraw(Canvas canvas) {
|
|
|
|
|
super.dispatchDraw(canvas);
|
|
|
|
|
|
|
|
|
|
if (mNavBarScrimHeight > 0) {
|
|
|
|
|
canvas.drawRect(0, getHeight() - mNavBarScrimHeight, getWidth(), getHeight(),
|
|
|
|
|
mNavBarScrimPaint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-26 21:31:50 +01:00
|
|
|
/** Called when the horizontal margin of the content view has changed. */
|
|
|
|
|
protected abstract void onContentHorizontalMarginChanged(int contentHorizontalMarginInPx);
|
2021-06-28 12:29:35 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Measures the dimension of this view and its children by taking system insets, navigation bar,
|
|
|
|
|
* status bar, into account.
|
|
|
|
|
*/
|
|
|
|
|
@GuardedBy("MainThread")
|
|
|
|
|
protected void doMeasure(int widthMeasureSpec, int heightMeasureSpec) {
|
|
|
|
|
DeviceProfile deviceProfile = mActivityContext.getDeviceProfile();
|
|
|
|
|
int widthUsed;
|
2022-05-06 14:40:07 +01:00
|
|
|
if (deviceProfile.isTablet) {
|
|
|
|
|
int margin = deviceProfile.allAppsLeftRightMargin;
|
|
|
|
|
widthUsed = Math.max(2 * margin, 2 * (mInsets.left + mInsets.right));
|
|
|
|
|
} else if (mInsets.bottom > 0) {
|
2021-06-28 12:29:35 +01:00
|
|
|
widthUsed = mInsets.left + mInsets.right;
|
|
|
|
|
} else {
|
|
|
|
|
Rect padding = deviceProfile.workspacePadding;
|
|
|
|
|
widthUsed = Math.max(padding.left + padding.right,
|
|
|
|
|
2 * (mInsets.left + mInsets.right));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
measureChildWithMargins(mContent, widthMeasureSpec,
|
2022-03-09 21:26:02 +00:00
|
|
|
widthUsed, heightMeasureSpec, deviceProfile.bottomSheetTopPadding);
|
2021-06-28 12:29:35 +01:00
|
|
|
setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec),
|
|
|
|
|
MeasureSpec.getSize(heightMeasureSpec));
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-02 17:51:39 +01:00
|
|
|
/** Returns the number of cells that can fit horizontally in a given {@code content}. */
|
|
|
|
|
protected int computeMaxHorizontalSpans(View content, int contentHorizontalPaddingPx) {
|
|
|
|
|
DeviceProfile deviceProfile = mActivityContext.getDeviceProfile();
|
|
|
|
|
int availableWidth = content.getMeasuredWidth() - contentHorizontalPaddingPx;
|
|
|
|
|
Point cellSize = deviceProfile.getCellSize();
|
|
|
|
|
if (cellSize.x > 0) {
|
|
|
|
|
return availableWidth / cellSize.x;
|
|
|
|
|
}
|
|
|
|
|
return DEFAULT_MAX_HORIZONTAL_SPANS;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-10 15:21:15 -07:00
|
|
|
private boolean beginDraggingWidget(WidgetCell v) {
|
2021-09-01 12:33:00 -07:00
|
|
|
if (TestProtocol.sDebugTracing) {
|
|
|
|
|
Log.d(TestProtocol.NO_DROP_TARGET, "2");
|
|
|
|
|
}
|
2017-10-10 15:21:15 -07:00
|
|
|
// Get the widget preview as the drag representation
|
|
|
|
|
WidgetImageView image = v.getWidgetView();
|
|
|
|
|
|
|
|
|
|
// If the ImageView doesn't have a drawable yet, the widget preview hasn't been loaded and
|
|
|
|
|
// we abort the drag.
|
2021-03-25 16:44:40 +00:00
|
|
|
if (image.getDrawable() == null && v.getAppWidgetHostViewPreview() == null) {
|
2017-10-10 15:21:15 -07:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-11 18:57:35 +00:00
|
|
|
PendingItemDragHelper dragHelper = new PendingItemDragHelper(v);
|
2021-07-14 22:10:16 +01:00
|
|
|
// RemoteViews are being rendered in AppWidgetHostView in WidgetCell. And thus, the scale of
|
|
|
|
|
// RemoteViews is equivalent to the AppWidgetHostView scale.
|
|
|
|
|
dragHelper.setRemoteViewsPreview(v.getRemoteViewsPreview(), v.getAppWidgetHostViewScale());
|
2021-03-08 23:34:44 +00:00
|
|
|
dragHelper.setAppWidgetHostViewPreview(v.getAppWidgetHostViewPreview());
|
2021-02-11 18:57:35 +00:00
|
|
|
|
2021-03-25 16:44:40 +00:00
|
|
|
if (image.getDrawable() != null) {
|
|
|
|
|
int[] loc = new int[2];
|
|
|
|
|
getPopupContainer().getLocationInDragLayer(image, loc);
|
2017-10-10 15:21:15 -07:00
|
|
|
|
2021-03-25 16:44:40 +00:00
|
|
|
dragHelper.startDrag(image.getBitmapBounds(), image.getDrawable().getIntrinsicWidth(),
|
|
|
|
|
image.getWidth(), new Point(loc[0], loc[1]), this, new DragOptions());
|
|
|
|
|
} else {
|
2021-07-21 17:08:27 +01:00
|
|
|
NavigableAppWidgetHostView preview = v.getAppWidgetHostViewPreview();
|
2021-03-25 16:44:40 +00:00
|
|
|
int[] loc = new int[2];
|
|
|
|
|
getPopupContainer().getLocationInDragLayer(preview, loc);
|
2021-07-21 17:08:27 +01:00
|
|
|
Rect r = new Rect();
|
|
|
|
|
preview.getWorkspaceVisualDragBounds(r);
|
2021-03-25 16:44:40 +00:00
|
|
|
dragHelper.startDrag(r, preview.getMeasuredWidth(), preview.getMeasuredWidth(),
|
|
|
|
|
new Point(loc[0], loc[1]), this, new DragOptions());
|
|
|
|
|
}
|
2017-10-10 15:21:15 -07:00
|
|
|
close(true);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Drag related handling methods that implement {@link DragSource} interface.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
@Override
|
2017-10-06 13:29:57 -07:00
|
|
|
public void onDropCompleted(View target, DragObject d, boolean success) { }
|
2017-10-10 15:21:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void onCloseComplete() {
|
2017-11-29 18:39:49 +00:00
|
|
|
super.onCloseComplete();
|
2018-01-31 15:18:11 -08:00
|
|
|
clearNavBarColor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void clearNavBarColor() {
|
2018-07-13 11:03:04 -07:00
|
|
|
getSystemUiController().updateUiState(
|
2017-10-10 15:21:15 -07:00
|
|
|
SystemUiController.UI_STATE_WIDGET_BOTTOM_SHEET, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void setupNavBarColor() {
|
2018-07-13 11:03:04 -07:00
|
|
|
boolean isSheetDark = Themes.getAttrBoolean(getContext(), R.attr.isMainColorDark);
|
|
|
|
|
getSystemUiController().updateUiState(
|
2017-10-10 15:21:15 -07:00
|
|
|
SystemUiController.UI_STATE_WIDGET_BOTTOM_SHEET,
|
|
|
|
|
isSheetDark ? SystemUiController.FLAG_DARK_NAV : SystemUiController.FLAG_LIGHT_NAV);
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-13 11:03:04 -07:00
|
|
|
protected SystemUiController getSystemUiController() {
|
2021-05-13 14:13:18 +01:00
|
|
|
return mActivityContext.getSystemUiController();
|
2018-07-13 11:03:04 -07:00
|
|
|
}
|
2020-11-09 19:04:43 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show Widget tap toast prompting user to drag instead
|
|
|
|
|
*/
|
|
|
|
|
public static Toast showWidgetToast(Context context, Toast toast) {
|
|
|
|
|
// Let the user know that they have to long press to add a widget
|
|
|
|
|
if (toast != null) {
|
|
|
|
|
toast.cancel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CharSequence msg = Utilities.wrapForTts(
|
|
|
|
|
context.getText(R.string.long_press_widget_to_add),
|
|
|
|
|
context.getString(R.string.long_accessible_way_to_add));
|
|
|
|
|
toast = Toast.makeText(context, msg, Toast.LENGTH_SHORT);
|
|
|
|
|
toast.show();
|
|
|
|
|
return toast;
|
|
|
|
|
}
|
2021-03-10 17:00:25 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show shortcut tap toast prompting user to drag instead.
|
|
|
|
|
*/
|
|
|
|
|
private static Toast showShortcutToast(Context context, Toast toast) {
|
|
|
|
|
// Let the user know that they have to long press to add a widget
|
|
|
|
|
if (toast != null) {
|
|
|
|
|
toast.cancel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CharSequence msg = Utilities.wrapForTts(
|
|
|
|
|
context.getText(R.string.long_press_shortcut_to_add),
|
|
|
|
|
context.getString(R.string.long_accessible_way_to_add_shortcut));
|
|
|
|
|
toast = Toast.makeText(context, msg, Toast.LENGTH_SHORT);
|
|
|
|
|
toast.show();
|
|
|
|
|
return toast;
|
|
|
|
|
}
|
2021-05-21 10:52:53 +01:00
|
|
|
|
|
|
|
|
/** Shows education tip on top center of {@code view} if view is laid out. */
|
|
|
|
|
@Nullable
|
|
|
|
|
protected ArrowTipView showEducationTipOnViewIfPossible(@Nullable View view) {
|
|
|
|
|
if (view == null || !ViewCompat.isLaidOut(view)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
int[] coords = new int[2];
|
|
|
|
|
view.getLocationOnScreen(coords);
|
2021-06-07 10:27:23 +01:00
|
|
|
ArrowTipView arrowTipView =
|
|
|
|
|
new ArrowTipView(mActivityContext, /* isPointingUp= */ false).showAtLocation(
|
|
|
|
|
getContext().getString(R.string.long_press_widget_to_add),
|
|
|
|
|
/* arrowXCoord= */coords[0] + view.getWidth() / 2,
|
|
|
|
|
/* yCoord= */coords[1]);
|
|
|
|
|
if (arrowTipView != null) {
|
|
|
|
|
mActivityContext.getSharedPrefs().edit()
|
|
|
|
|
.putBoolean(KEY_WIDGETS_EDUCATION_TIP_SEEN, true).apply();
|
|
|
|
|
}
|
|
|
|
|
return arrowTipView;
|
2021-05-21 10:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Returns {@code true} if tip has previously been shown on any of {@link BaseWidgetSheet}. */
|
|
|
|
|
protected boolean hasSeenEducationTip() {
|
|
|
|
|
return mActivityContext.getSharedPrefs().getBoolean(KEY_WIDGETS_EDUCATION_TIP_SEEN, false)
|
|
|
|
|
|| Utilities.IS_RUNNING_IN_TEST_HARNESS;
|
|
|
|
|
}
|
2022-03-24 14:47:32 -07:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void setTranslationShift(float translationShift) {
|
|
|
|
|
super.setTranslationShift(translationShift);
|
|
|
|
|
Launcher launcher = ActivityContext.lookupContext(getContext());
|
|
|
|
|
launcher.onWidgetsTransition(1 - translationShift);
|
|
|
|
|
}
|
2017-10-10 15:21:15 -07:00
|
|
|
}
|