2021-02-10 17:10:15 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2021 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.model;
|
|
|
|
|
|
|
|
|
|
import com.android.launcher3.model.WidgetItem;
|
|
|
|
|
import com.android.launcher3.model.data.PackageItemInfo;
|
|
|
|
|
|
2021-03-11 16:10:27 +00:00
|
|
|
import java.util.List;
|
2021-02-10 17:10:15 +00:00
|
|
|
|
|
|
|
|
/** An information holder for an app which has widgets or/and shortcuts. */
|
2021-06-14 14:55:07 +00:00
|
|
|
public final class WidgetsListHeaderEntry extends WidgetsListBaseEntry
|
|
|
|
|
implements WidgetsListBaseEntry.Header<WidgetsListHeaderEntry> {
|
2021-02-10 17:10:15 +00:00
|
|
|
|
|
|
|
|
public final int widgetsCount;
|
|
|
|
|
public final int shortcutsCount;
|
|
|
|
|
|
2021-06-14 14:55:07 +00:00
|
|
|
private final boolean mIsWidgetListShown;
|
2021-02-10 17:10:15 +00:00
|
|
|
|
|
|
|
|
public WidgetsListHeaderEntry(PackageItemInfo pkgItem, String titleSectionName,
|
2021-03-11 16:10:27 +00:00
|
|
|
List<WidgetItem> items) {
|
2021-06-14 14:55:07 +00:00
|
|
|
this(pkgItem, titleSectionName, items, /* isWidgetListShown= */ false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private WidgetsListHeaderEntry(PackageItemInfo pkgItem, String titleSectionName,
|
|
|
|
|
List<WidgetItem> items, boolean isWidgetListShown) {
|
2021-03-09 21:23:35 +00:00
|
|
|
super(pkgItem, titleSectionName, items);
|
2021-02-10 17:10:15 +00:00
|
|
|
widgetsCount = (int) items.stream().filter(item -> item.widgetInfo != null).count();
|
|
|
|
|
shortcutsCount = Math.max(0, items.size() - widgetsCount);
|
2021-06-14 14:55:07 +00:00
|
|
|
mIsWidgetListShown = isWidgetListShown;
|
2021-02-10 17:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Returns {@code true} if the widgets list associated with this header is shown. */
|
2021-06-14 14:55:07 +00:00
|
|
|
@Override
|
2021-02-10 17:10:15 +00:00
|
|
|
public boolean isWidgetListShown() {
|
|
|
|
|
return mIsWidgetListShown;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-11 16:10:27 +00:00
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return "Header:" + mPkgItem.packageName + ":" + mWidgets.size();
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-10 17:10:15 +00:00
|
|
|
@Override
|
|
|
|
|
@Rank
|
|
|
|
|
public int getRank() {
|
|
|
|
|
return RANK_WIDGETS_LIST_HEADER;
|
|
|
|
|
}
|
2021-03-11 16:10:27 +00:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean equals(Object obj) {
|
|
|
|
|
if (!(obj instanceof WidgetsListHeaderEntry)) return false;
|
|
|
|
|
WidgetsListHeaderEntry otherEntry = (WidgetsListHeaderEntry) obj;
|
|
|
|
|
return mWidgets.equals(otherEntry.mWidgets) && mPkgItem.equals(otherEntry.mPkgItem)
|
2021-06-14 14:55:07 +00:00
|
|
|
&& mTitleSectionName.equals(otherEntry.mTitleSectionName)
|
|
|
|
|
&& mIsWidgetListShown == otherEntry.mIsWidgetListShown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Returns a copy of this {@link WidgetsListHeaderEntry} with the widget list shown. */
|
|
|
|
|
@Override
|
|
|
|
|
public WidgetsListHeaderEntry withWidgetListShown() {
|
|
|
|
|
if (mIsWidgetListShown) return this;
|
|
|
|
|
return new WidgetsListHeaderEntry(
|
|
|
|
|
mPkgItem,
|
|
|
|
|
mTitleSectionName,
|
|
|
|
|
mWidgets,
|
|
|
|
|
/* isWidgetListShown= */ true);
|
2021-03-11 16:10:27 +00:00
|
|
|
}
|
2021-02-10 17:10:15 +00:00
|
|
|
}
|